Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/parser.hpp

    rcc2ee5 r437922  
    22 *
    33 * Definitions of various class functions for the parsing of value files.
    4  *   
     4 *
    55 */
    66
     
    4747    int *RowCounter;
    4848    int ColumnCounter;
    49  
     49
    5050  MatrixContainer();
    51   ~MatrixContainer();
    52  
     51  virtual ~MatrixContainer();
     52
    5353  bool ParseMatrix(const char *name, int skiplines, int skipcolumns, int MatrixNr);
    5454  virtual bool ParseFragmentMatrix(char *name, char *prefix, string suffix, int skiplines, int skipcolumns);
     
    6464  bool WriteTotalFragments(const char *name, const char *prefix);
    6565  bool WriteLastMatrix(const char *name, const char *prefix, const char *suffix);
    66 }; 
     66};
    6767
    6868// ======================================= CLASS EnergyMatrix =============================
     
    7878
    7979class ForceMatrix : public MatrixContainer {
    80   public: 
     80  public:
    8181    bool ParseIndices(char *name);
    8282    bool SumSubForces(class ForceMatrix &Fragments, class KeySetsContainer &KeySet, int Order, double sign);
     
    9494    int *FragmentsPerOrder;
    9595    int **OrderSet;
    96  
     96
    9797  KeySetsContainer();
    9898  ~KeySetsContainer();
    99    
     99
    100100  bool ParseKeySets(const char *name, const int *ACounter, const int FCounter);
    101101  bool ParseManyBodyTerms();
Note: See TracChangeset for help on using the changeset viewer.