(git:ccc2433)
constants_operator.F
Go to the documentation of this file.
1 !--------------------------------------------------------------------------------------------------!
2 ! CP2K: A general program to perform molecular dynamics simulations !
3 ! Copyright 2000-2024 CP2K developers group <https://cp2k.org> !
4 ! !
5 ! SPDX-License-Identifier: GPL-2.0-or-later !
6 !--------------------------------------------------------------------------------------------------!
7 
8 ! **************************************************************************************************
9 !> \brief constants for the different operators of the 2c-integrals
10 !> \par History
11 !> 10.2016 created Dorothea Golze
12 !> 05.2019 added truncated Coulomb operator (A. Bussy)
13 ! **************************************************************************************************
15 
16  IMPLICIT NONE
17  PRIVATE
18 
19  CHARACTER(len=*), PARAMETER, PRIVATE :: moduleN = 'constants_operator'
20 
21  ! operators for integrals
22  INTEGER, PARAMETER, PUBLIC :: operator_coulomb = 0, &
23  operator_verf = 1, &
24  operator_verfc = 2, &
25  operator_vgauss = 3, &
26  operator_gauss = 4, &
28 
29 END MODULE constants_operator
constants for the different operators of the 2c-integrals
integer, parameter, public operator_gauss
integer, parameter, public operator_verf
integer, parameter, public operator_truncated
integer, parameter, public operator_vgauss
integer, parameter, public operator_verfc
integer, parameter, public operator_coulomb