| 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 ForcesSuffix ".forces.all"
 | 
|---|
| 22 | #define TimeSuffix ".speed"
 | 
|---|
| 23 | #define EnergyFragmentSuffix ".energyfragment.all"
 | 
|---|
| 24 | #define ForceFragmentSuffix ".forcefragment.all"
 | 
|---|
| 25 | #define OrderSuffix ".Order"
 | 
|---|
| 26 | 
 | 
|---|
| 27 | // ======================================= FUNCTIONS ==========================================
 | 
|---|
| 28 | 
 | 
|---|
| 29 | #ifdef HAVE_INLINE
 | 
|---|
| 30 | inline bool FilePresent(const char *filename);
 | 
|---|
| 31 | #else
 | 
|---|
| 32 | bool FilePresent(const char *filename);
 | 
|---|
| 33 | #endif
 | 
|---|
| 34 | 
 | 
|---|
| 35 | bool TestParams(int argc, char **argv);
 | 
|---|
| 36 | 
 | 
|---|
| 37 | 
 | 
|---|
| 38 | // ======================================= CLASS MatrixContainer =============================
 | 
|---|
| 39 | 
 | 
|---|
| 40 | class MatrixContainer {
 | 
|---|
| 41 |   public:
 | 
|---|
| 42 |     double ***Matrix;
 | 
|---|
| 43 |     int **Indices;
 | 
|---|
| 44 |     char *Header;
 | 
|---|
| 45 |     int MatrixCounter;
 | 
|---|
| 46 |     int *RowCounter;
 | 
|---|
| 47 |     int ColumnCounter;
 | 
|---|
| 48 |   
 | 
|---|
| 49 |   MatrixContainer();
 | 
|---|
| 50 |   ~MatrixContainer();
 | 
|---|
| 51 |   
 | 
|---|
| 52 |   bool ParseMatrix(char *name, char *prefix, char *suffix, int skiplines, int skipcolumns);
 | 
|---|
| 53 |   bool AllocateMatrix(char *GivenHeader, int MCounter, int *RCounter, int CCounter);
 | 
|---|
| 54 |   bool ResetMatrix();
 | 
|---|
| 55 |   bool SetLastMatrix(double value, int skipcolumns);
 | 
|---|
| 56 |   bool SetLastMatrix(double **values, int skipcolumns);
 | 
|---|
| 57 |   //bool ParseIndices();
 | 
|---|
| 58 |   //bool SumSubValues();
 | 
|---|
| 59 |   bool SumSubManyBodyTerms(class MatrixContainer &Matrix, class KeySetsContainer &KeySet, int Order);
 | 
|---|
| 60 |   bool WriteTotalFragments(const char *name, const char *prefix);
 | 
|---|
| 61 |   bool WriteLastMatrix(const char *name, const char *prefix, const char *suffix);
 | 
|---|
| 62 | }; 
 | 
|---|
| 63 | 
 | 
|---|
| 64 | // ======================================= CLASS EnergyMatrix =============================
 | 
|---|
| 65 | 
 | 
|---|
| 66 | class EnergyMatrix : public MatrixContainer {
 | 
|---|
| 67 |   public:
 | 
|---|
| 68 |     bool ParseIndices();
 | 
|---|
| 69 |     bool SumSubEnergy(class EnergyMatrix &Fragments, class KeySetsContainer &KeySet, int Order);
 | 
|---|
| 70 | };
 | 
|---|
| 71 | 
 | 
|---|
| 72 | // ======================================= CLASS ForceMatrix =============================
 | 
|---|
| 73 | 
 | 
|---|
| 74 | class ForceMatrix : public MatrixContainer {
 | 
|---|
| 75 |   public: 
 | 
|---|
| 76 |     bool ParseIndices(char *name);
 | 
|---|
| 77 |     bool SumSubForces(class ForceMatrix &Fragments, class KeySetsContainer &KeySet, int Order);
 | 
|---|
| 78 | };
 | 
|---|
| 79 | 
 | 
|---|
| 80 | // ======================================= CLASS KeySetsContainer =============================
 | 
|---|
| 81 | 
 | 
|---|
| 82 | class KeySetsContainer {
 | 
|---|
| 83 |   public:
 | 
|---|
| 84 |     int **KeySets;
 | 
|---|
| 85 |     int *AtomCounter;
 | 
|---|
| 86 |     int FragmentCounter;
 | 
|---|
| 87 |     int Order;
 | 
|---|
| 88 |     int *FragmentsPerOrder;
 | 
|---|
| 89 |     int **OrderSet;
 | 
|---|
| 90 |   
 | 
|---|
| 91 |   KeySetsContainer();
 | 
|---|
| 92 |   ~KeySetsContainer();
 | 
|---|
| 93 |    
 | 
|---|
| 94 |   bool ParseKeySets(const char *name, const int *ACounter, const int FCounter);
 | 
|---|
| 95 |   bool ParseManyBodyTerms();
 | 
|---|
| 96 |   bool KeySetsContainer::Contains(const int GreaterSet, const int SmallerSet);
 | 
|---|
| 97 | };
 | 
|---|
| 98 | 
 | 
|---|
| 99 | // ======================================= END =============================================
 | 
|---|
| 100 | 
 | 
|---|
| 101 | #endif /*PARSING_HPP_*/
 | 
|---|