source: src/parser.hpp@ d2a294

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable
Last change on this file since d2a294 was 10f641, checked in by Frederik Heber <heber@…>, 17 years ago

All filenames (const char *) have been transferred to defs.hpp

Filenames have been transformed into #define's into order to centralise these values. Parser.hpp had these already and they were streamlined to match defs.hpp (which is now included in parser.hpp)

  • Property mode set to 100644
File size: 2.9 KB
RevLine 
[14de469]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
[6dea43]11using 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"
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
[6dea43]30inline bool FilePresent(const char *filename);
31#else
[14de469]32bool FilePresent(const char *filename);
33#endif
[6dea43]34
[14de469]35bool TestParams(int argc, char **argv);
36
[6dea43]37
[14de469]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, 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
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 KeySetsContainer::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.