Line data Source code
1 : !--------------------------------------------------------------------------------------------------!
2 : ! CP2K: A general program to perform molecular dynamics simulations !
3 : ! Copyright 2000-2026 CP2K developers group <https://cp2k.org> !
4 : ! !
5 : ! SPDX-License-Identifier: GPL-2.0-or-later !
6 : !--------------------------------------------------------------------------------------------------!
7 :
8 : ! **************************************************************************************************
9 : !> \brief represent a simple array based list of the given type
10 : !> \par History
11 : !> 08.2003 created [fawzi]
12 : !> 01.2017 ported to Fypp [Ole Schuett]
13 : !> \author Fawzi Mohamed
14 : ! **************************************************************************************************
15 : MODULE particle_list_types
16 : USE particle_types, ONLY: deallocate_particle_set, &
17 : particle_type
18 :
19 : #include "../base/base_uses.f90"
20 :
21 : IMPLICIT NONE
22 : PRIVATE
23 :
24 : #:include "subsys_list.fypp"
25 :
26 84451 : $:subsys_list_macro(name='particle')
27 :
28 0 : END MODULE particle_list_types
|