Changes in src/parser.hpp [cc2ee5:437922]
- File:
-
- 1 edited
-
src/parser.hpp (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/parser.hpp
rcc2ee5 r437922 2 2 * 3 3 * Definitions of various class functions for the parsing of value files. 4 * 4 * 5 5 */ 6 6 … … 47 47 int *RowCounter; 48 48 int ColumnCounter; 49 49 50 50 MatrixContainer(); 51 ~MatrixContainer();52 51 virtual ~MatrixContainer(); 52 53 53 bool ParseMatrix(const char *name, int skiplines, int skipcolumns, int MatrixNr); 54 54 virtual bool ParseFragmentMatrix(char *name, char *prefix, string suffix, int skiplines, int skipcolumns); … … 64 64 bool WriteTotalFragments(const char *name, const char *prefix); 65 65 bool WriteLastMatrix(const char *name, const char *prefix, const char *suffix); 66 }; 66 }; 67 67 68 68 // ======================================= CLASS EnergyMatrix ============================= … … 78 78 79 79 class ForceMatrix : public MatrixContainer { 80 public: 80 public: 81 81 bool ParseIndices(char *name); 82 82 bool SumSubForces(class ForceMatrix &Fragments, class KeySetsContainer &KeySet, int Order, double sign); … … 94 94 int *FragmentsPerOrder; 95 95 int **OrderSet; 96 96 97 97 KeySetsContainer(); 98 98 ~KeySetsContainer(); 99 99 100 100 bool ParseKeySets(const char *name, const int *ACounter, const int FCounter); 101 101 bool ParseManyBodyTerms();
Note:
See TracChangeset
for help on using the changeset viewer.
