Scine::Swoose  2.1.0
This is the SCINE module Swoose.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Pages
TitrationData.h
Go to the documentation of this file.
1 
8 #ifndef TITRATION_DATAMANAGER_H
9 #define TITRATION_DATAMANAGER_H
10 
12 #include <list>
13 #include <vector>
14 
15 namespace Scine {
16 namespace StructurePreparation {
17 
22 struct TitrableSite {
23  std::string residueName;
24  int index;
26  std::vector<int> indicesInFullStructure;
27  bool isAcid = false;
28  bool isBase = false;
29  int criticalAtom;
30  double refEnergy;
31  double nonRefEnergy;
32  double deltaE;
33 };
34 
35 } // namespace StructurePreparation
36 } // namespace Scine
37 
38 #endif // TITRATION_DATAMANAGER_H
Definition: TitrationData.h:22