[14de469] | 1 | /** \file parsing.hpp
|
---|
| 2 | *
|
---|
| 3 | * Definitions of various class functions for the parsing of value files.
|
---|
[6ac7ee] | 4 | *
|
---|
[14de469] | 5 | */
|
---|
| 6 |
|
---|
| 7 |
|
---|
| 8 | #ifndef PARSING_HPP_
|
---|
| 9 | #define PARSING_HPP_
|
---|
| 10 |
|
---|
[6dea43] | 11 | using namespace std;
|
---|
| 12 |
|
---|
| 13 | // include config.h
|
---|
| 14 | #ifdef HAVE_CONFIG_H
|
---|
| 15 | #include <config.h>
|
---|
| 16 | #endif
|
---|
| 17 |
|
---|
[14de469] | 18 | // ======================================= DEFINES ==========================================
|
---|
| 19 |
|
---|
| 20 | #define EnergySuffix ".energy.all"
|
---|
[85d278] | 21 | #define EnergyFragmentSuffix ".energyfragment.all"
|
---|
[14de469] | 22 | #define ForcesSuffix ".forces.all"
|
---|
[85d278] | 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"
|
---|
[68cb0f] | 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"
|
---|
[674220] | 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"
|
---|
[14de469] | 37 | #define TimeSuffix ".speed"
|
---|
| 38 |
|
---|
| 39 | // ======================================= FUNCTIONS ==========================================
|
---|
| 40 |
|
---|
[68cb0f] | 41 | bool FilePresent(const char *filename, bool test);
|
---|
[14de469] | 42 | bool TestParams(int argc, char **argv);
|
---|
| 43 |
|
---|
[6dea43] | 44 |
|
---|
[14de469] | 45 | // ======================================= CLASS MatrixContainer =============================
|
---|
| 46 |
|
---|
| 47 | class MatrixContainer {
|
---|
[042f82] | 48 | public:
|
---|
| 49 | double ***Matrix;
|
---|
| 50 | int **Indices;
|
---|
[b12a35] | 51 | char **Header;
|
---|
[042f82] | 52 | int MatrixCounter;
|
---|
| 53 | int *RowCounter;
|
---|
[f731ae] | 54 | int *ColumnCounter;
|
---|
[14de469] | 55 |
|
---|
[042f82] | 56 | MatrixContainer();
|
---|
[14de469] | 57 | ~MatrixContainer();
|
---|
| 58 |
|
---|
[f731ae] | 59 | bool InitialiseIndices(class MatrixContainer *Matrix = NULL);
|
---|
[042f82] | 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);
|
---|
[b12a35] | 62 | bool AllocateMatrix(char **GivenHeader, int MCounter, int *RCounter, int *CCounter);
|
---|
[042f82] | 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);
|
---|
[6ac7ee] | 73 | };
|
---|
[14de469] | 74 |
|
---|
| 75 | // ======================================= CLASS EnergyMatrix =============================
|
---|
| 76 |
|
---|
| 77 | class EnergyMatrix : public MatrixContainer {
|
---|
[042f82] | 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);
|
---|
[14de469] | 82 | };
|
---|
| 83 |
|
---|
| 84 | // ======================================= CLASS ForceMatrix =============================
|
---|
| 85 |
|
---|
| 86 | class ForceMatrix : public MatrixContainer {
|
---|
[042f82] | 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);
|
---|
[14de469] | 91 | };
|
---|
| 92 |
|
---|
[85d278] | 93 | // ======================================= CLASS HessianMatrix =============================
|
---|
| 94 |
|
---|
[b12a35] | 95 | class HessianMatrix : public MatrixContainer {
|
---|
[85d278] | 96 | public:
|
---|
[b12a35] | 97 | HessianMatrix();
|
---|
| 98 | //~HessianMatrix();
|
---|
[85d278] | 99 | bool ParseIndices(char *name);
|
---|
[b12a35] | 100 | bool SumSubManyBodyTerms(class MatrixContainer &MatrixValues, class KeySetsContainer &KeySet, int Order);
|
---|
[85d278] | 101 | bool SumSubHessians(class HessianMatrix &Fragments, class KeySetsContainer &KeySet, int Order, double sign);
|
---|
[36ec71] | 102 | bool ParseFragmentMatrix(const char *name, const char *prefix, string suffix, int skiplines, int skipcolumns);
|
---|
[b12a35] | 103 | private:
|
---|
| 104 | bool IsSymmetric;
|
---|
[85d278] | 105 | };
|
---|
| 106 |
|
---|
[14de469] | 107 | // ======================================= CLASS KeySetsContainer =============================
|
---|
| 108 |
|
---|
| 109 | class KeySetsContainer {
|
---|
[042f82] | 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);
|
---|
[14de469] | 124 | };
|
---|
| 125 |
|
---|
| 126 | // ======================================= END =============================================
|
---|
| 127 |
|
---|
| 128 | #endif /*PARSING_HPP_*/
|
---|