/** \file analyzer.cpp * * Takes evaluated fragments (energy and forces) and does evaluation of how sensible the BOSSANOVA * approach was, e.g. in the decay of the many-body-contributions. * */ //============================ INCLUDES =========================== #include "datacreator.hpp" #include "helpers.hpp" #include "parser.hpp" #include "periodentafel.hpp" // include config.h #ifdef HAVE_CONFIG_H #include #endif //============================== MAIN ============================= int main(int argc, char **argv) { periodentafel *periode = NULL; // and a period table of all elements EnergyMatrix Energy; EnergyMatrix Hcorrection; ForceMatrix Force; ForceMatrix Shielding; ForceMatrix ShieldingPAS; MatrixContainer Time; EnergyMatrix EnergyFragments; EnergyMatrix HcorrectionFragments; ForceMatrix ForceFragments; ForceMatrix ShieldingFragments; ForceMatrix ShieldingPASFragments; KeySetsContainer KeySet; ofstream output; ofstream output2; ofstream output3; ofstream output4; ifstream input; stringstream filename; time_t t = time(NULL); struct tm *ts = localtime(&t); char *datum = asctime(ts); stringstream Orderxrange; stringstream Fragmentxrange; stringstream yrange; char *dir = NULL; bool Hcorrected = true; double norm; cout << "ANOVA Analyzer" << endl; cout << "==============" << endl; // Get the command line options if (argc < 4) { cout << "Usage: " << argv[0] << " [elementsdb]" << endl; cout << "\ttherein the output of a molecuilder fragmentation is expected, each fragment with a subdir containing an energy.all and a forces.all file." << endl; cout << "\tprefix of energy and forces file." << endl; cout << "\tcreated plotfiles and datafiles are placed into this directory " << endl; cout << "[elementsdb]\tpath to elements database, needed for shieldings." << endl; return 1; } else { dir = (char *) Malloc(sizeof(char)*(strlen(argv[2])+2), "main: *dir"); strcpy(dir, "/"); strcat(dir, argv[2]); } if (argc > 4) { cout << "Loading periodentafel." << endl; periode = new periodentafel; periode->LoadPeriodentafel(argv[4]); } // Test the given directory if (!TestParams(argc, argv)) return 1; // +++++++++++++++++ PARSING +++++++++++++++++++++++++++++++ // ------------- Parse through all Fragment subdirs -------- if (!Energy.ParseMatrix(argv[1], dir, EnergySuffix,0,0)) return 1; Hcorrected = Hcorrection.ParseMatrix(argv[1], "", HCORRECTIONSUFFIX,0,0); if (!Force.ParseMatrix(argv[1], dir, ForcesSuffix,0,0)) return 1; if (!Time.ParseMatrix(argv[1], dir, TimeSuffix, 10,1)) return 1; if (periode != NULL) { // also look for PAS values if (!Shielding.ParseMatrix(argv[1], dir, ShieldingSuffix, 1, 0)) return 1; if (!ShieldingPAS.ParseMatrix(argv[1], dir, ShieldingPASSuffix, 1, 0)) return 1; } // ---------- Parse the TE Factors into an array ----------------- if (!Energy.ParseIndices()) return 1; if (Hcorrected) Hcorrection.ParseIndices(); // ---------- Parse the Force indices into an array --------------- if (!Force.ParseIndices(argv[1])) return 1; if (!ForceFragments.AllocateMatrix(Force.Header, Force.MatrixCounter, Force.RowCounter, Force.ColumnCounter)) return 1; if (!ForceFragments.ParseIndices(argv[1])) return 1; // ---------- Parse the shielding indices into an array --------------- if (periode != NULL) { // also look for PAS values if(!Shielding.ParseIndices(argv[1])) return 1; if(!ShieldingPAS.ParseIndices(argv[1])) return 1; } // ---------- Parse the KeySets into an array --------------- if (!KeySet.ParseKeySets(argv[1], Force.RowCounter, Force.MatrixCounter)) return 1; if (!KeySet.ParseManyBodyTerms()) return 1; // ---------- Parse fragment files created by 'joiner' into an array ------------- if (!EnergyFragments.ParseMatrix(argv[1], dir, EnergyFragmentSuffix,0,0)) return 1; if (Hcorrected) HcorrectionFragments.ParseMatrix(argv[1], dir, HcorrectionFragmentSuffix,0,0); if (!ForceFragments.ParseMatrix(argv[1], dir, ForceFragmentSuffix,0,0)) return 1; if (periode != NULL) { // also look for PAS values if (!ShieldingFragments.ParseMatrix(argv[1], dir, ShieldingSuffix, 1, 0)) return 1; if (!ShieldingPASFragments.ParseMatrix(argv[1], dir, ShieldingPASSuffix, 1, 0)) return 1; } // +++++++++++++++ TESTING ++++++++++++++++++++++++++++++ // print energy and forces to file filename.str(""); filename << argv[3] << "/" << "energy-forces.all"; output.open(filename.str().c_str(), ios::out); output << endl << "Total Energy" << endl << "==============" << endl << Energy.Header << endl; for(int j=0;j