More const correctness
[gromacs.git] / src / gromacs / ewald / long-range-correction.h
blob617a0bfac0c9b75ce2325073e8d09fa69e237077
1 /*
2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
5 * Copyright (c) 2001-2004, The GROMACS development team.
6 * Copyright (c) 2013,2014,2015,2016,2017,2018, by the GROMACS development team, led by
7 * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
8 * and including many others, as listed in the AUTHORS file in the
9 * top-level source directory and at http://www.gromacs.org.
11 * GROMACS is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public License
13 * as published by the Free Software Foundation; either version 2.1
14 * of the License, or (at your option) any later version.
16 * GROMACS is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with GROMACS; if not, see
23 * http://www.gnu.org/licenses, or write to the Free Software Foundation,
24 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 * If you want to redistribute modifications to GROMACS, please
27 * consider that scientific software is very special. Version
28 * control is crucial - bugs must be traceable. We will be happy to
29 * consider code for inclusion in the official distribution, but
30 * derived work must not be called official GROMACS. Details are found
31 * in the README & COPYING files - if they are missing, get the
32 * official version at http://www.gromacs.org.
34 * To help us fund GROMACS development, we humbly ask that you cite
35 * the research papers on the package. Check out http://www.gromacs.org.
37 /*! \libinternal \file
39 * \brief This file contains function declarations necessary for
40 * computing energies and forces for the PME long-ranged part (Coulomb
41 * and LJ).
43 * \author Erik Lindahl <erik@kth.se>
44 * \author Berk Hess <hess@kth.se>
45 * \author Mark Abraham <mark.j.abraham@gmail.com>
46 * \inlibraryapi
47 * \ingroup module_ewald
50 #ifndef GMX_EWALD_LONG_RANGE_CORRECTION_H
51 #define GMX_EWALD_LONG_RANGE_CORRECTION_H
53 #include "gromacs/math/vectypes.h"
54 #include "gromacs/topology/block.h"
55 #include "gromacs/utility/basedefinitions.h"
56 #include "gromacs/utility/real.h"
58 struct t_commrec;
59 struct t_forcerec;
60 struct t_inputrec;
62 /*! \brief Calculate long-range Ewald correction terms.
64 * For the group cutoff scheme (only), calculates the correction to
65 * the Ewald sums (electrostatic and/or LJ) due to pairs excluded from
66 * the long-ranged part.
68 * For both cutoff schemes, but only for Coulomb interactions,
69 * calculates correction for surface dipole terms. */
70 void
71 ewald_LRcorrection(int numAtomsLocal,
72 const t_commrec *cr,
73 int numThreads, int thread,
74 t_forcerec *fr,
75 const t_inputrec *ir,
76 real *chargeA, real *chargeB,
77 real *C6A, real *C6B,
78 real *sigmaA, real *sigmaB,
79 real *sigma3A, real *sigma3B,
80 gmx_bool bHaveChargeOrTypePerturbed,
81 gmx_bool calc_excl_corr,
82 const t_blocka *excl,
83 const rvec x[],
84 matrix box, rvec mu_tot[],
85 int ewald_geometry, real epsilon_surface,
86 rvec *f, tensor vir_q, tensor vir_lj,
87 real *Vcorr_q, real *Vcorr_lj,
88 real lambda_q, real lambda_lj,
89 real *dvdlambda_q, real *dvdlambda_lj);
91 #endif