STORMM Source Documentation
Loading...
Searching...
No Matches
atomgraph_constants.h
1// -*-c++-*-
2#ifndef STORMM_ATOMGRAPH_CONSTANTS_H
3#define STORMM_ATOMGRAPH_CONSTANTS_H
4
5#include "copyright.h"
6
7namespace stormm {
8namespace topology {
9
12constexpr double default_charge_rounding_tol = 0.001;
13
18constexpr double default_charge_precision_inc = 1.1920928955078125E-7;
19
22constexpr double amber_default_elec14_screen = 1.2;
23constexpr double amber_default_vdw14_screen = 2.0;
24constexpr double charmm_default_elec14_screen = 1.0;
25constexpr double charmm_default_vdw14_screen = 1.0;
26constexpr double glycam_default_elec14_screen = 1.0;
27constexpr double glycam_default_vdw14_screen = 1.0;
29
30} // namespace topology
31} // namespace stormm
32
33#endif