source: molecuilder/src/parser.hpp@ d11f22

Last change on this file since d11f22 was a6e314, checked in by Frederik Heber <heber@…>, 17 years ago

ParseMatrix(): char * to string, Contains() hat KeySetContainer:: still in front (new g++ of hardy complained)

  • Property mode set to 100644
File size: 2.8 KB
Line 
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
11using 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
30inline bool FilePresent(const char *filename);
31#else
32bool FilePresent(const char *filename);
33#endif
34
35bool TestParams(int argc, char **argv);
36
37
38// ======================================= CLASS MatrixContainer =============================
39
40class 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, string 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
66class 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
74class 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
82class 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 Contains(const int GreaterSet, const int SmallerSet);
97};
98
99// ======================================= END =============================================
100
101#endif /*PARSING_HPP_*/
Note: See TracBrowser for help on using the repository browser.