1 | /** \file parsing.hpp
|
---|
2 | *
|
---|
3 | * Definitions of various class functions for the parsing of value files.
|
---|
4 | *
|
---|
5 | */
|
---|
6 |
|
---|
7 |
|
---|
8 | #ifndef PARSING_HPP_
|
---|
9 | #define PARSING_HPP_
|
---|
10 |
|
---|
11 | using namespace std;
|
---|
12 |
|
---|
13 | // include config.h
|
---|
14 | #ifdef HAVE_CONFIG_H
|
---|
15 | #include <config.h>
|
---|
16 | #endif
|
---|
17 |
|
---|
18 | // ======================================= DEFINES ==========================================
|
---|
19 |
|
---|
20 | #define EnergySuffix ".energy.all"
|
---|
21 | #define EnergyFragmentSuffix ".energyfragment.all"
|
---|
22 | #define ForcesSuffix ".forces.all"
|
---|
23 | #define ForceFragmentSuffix ".forcefragment.all"
|
---|
24 | #define HcorrectionSuffix ".Hcorrection.all"
|
---|
25 | #define HcorrectionFragmentSuffix ".Hcorrectionfragment.all"
|
---|
26 | #define HessianSuffix ".hessian_xx.all"
|
---|
27 | #define HessianFragmentSuffix ".hessianfragment_xx.all"
|
---|
28 | #define OrderSuffix ".Order"
|
---|
29 | #define ShieldingSuffix ".sigma_all.csv"
|
---|
30 | #define ShieldingPASSuffix ".sigma_all_PAS.csv"
|
---|
31 | #define ShieldingFragmentSuffix ".sigma_all_fragment.all"
|
---|
32 | #define ShieldingPASFragmentSuffix ".sigma_all_PAS_fragment.all"
|
---|
33 | #define ChiSuffix ".chi_all.csv"
|
---|
34 | #define ChiPASSuffix ".chi_all_PAS.csv"
|
---|
35 | #define ChiFragmentSuffix ".chi_all_fragment.all"
|
---|
36 | #define ChiPASFragmentSuffix ".chi_all_PAS_fragment.all"
|
---|
37 | #define TimeSuffix ".speed"
|
---|
38 |
|
---|
39 | // ======================================= FUNCTIONS ==========================================
|
---|
40 |
|
---|
41 | bool FilePresent(const char *filename, bool test);
|
---|
42 | bool TestParams(int argc, char **argv);
|
---|
43 |
|
---|
44 |
|
---|
45 | // ======================================= CLASS MatrixContainer =============================
|
---|
46 |
|
---|
47 | class MatrixContainer {
|
---|
48 | public:
|
---|
49 | double ***Matrix;
|
---|
50 | int **Indices;
|
---|
51 | char **Header;
|
---|
52 | int MatrixCounter;
|
---|
53 | int *RowCounter;
|
---|
54 | int *ColumnCounter;
|
---|
55 |
|
---|
56 | MatrixContainer();
|
---|
57 | ~MatrixContainer();
|
---|
58 |
|
---|
59 | bool InitialiseIndices(class MatrixContainer *Matrix = NULL);
|
---|
60 | bool ParseMatrix(const char *name, int skiplines, int skipcolumns, int MatrixNr);
|
---|
61 | virtual bool ParseFragmentMatrix(const char *name, const char *prefix, string suffix, int skiplines, int skipcolumns);
|
---|
62 | bool AllocateMatrix(char **GivenHeader, int MCounter, int *RCounter, int *CCounter);
|
---|
63 | bool ResetMatrix();
|
---|
64 | double FindMinValue();
|
---|
65 | double FindMaxValue();
|
---|
66 | bool SetLastMatrix(double value, int skipcolumns);
|
---|
67 | bool SetLastMatrix(double **values, int skipcolumns);
|
---|
68 | //bool ParseIndices();
|
---|
69 | //bool SumSubValues();
|
---|
70 | bool SumSubManyBodyTerms(class MatrixContainer &Matrix, class KeySetsContainer &KeySet, int Order);
|
---|
71 | bool WriteTotalFragments(const char *name, const char *prefix);
|
---|
72 | bool WriteLastMatrix(const char *name, const char *prefix, const char *suffix);
|
---|
73 | };
|
---|
74 |
|
---|
75 | // ======================================= CLASS EnergyMatrix =============================
|
---|
76 |
|
---|
77 | class EnergyMatrix : public MatrixContainer {
|
---|
78 | public:
|
---|
79 | bool ParseIndices();
|
---|
80 | bool SumSubEnergy(class EnergyMatrix &Fragments, class EnergyMatrix *CorrectionFragments, class KeySetsContainer &KeySet, int Order, double sign);
|
---|
81 | bool ParseFragmentMatrix(const char *name, const char *prefix, string suffix, int skiplines, int skipcolumns);
|
---|
82 | };
|
---|
83 |
|
---|
84 | // ======================================= CLASS ForceMatrix =============================
|
---|
85 |
|
---|
86 | class ForceMatrix : public MatrixContainer {
|
---|
87 | public:
|
---|
88 | bool ParseIndices(const char *name);
|
---|
89 | bool SumSubForces(class ForceMatrix &Fragments, class KeySetsContainer &KeySet, int Order, double sign);
|
---|
90 | bool ParseFragmentMatrix(const char *name, const char *prefix, string suffix, int skiplines, int skipcolumns);
|
---|
91 | };
|
---|
92 |
|
---|
93 | // ======================================= CLASS HessianMatrix =============================
|
---|
94 |
|
---|
95 | class HessianMatrix : public MatrixContainer {
|
---|
96 | public:
|
---|
97 | HessianMatrix();
|
---|
98 | //~HessianMatrix();
|
---|
99 | bool ParseIndices(char *name);
|
---|
100 | bool SumSubManyBodyTerms(class MatrixContainer &MatrixValues, class KeySetsContainer &KeySet, int Order);
|
---|
101 | bool SumSubHessians(class HessianMatrix &Fragments, class KeySetsContainer &KeySet, int Order, double sign);
|
---|
102 | bool ParseFragmentMatrix(const char *name, const char *prefix, string suffix, int skiplines, int skipcolumns);
|
---|
103 | private:
|
---|
104 | bool IsSymmetric;
|
---|
105 | };
|
---|
106 |
|
---|
107 | // ======================================= CLASS KeySetsContainer =============================
|
---|
108 |
|
---|
109 | class KeySetsContainer {
|
---|
110 | public:
|
---|
111 | int **KeySets;
|
---|
112 | int *AtomCounter;
|
---|
113 | int FragmentCounter;
|
---|
114 | int Order;
|
---|
115 | int *FragmentsPerOrder;
|
---|
116 | int **OrderSet;
|
---|
117 |
|
---|
118 | KeySetsContainer();
|
---|
119 | ~KeySetsContainer();
|
---|
120 |
|
---|
121 | bool ParseKeySets(const char *name, const int *ACounter, const int FCounter);
|
---|
122 | bool ParseManyBodyTerms();
|
---|
123 | bool Contains(const int GreaterSet, const int SmallerSet);
|
---|
124 | };
|
---|
125 |
|
---|
126 | // ======================================= END =============================================
|
---|
127 |
|
---|
128 | #endif /*PARSING_HPP_*/
|
---|