Changes in / [c14c78:0bfe73]
- Files:
-
- 384 added
- 265 deleted
- 77 edited
Legend:
- Unmodified
- Added
- Removed
-
.gitignore
rc14c78 r0bfe73 13 13 *.in 14 14 build* 15 config/* 15 16 debug* 16 17 aclocal.m4 -
configure.ac
rc14c78 r0bfe73 206 206 tests/CodeChecks/Makefile]) 207 207 AC_CONFIG_FILES([ 208 tests/Fragmentations/Makefile 209 tests/Fragmentations/defs]) 210 AC_CONFIG_FILES([ 208 211 tests/Tesselations/Makefile 209 212 tests/Tesselations/defs]) -
src/Actions/AtomAction/RotateAroundOriginByAngleAction.def
rc14c78 r0bfe73 13 13 // "undefine" if no parameters are required, use (NODEFAULT) for each (undefined) default value 14 14 #define paramtypes (double)(Vector) 15 #define paramtokens ("rotate- origin")("position")15 #define paramtokens ("rotate-around-origin")("position") 16 16 #define paramdescriptions ("rotation angle")("position in R^3 space") 17 17 #undef paramdefaults … … 26 26 #define MENUPOSITION 5 27 27 #define ACTIONNAME RotateAroundOriginByAngle 28 #define TOKEN "rotate- origin"28 #define TOKEN "rotate-around-origin" 29 29 30 30 -
src/Actions/CommandAction/BondLengthTableAction.cpp
rc14c78 r0bfe73 45 45 DoLog(0) && (Log() << Verbose(0) << "Using " << params.BondGraphFileName << " as bond length table." << endl); 46 46 config *configuration = World::getInstance().getConfig(); 47 if (configuration->BG == NULL) { 48 configuration->BG = new BondGraph(configuration->GetIsAngstroem()); 49 if ((!params.BondGraphFileName.empty()) 50 && boost::filesystem::exists(params.BondGraphFileName) 51 && (configuration->BG->LoadBondLengthTable(params.BondGraphFileName.string()))) { 52 DoLog(0) && (Log() << Verbose(0) << "Bond length table loaded successfully." << endl); 53 return Action::success; 47 BondGraph *OldBG; 48 if (configuration->BG != NULL) { 49 OldBG = configuration->BG; 50 DoLog(0) && (Log() << Verbose(0) << "There is a bond length table already present." << endl); 51 } 52 configuration->BG = new BondGraph(configuration->GetIsAngstroem()); 53 if ((!params.BondGraphFileName.empty()) 54 && boost::filesystem::exists(params.BondGraphFileName)) { 55 std::ifstream input(params.BondGraphFileName.string().c_str()); 56 if ((input.good()) && (configuration->BG->LoadBondLengthTable(input))) { 57 DoLog(0) && (Log() << Verbose(0) << "Bond length table parsed successfully." << endl); 58 input.close(); 59 return Action::state_ptr(new CommandBondLengthTableState(*OldBG, params)); 54 60 } else { 55 DoeLog(1) && (eLog()<< Verbose(1) << "Bond length table loading failed." << endl); 61 DoeLog(1) && (eLog()<< Verbose(1) << "Bond length table parsing failed." << endl); 62 input.close(); 63 configuration->BG = new BondGraph(*OldBG); 56 64 return Action::failure; 57 65 } 58 66 } else { 59 DoLog(0) && (Log() << Verbose(0) << "Bond length table already present." << endl); 67 DoeLog(1) && (eLog()<< Verbose(1) << "Bond length table loading failed." << endl); 68 configuration->BG = new BondGraph(*OldBG); 60 69 return Action::failure; 61 70 } … … 63 72 64 73 Action::state_ptr CommandBondLengthTableAction::performUndo(Action::state_ptr _state) { 65 // ParserLoadXyzState *state = assert_cast<ParserLoadXyzState*>(_state.get());74 CommandBondLengthTableState *state = assert_cast<CommandBondLengthTableState*>(_state.get()); 66 75 67 return Action::failure;68 // string newName = state->mol->getName();69 // state->mol->setName(state->lastName);70 // 71 // return Action::state_ptr(new ParserLoadXyzState(state->mol,newName));76 config *configuration = World::getInstance().getConfig(); 77 BondGraph *OldBG = new BondGraph(*configuration->BG); 78 configuration->BG = new BondGraph(state->OldBG); 79 80 return Action::state_ptr(new CommandBondLengthTableState(*OldBG,params)); 72 81 } 73 82 74 83 Action::state_ptr CommandBondLengthTableAction::performRedo(Action::state_ptr _state){ 75 return Action::failure; 84 CommandBondLengthTableState *state = assert_cast<CommandBondLengthTableState*>(_state.get()); 85 86 config *configuration = World::getInstance().getConfig(); 87 BondGraph *OldBG = new BondGraph(*configuration->BG); 88 configuration->BG = new BondGraph(state->OldBG); 89 90 return Action::state_ptr(new CommandBondLengthTableState(*OldBG,params)); 76 91 } 77 92 -
src/Actions/CommandAction/BondLengthTableAction.def
rc14c78 r0bfe73 8 8 // all includes and forward declarations necessary for non-integral types below 9 9 10 #include "bondgraph.hpp" 10 11 11 12 // i.e. there is an integer with variable name Z that can be found in … … 18 19 #define paramreferences (BondGraphFileName) 19 20 20 # undef statetypes21 # undef statereferences21 #define statetypes (BondGraph) 22 #define statereferences (OldBG) 22 23 23 24 // some defines for all the names, you may use ACTION, STATE and PARAMS -
src/Actions/FragmentationAction/DepthFirstSearchAction.cpp
rc14c78 r0bfe73 52 52 std::deque<bond *> *BackEdgeStack = NULL; 53 53 std::deque<bond *> *LocalBackEdgeStack = NULL; 54 mol->CreateAdjacencyList(params.distance, World::getInstance().getConfig()->GetIsAngstroem(), &BondGraph::CovalentMinMaxDistance, NULL); 54 BondGraph *BG = World::getInstance().getConfig()->BG; 55 if (BG != NULL) 56 mol->CreateAdjacencyList(params.distance, World::getInstance().getConfig()->GetIsAngstroem(), &BondGraph::BondLengthMatrixMinMaxDistance, BG); 57 else 58 mol->CreateAdjacencyList(params.distance, World::getInstance().getConfig()->GetIsAngstroem(), &BondGraph::CovalentMinMaxDistance, BG); 55 59 Subgraphs = mol->DepthFirstSearchAnalysis(BackEdgeStack); 56 60 if (Subgraphs != NULL) { -
src/Actions/FragmentationAction/FragmentationAction.def
rc14c78 r0bfe73 13 13 // "undefine" if no parameters are required, use (NODEFAULT) for each (undefined) default value 14 14 #define paramtypes (std::string)(double)(int) 15 #define paramtokens ("fragment-mol ")("distance")("order")15 #define paramtokens ("fragment-molecule")("distance")("order") 16 16 #define paramdescriptions ("path to where the fragment configurations shall be stored")("distance in space")("order of a discretization, dissection, ...") 17 17 #undef paramdefaults … … 26 26 #define MENUPOSITION 3 27 27 #define ACTIONNAME Fragmentation 28 #define TOKEN "fragment-mol "28 #define TOKEN "fragment-molecule" 29 29 30 30 -
src/Actions/FragmentationAction/SubgraphDissectionAction.def
rc14c78 r0bfe73 26 26 #define MENUPOSITION 4 27 27 #define ACTIONNAME SubgraphDissection 28 #define TOKEN "subgraph-dissect "28 #define TOKEN "subgraph-dissection" 29 29 30 30 -
src/Actions/Makefile.am
rc14c78 r0bfe73 127 127 MoleculeAction/VerletIntegrationAction.hpp 128 128 129 PARSERACTIONSOURCE = \ 130 ParserAction/ParseTremoloPotentialsAction.cpp \ 131 ParserAction/SetMpqcParametersAction.cpp \ 132 ParserAction/SetOutputFormatsAction.cpp 133 PARSERACTIONHEADER = \ 134 ParserAction/ParseTremoloPotentialsAction.hpp \ 135 ParserAction/SetMpqcParametersAction.hpp \ 136 ParserAction/SetOutputFormatsAction.hpp 137 129 138 RANDONNUMBERSSOURCE =\ 130 139 RandomNumbersAction/SetRandomNumbersDistributionAction.cpp \ 131 140 RandomNumbersAction/SetRandomNumbersEngineAction.cpp 132 133 141 RANDONNUMBERSHEADER =\ 134 142 RandomNumbersAction/SetRandomNumbersDistributionAction.hpp \ … … 210 218 WorldAction/RepeatBoxAction.cpp \ 211 219 WorldAction/ScaleBoxAction.cpp \ 212 WorldAction/SetDefaultNameAction.cpp \ 213 WorldAction/SetGaussianBasisAction.cpp \ 214 WorldAction/SetOutputFormatsAction.cpp 220 WorldAction/SetDefaultNameAction.cpp 215 221 WORLDACTIONHEADER = \ 216 222 WorldAction/AddEmptyBoundaryAction.hpp \ … … 223 229 WorldAction/RepeatBoxAction.hpp \ 224 230 WorldAction/ScaleBoxAction.hpp \ 225 WorldAction/SetDefaultNameAction.hpp \ 226 WorldAction/SetGaussianBasisAction.hpp \ 227 WorldAction/SetOutputFormatsAction.hpp 231 WorldAction/SetDefaultNameAction.hpp 228 232 229 233 -
src/Actions/MoleculeAction/LinearInterpolationofTrajectoriesAction.def
rc14c78 r0bfe73 13 13 // "undefine" if no parameters are required, use (NODEFAULT) for each (undefined) default value 14 14 #define paramtypes (boost::filesystem::path)(int)(int)(bool) 15 #define paramtokens ("linear-interpolat e")("start-step")("end-step")("id-mapping")15 #define paramtokens ("linear-interpolation-of-trajectories")("start-step")("end-step")("id-mapping") 16 16 #define paramdescriptions ("path where to store the intermediate configurations")("first or start step")("last or end step")("whether the identity shall be used in mapping atoms onto atoms or not") 17 17 #undef paramdefaults … … 26 26 #define MENUPOSITION 6 27 27 #define ACTIONNAME LinearInterpolationofTrajectories 28 #define TOKEN "linear-interpolat e"28 #define TOKEN "linear-interpolation-of-trajectories" 29 29 30 30 -
src/Actions/MoleculeAction/LoadAction.cpp
rc14c78 r0bfe73 70 70 MoleculeList::const_reverse_iterator iter = World::getInstance().getMolecules()->ListOfMolecules.rbegin(); 71 71 (*iter)->SetNameFromFilename(FilenamePrefix.c_str()); 72 DoLog(0) && (Log() << Verbose(0) << "Chemical formula is " << (*iter)->getFormula() << std::endl); 72 73 } 73 74 return Action::success; -
src/Actions/MoleculeAction/RotateAroundSelfByAngleAction.def
rc14c78 r0bfe73 14 14 // "undefine" if no parameters are required, use (NODEFAULT) for each (undefined) default value 15 15 #define paramtypes (double)(Vector) 16 #define paramtokens ("rotate- self")("axis")16 #define paramtokens ("rotate-around-self")("axis") 17 17 #define paramdescriptions ("rotation angle in degrees")("position in R^3 space") 18 18 #undef paramdefaults … … 27 27 #define MENUPOSITION 8 28 28 #define ACTIONNAME RotateAroundSelfByAngle 29 #define TOKEN "rotate- self"29 #define TOKEN "rotate-around-self" 30 30 31 31 -
src/Actions/MoleculeAction/RotateToPrincipalAxisSystemAction.def
rc14c78 r0bfe73 16 16 // "undefine" if no parameters are required, use (NODEFAULT) for each (undefined) default value 17 17 #define paramtypes (Vector) 18 #define paramtokens ("rotate-to-p as")18 #define paramtokens ("rotate-to-principal-axis-system") 19 19 #define paramdescriptions ("vector to which to align the biggest eigenvector with") 20 20 #undef paramdefaults … … 29 29 #define MENUPOSITION 9 30 30 #define ACTIONNAME RotateToPrincipalAxisSystem 31 #define TOKEN "rotate-to-p as"31 #define TOKEN "rotate-to-principal-axis-system" 32 32 33 33 -
src/Actions/MoleculeAction/VerletIntegrationAction.def
rc14c78 r0bfe73 13 13 // "undefine" if no parameters are required, use (NODEFAULT) for each (undefined) default value 14 14 #define paramtypes (boost::filesystem::path) 15 #define paramtokens ("verlet-integrat e")15 #define paramtokens ("verlet-integration") 16 16 #define paramdescriptions ("perform verlet integration of a given force file") 17 17 #undef paramdefaults … … 26 26 #define MENUPOSITION 14 27 27 #define ACTIONNAME VerletIntegration 28 #define TOKEN "verlet-integrat e"28 #define TOKEN "verlet-integration" 29 29 30 30 -
src/Actions/SelectionAction/Molecules/MoleculeByFormulaAction.def
rc14c78 r0bfe73 13 13 // "undefine" if no parameters are required, use (NODEFAULT) for each (undefined) default value 14 14 #define paramtypes (std::string) 15 #define paramtokens ("select-molecule -by-formula")15 #define paramtokens ("select-molecules-by-formula") 16 16 #define paramdescriptions ("chemical formula") 17 17 #undef paramdefaults … … 26 26 #define MENUPOSITION 10 27 27 #define ACTIONNAME MoleculeByFormula 28 #define TOKEN "select-molecule -by-formula"28 #define TOKEN "select-molecules-by-formula" 29 29 30 30 -
src/Actions/SelectionAction/Molecules/MoleculeByNameAction.def
rc14c78 r0bfe73 15 15 // "undefine" if no parameters are required, use (NODEFAULT) for each (undefined) default value 16 16 #define paramtypes (std::string) 17 #define paramtokens ("select-molecule -by-name")17 #define paramtokens ("select-molecules-by-name") 18 18 #define paramdescriptions ("molecule name") 19 19 #undef paramdefaults … … 28 28 #define MENUPOSITION 9 29 29 #define ACTIONNAME MoleculeByName 30 #define TOKEN "select-molecule -by-name"30 #define TOKEN "select-molecules-by-name" 31 31 32 32 -
src/Actions/SelectionAction/Molecules/NotMoleculeByFormulaAction.def
rc14c78 r0bfe73 13 13 // "undefine" if no parameters are required, use (NODEFAULT) for each (undefined) default value 14 14 #define paramtypes (std::string) 15 #define paramtokens ("unselect-molecule -by-formula")15 #define paramtokens ("unselect-molecules-by-formula") 16 16 #define paramdescriptions ("chemical formula") 17 17 #undef paramdefaults … … 26 26 #define MENUPOSITION 19 27 27 #define ACTIONNAME NotMoleculeByFormula 28 #define TOKEN "unselect-molecule -by-formula"28 #define TOKEN "unselect-molecules-by-formula" 29 29 30 30 -
src/Actions/SelectionAction/Molecules/NotMoleculeByNameAction.def
rc14c78 r0bfe73 13 13 // "undefine" if no parameters are required, use (NODEFAULT) for each (undefined) default value 14 14 #define paramtypes (std::string) 15 #define paramtokens ("unselect-molecule -by-name")15 #define paramtokens ("unselect-molecules-by-name") 16 16 #define paramdescriptions ("molecule name") 17 17 #undef paramdefaults … … 26 26 #define MENUPOSITION 9 27 27 #define ACTIONNAME NotMoleculeByName 28 #define TOKEN "unselect-molecule -by-name"28 #define TOKEN "unselect-molecules-by-name" 29 29 30 30 -
src/Actions/WorldAction/AddEmptyBoundaryAction.def
rc14c78 r0bfe73 14 14 // "undefine" if no parameters are required, use (NODEFAULT) for each (undefined) default value 15 15 #define paramtypes (Vector) 16 #define paramtokens (" boundary")16 #define paramtokens ("add-empty-boundary") 17 17 #define paramdescriptions ("desired minimum distance to boundary for each axis over all atoms") 18 18 #undef paramdefaults … … 27 27 #define MENUPOSITION 1 28 28 #define ACTIONNAME AddEmptyBoundary 29 #define TOKEN " boundary"29 #define TOKEN "add-empty-boundary" 30 30 31 31 -
src/Actions/WorldAction/InputAction.cpp
rc14c78 r0bfe73 78 78 iter--; 79 79 (*iter)->SetNameFromFilename(FilenamePrefix.c_str()); 80 DoLog(0) && (Log() << Verbose(0) << "Chemical formula is " << (*iter)->getFormula() << std::endl); 80 81 } 81 82 return Action::success; -
src/Descriptors/MoleculeFormulaDescriptor.cpp
rc14c78 r0bfe73 42 42 } 43 43 44 MoleculeDescriptor MoleculeByFormula(const std::string &_formula) throw( ParseError){44 MoleculeDescriptor MoleculeByFormula(const std::string &_formula) throw(FormulaStringParseException){ 45 45 Formula formula(_formula); 46 46 return MoleculeByFormula(formula); -
src/Descriptors/MoleculeFormulaDescriptor.hpp
rc14c78 r0bfe73 16 16 17 17 #include "Descriptors/MoleculeDescriptor.hpp" 18 #include "Exceptions/ ParseError.hpp"18 #include "Exceptions/FormulaStringParseException.hpp" 19 19 20 20 class Formula; 21 21 22 22 MoleculeDescriptor MoleculeByFormula(const Formula&); 23 MoleculeDescriptor MoleculeByFormula(const std::string&) throw( ParseError);23 MoleculeDescriptor MoleculeByFormula(const std::string&) throw(FormulaStringParseException); 24 24 25 25 #endif /* MOLECULEFORMULADESCRIPTOR_HPP_ */ -
src/Exceptions/Makefile.am
rc14c78 r0bfe73 16 16 NotOnSurfaceException.cpp \ 17 17 ShapeException.cpp \ 18 ParseError.cpp \18 FormulaStringParseException.cpp \ 19 19 SkewException.cpp \ 20 20 ZeroVectorException.cpp … … 29 29 NotInvertibleException.hpp \ 30 30 NotOnSurfaceException.hpp \ 31 ParseError.hpp \31 FormulaStringParseException.hpp \ 32 32 SkewException.hpp \ 33 33 ZeroVectorException.hpp -
src/Formula.cpp
rc14c78 r0bfe73 68 68 } 69 69 70 void Formula::fromString(const std::string &formula) throw( ParseError){70 void Formula::fromString(const std::string &formula) throw(FormulaStringParseException){ 71 71 // make this transactional, in case an error is thrown 72 72 Formula res; … … 77 77 } 78 78 79 int Formula::parseMaybeNumber(string::const_iterator &it,string::const_iterator &end) throw( ParseError){79 int Formula::parseMaybeNumber(string::const_iterator &it,string::const_iterator &end) throw(FormulaStringParseException){ 80 80 static const range<char> Numbers = makeRange('0',static_cast<char>('9'+1)); 81 81 int count = 0; … … 87 87 } 88 88 89 void Formula::parseFromString(string::const_iterator &it,string::const_iterator &end,char delimiter) throw( ParseError){89 void Formula::parseFromString(string::const_iterator &it,string::const_iterator &end,char delimiter) throw(FormulaStringParseException){ 90 90 // some constants needed for parsing... Assumes ASCII, change if other encodings are used 91 91 static const range<char> CapitalLetters = makeRange('A',static_cast<char>('Z'+1)); … … 103 103 sub.parseFromString(++it,end,nextdelim); 104 104 if(!sub.getElementCount()){ 105 throw( ParseError(__FILE__,__LINE__));105 throw(FormulaStringParseException(__FILE__,__LINE__)); 106 106 } 107 107 int count = parseMaybeNumber(++it,end); … … 112 112 // Atom names start with a capital letter 113 113 if(!CapitalLetters.isInRange(*it)) 114 throw( ParseError(__FILE__,__LINE__));114 throw(FormulaStringParseException(__FILE__,__LINE__)); 115 115 shorthand+=(*it++); 116 116 // the rest of the name follows … … 120 120 // test if the shorthand exists 121 121 if(!World::getInstance().getPeriode()->FindElement(shorthand)) 122 throw( ParseError(__FILE__,__LINE__));122 throw(FormulaStringParseException(__FILE__,__LINE__)); 123 123 // done, we can get the next one 124 124 addElements(shorthand,count); 125 125 } 126 126 if(it==end && delimiter!=0){ 127 throw( ParseError(__FILE__,__LINE__));127 throw(FormulaStringParseException(__FILE__,__LINE__)); 128 128 } 129 129 } -
src/Formula.hpp
rc14c78 r0bfe73 19 19 #include <iterator> 20 20 21 #include "Exceptions/ ParseError.hpp"21 #include "Exceptions/FormulaStringParseException.hpp" 22 22 23 23 #include "types.hpp" … … 71 71 72 72 std::string toString() const; 73 void fromString(const std::string&) throw( ParseError);73 void fromString(const std::string&) throw(FormulaStringParseException); 74 74 bool checkOut(std::ostream*) const; 75 75 … … 112 112 113 113 private: 114 void parseFromString(std::string::const_iterator&,std::string::const_iterator&,char) throw( ParseError);115 int parseMaybeNumber(std::string::const_iterator &it,std::string::const_iterator &end) throw( ParseError);114 void parseFromString(std::string::const_iterator&,std::string::const_iterator&,char) throw(FormulaStringParseException); 115 int parseMaybeNumber(std::string::const_iterator &it,std::string::const_iterator &end) throw(FormulaStringParseException); 116 116 // this contains all counts of elements in the formula 117 117 // the size of the actual structure might be used in comparisons -
src/LinearAlgebra/RealSpaceMatrix.cpp
rc14c78 r0bfe73 28 28 #include "LinearAlgebra/Vector.hpp" 29 29 #include "LinearAlgebra/VectorContent.hpp" 30 #include "RandomNumbers/RandomNumberGeneratorFactory.hpp" 31 #include "RandomNumbers/RandomNumberGenerator.hpp" 30 32 31 33 #include <gsl/gsl_blas.h> … … 125 127 { 126 128 double phi[NDIM]; 129 RandomNumberGenerator &random = RandomNumberGeneratorFactory::getInstance().makeRandomNumberGenerator(); 130 const double rng_min = random.min(); 131 const double rng_max = random.max(); 132 127 133 128 134 for (int i=0;i<NDIM;i++) { 129 phi[i] = rand()/(RAND_MAX/(2.*M_PI)); 135 phi[i] = (random()/(rng_max-rng_min))*(2.*M_PI); 136 std::cout << "Random angle is " << phi[i] << std::endl; 130 137 } 131 138 -
src/Parser/Makefile.am
rc14c78 r0bfe73 12 12 FormatParserStorage.cpp \ 13 13 MpqcParser.cpp \ 14 MpqcParser_Parameters.cpp \ 15 MpqcParser_Parameters_initBasis.cpp \ 14 16 PcpParser.cpp \ 15 17 PdbAtomInfoContainer.cpp \ … … 24 26 FormatParserStorage.hpp \ 25 27 MpqcParser.hpp \ 28 MpqcParser_Parameters.hpp \ 26 29 PcpParser.hpp \ 27 30 PdbAtomInfoContainer.hpp \ -
src/Parser/MpqcParser.cpp
rc14c78 r0bfe73 18 18 #endif 19 19 20 #include <iostream> 21 #include <boost/tokenizer.hpp> 22 #include <string> 23 20 24 #include "CodePatterns/MemDebug.hpp" 21 25 … … 25 29 #include "config.hpp" 26 30 #include "element.hpp" 31 #include "molecule.hpp" 27 32 #include "CodePatterns/Log.hpp" 33 #include "CodePatterns/toString.hpp" 28 34 #include "CodePatterns/Verbose.hpp" 29 35 #include "LinearAlgebra/Vector.hpp" … … 35 41 * 36 42 */ 37 MpqcParser::MpqcParser() : HessianPresent(false)43 MpqcParser::MpqcParser() 38 44 {} 39 45 … … 49 55 void MpqcParser::load(istream *file) 50 56 { 51 // TODO: MpqcParser::load implementation 52 ASSERT(false, "Not implemented yet"); 57 bool MpqcSection = false; 58 bool MoleculeSection = false; 59 bool GeometrySection = false; 60 bool BasisSection = false; 61 bool AuxBasisSection = false; 62 char line[MAXSTRINGSIZE]; 63 typedef boost::tokenizer<boost::char_separator<char> > tokenizer; 64 boost::char_separator<char> sep("[]"); 65 boost::char_separator<char> angularsep("<>"); 66 boost::char_separator<char> equalitysep("="); 67 boost::char_separator<char> whitesep(" \t"); 68 ConvertTo<double> toDouble; 69 70 molecule *newmol = World::getInstance().createMolecule(); 71 newmol->ActiveFlag = true; 72 // TODO: Remove the insertion into molecule when saving does not depend on them anymore. Also, remove molecule.hpp include 73 World::getInstance().getMolecules()->insert(newmol); 74 while (file->good()) { 75 file->getline(line, MAXSTRINGSIZE-1); 76 std::string linestring(line); 77 if ((linestring.find("atoms geometry") == string::npos) && (linestring.find("}") != string::npos)) { 78 GeometrySection = false; 79 } 80 if ((linestring.find(")") != string::npos)) { // ends a section which do not overlap 81 MpqcSection = false; 82 MoleculeSection = false; 83 BasisSection = false; 84 AuxBasisSection = false; 85 } 86 if (MoleculeSection) { 87 if (GeometrySection) { // we have an atom 88 tokenizer tokens(linestring, sep); 89 // if (tokens.size() != 2) 90 // throw MpqcParseException; 91 tokenizer::iterator tok_iter = tokens.begin(); 92 std::stringstream whitespacefilter(*tok_iter++); 93 std::string element; 94 whitespacefilter >> element; 95 std::string vector = *tok_iter; 96 tokenizer vectorcomponents(vector, whitesep); 97 Vector X; 98 // if (vectorcomponents.size() != NDIM) 99 // throw MpqcParseException; 100 tok_iter = vectorcomponents.begin(); 101 for (int i=0; i<NDIM; ++i) { 102 X[i] = toDouble(*tok_iter++); 103 } 104 // create atom 105 atom *newAtom = World::getInstance().createAtom(); 106 newAtom->setType(World::getInstance().getPeriode()->FindElement(element)); 107 newAtom->setPosition(X); 108 newmol->AddAtom(newAtom); 109 DoLog(1) && (Log() << Verbose(1) << "Adding atom " << *newAtom << std::endl); 110 } 111 } 112 if (MpqcSection) { 113 tokenizer tokens(linestring, equalitysep); 114 tokenizer::iterator tok_iter = tokens.begin(); 115 std::stringstream whitespacefilter(*tok_iter++); 116 std::string key(*tok_iter++); 117 if (params.haveParam(key)) { 118 std::stringstream linestream(linestring); 119 linestream >> params; 120 } else if (linestring.find("mole<") != string::npos) { // get theory 121 tokenizer tokens(linestring, angularsep); 122 tokenizer::iterator tok_iter = tokens.begin(); 123 std::string value(*(++tok_iter)); 124 std::stringstream linestream("theory = "+value); 125 linestream >> params; 126 } else if (linestring.find("integrals<") != string::npos) { // get theory 127 tokenizer tokens(linestring, angularsep); 128 tokenizer::iterator tok_iter = tokens.begin(); 129 std::string value(*(++tok_iter)); 130 std::stringstream linestream("integration = "+value); 131 linestream >> params; 132 } 133 } 134 if (BasisSection) { 135 tokenizer tokens(linestring, equalitysep); 136 tokenizer::iterator tok_iter = tokens.begin(); 137 std::string key(*tok_iter++); 138 std::string value(*tok_iter); 139 // TODO: use exception instead of ASSERT 140 ASSERT(tok_iter == tokens.end(), 141 "MpqcParser::load() - more than (key = value) on line "+linestring+"."); 142 if (key == "name") { 143 std::stringstream linestream("basis = "+value); 144 linestream >> params; 145 } 146 } 147 if (AuxBasisSection) { 148 tokenizer tokens(linestring, equalitysep); 149 tokenizer::iterator tok_iter = tokens.begin(); 150 std::string key(*tok_iter++); 151 std::string value(*tok_iter); 152 // TODO: use exception instead of ASSERT 153 ASSERT(tok_iter == tokens.end(), 154 "MpqcParser::load() - more than (key = value) on line "+linestring+"."); 155 if (key == "name") { 156 std::stringstream linestream("aux_basis = "+value); 157 linestream >> params; 158 } 159 } 160 // set some scan flags 161 if (linestring.find("mpqc:") != string::npos) { 162 MpqcSection = true; 163 } 164 if (linestring.find("molecule<Molecule>:") != string::npos) { 165 MoleculeSection = true; 166 } 167 if (linestring.find("atoms geometry") != string::npos) { 168 GeometrySection = true; 169 } 170 if ((linestring.find("basis<GaussianBasisSet>:") != string::npos) && ((linestring.find("abasis<") == string::npos))) { 171 BasisSection = true; 172 } 173 if (linestring.find("abasis<") != string::npos) { 174 AuxBasisSection = true; 175 } 176 } 53 177 } 54 178 55 /** 56 * Saves the \a atoms into as a MPQC file. 57 * 58 * \param file where to save the state 59 * \param atoms atoms to store 60 */ 61 void MpqcParser::save(ostream *file, const std::vector<atom *> &atoms) 62 { 63 DoLog(0) && (Log() << Verbose(0) << "Saving changes to MPQC ." << std::endl); 64 65 if (HessianPresent) 66 saveHessian(file, atoms); 67 else 68 saveSimple(file, atoms); 69 } 70 71 /** Saves all atoms and data into a MPQC config file without hessian. 179 /** Saves all atoms and data into a MPQC config file. 72 180 * \param *file output stream 73 181 * \param atoms atoms to store 74 182 */ 75 void MpqcParser::save Simple(ostream *file, const std::vector<atom *> &atoms)183 void MpqcParser::save(ostream *file, const std::vector<atom *> &atoms) 76 184 { 77 185 Vector center; … … 81 189 for (vector<atom *>::iterator runner = allatoms.begin();runner != allatoms.end(); ++runner) 82 190 center += (*runner)->getPosition(); 83 center.Scale(1./ allatoms.size());191 center.Scale(1./(double)allatoms.size()); 84 192 85 193 // first without hessian … … 89 197 *file << "% Created by MoleCuilder" << endl; 90 198 *file << "mpqc: (" << endl; 91 *file << "\tsavestate = no" << endl; 92 *file << "\tdo_gradient = yes" << endl; 93 *file << "\tmole<MBPT2>: (" << endl; 94 *file << "\t\tmaxiter = 200" << endl; 95 *file << "\t\tbasis = $:basis" << endl; 96 *file << "\t\tmolecule = $:molecule" << endl; 97 *file << "\t\treference<CLHF>: (" << endl; 98 *file << "\t\t\tbasis = $:basis" << endl; 99 *file << "\t\t\tmolecule = $:molecule" << endl; 100 *file << "\t\t)" << endl; 101 *file << "\t)" << endl; 199 *file << "\tsavestate = " << params.getString(MpqcParser_Parameters::savestateParam) << endl; 200 *file << "\tdo_gradient = " << params.getString(MpqcParser_Parameters::do_gradientParam) << endl; 201 if (params.getBool(MpqcParser_Parameters::hessianParam)) { 202 *file << "\tfreq<MolecularFrequencies>: (" << endl; 203 *file << "\t\tmolecule=$:molecule" << endl; 204 *file << "\t)" << endl; 205 } 206 switch (params.getTheory()) { 207 case MpqcParser_Parameters::CLHF: 208 *file << "\tmole<" << params.getString(MpqcParser_Parameters::theoryParam) << ">: (" << endl; 209 *file << "\t\tmolecule = $:molecule" << endl; 210 *file << "\t\tbasis = $:basis" << endl; 211 *file << "\t\tmaxiter = " << toString(params.getInt(MpqcParser_Parameters::maxiterParam))<< endl; 212 *file << "\t\tmemory = " << toString(params.getInt(MpqcParser_Parameters::memoryParam)) << endl; 213 *file << "\t)" << endl; 214 break; 215 case MpqcParser_Parameters::CLKS: 216 *file << "\tmole<" << params.getString(MpqcParser_Parameters::theoryParam) << ">: (" << endl; 217 *file << "\t\tfunctional<StdDenFunctional>:(name=B3LYP)" << endl; 218 *file << "\t\tmolecule = $:molecule" << endl; 219 *file << "\t\tbasis = $:basis" << endl; 220 *file << "\t\tmaxiter = " << toString(params.getInt(MpqcParser_Parameters::maxiterParam))<< endl; 221 *file << "\t\tmemory = " << toString(params.getInt(MpqcParser_Parameters::memoryParam)) << endl; 222 *file << "\t)" << endl; 223 break; 224 case MpqcParser_Parameters::MBPT2: 225 *file << "\tmole<" << params.getString(MpqcParser_Parameters::theoryParam) << ">: (" << endl; 226 *file << "\t\tbasis = $:basis" << endl; 227 *file << "\t\tmolecule = $:molecule" << endl; 228 *file << "\t\tmemory = " << toString(params.getInt(MpqcParser_Parameters::memoryParam)) << endl; 229 *file << "\t\treference<CLHF>: (" << endl; 230 *file << "\t\t\tmaxiter = " << toString(params.getInt(MpqcParser_Parameters::maxiterParam))<< endl; 231 *file << "\t\t\tbasis = $:basis" << endl; 232 *file << "\t\t\tmolecule = $:molecule" << endl; 233 *file << "\t\t\tmemory = " << toString(params.getInt(MpqcParser_Parameters::memoryParam)) << endl; 234 *file << "\t\t)" << endl; 235 *file << "\t)" << endl; 236 break; 237 case MpqcParser_Parameters::MBPT2_R12: 238 *file << "\tmole<" << params.getString(MpqcParser_Parameters::theoryParam) << ">: (" << endl; 239 *file << "\t\tmolecule = $:molecule" << endl; 240 *file << "\t\tbasis = $:basis" << endl; 241 *file << "\t\taux_basis = $:abasis" << endl; 242 *file << "\t\tstdapprox = \"" << params.getString(MpqcParser_Parameters::stdapproxParam) << "\"" << endl; 243 *file << "\t\tnfzc = " << toString(params.getInt(MpqcParser_Parameters::nfzcParam)) << endl; 244 *file << "\t\tmemory = " << toString(params.getInt(MpqcParser_Parameters::memoryParam)) << endl; 245 *file << "\t\tintegrals<IntegralCints>:()" << endl; 246 *file << "\t\treference<CLHF>: (" << endl; 247 *file << "\t\t\tmolecule = $:molecule" << endl; 248 *file << "\t\t\tbasis = $:basis" << endl; 249 *file << "\t\t\tmaxiter = " << toString(params.getInt(MpqcParser_Parameters::maxiterParam)) << endl; 250 *file << "\t\t\tmemory = " << toString(params.getInt(MpqcParser_Parameters::memoryParam)) << endl; 251 *file << "\t\t\tintegrals<" << params.getString(MpqcParser_Parameters::integrationParam) << ">:()" << endl; 252 *file << "\t\t)" << endl; 253 *file << "\t)" << endl; 254 break; 255 default: 256 DoeLog(0) && (eLog() << Verbose(0) 257 << "Unknown level of theory requested for MPQC output file." << std::endl); 258 break; 259 } 102 260 *file << ")" << endl; 103 261 *file << "molecule<Molecule>: (" << endl; … … 111 269 *file << ")" << endl; 112 270 *file << "basis<GaussianBasisSet>: (" << endl; 113 *file << "\tname = \"" << World::getInstance().getConfig()->basis<< "\"" << endl;271 *file << "\tname = \"" << params.getString(MpqcParser_Parameters::basisParam) << "\"" << endl; 114 272 *file << "\tmolecule = $:molecule" << endl; 115 273 *file << ")" << endl; 274 if (params.getTheory() == MpqcParser_Parameters::MBPT2_R12) { 275 *file << "% auxiliary basis set specification" << endl; 276 *file << "\tabasis<GaussianBasisSet>: (" << endl; 277 *file << "\tname = \"" << params.getString(MpqcParser_Parameters::aux_basisParam) << "\"" << endl; 278 *file << "\tmolecule = $:molecule" << endl; 279 *file << ")" << endl; 280 } 116 281 } 117 282 } 118 283 119 /** Saves all atoms and data into a MPQC config file with hessian. 120 * \param *file output stream 121 * \param atoms atoms to store 122 */ 123 void MpqcParser::saveHessian(ostream *file, const std::vector<atom *> &atoms) 284 MpqcParser_Parameters & MpqcParser::getParams() 124 285 { 125 Vector center; 126 vector<atom *> allatoms = World::getInstance().getAllAtoms(); 127 128 // calculate center 129 for (vector<atom *>::iterator runner = allatoms.begin();runner != allatoms.end(); ++runner) 130 center += (*runner)->getPosition(); 131 center.Scale(1./allatoms.size()); 132 133 // with hessian 134 if (file->fail()) { 135 DoeLog(1) && (eLog()<< Verbose(1) << "Cannot open mpqc output file." << endl); 136 } else { 137 *file << "% Created by MoleCuilder" << endl; 138 *file << "mpqc: (" << endl; 139 *file << "\tsavestate = no" << endl; 140 *file << "\tdo_gradient = yes" << endl; 141 *file << "\tmole<CLHF>: (" << endl; 142 *file << "\t\tmaxiter = 200" << endl; 143 *file << "\t\tbasis = $:basis" << endl; 144 *file << "\t\tmolecule = $:molecule" << endl; 145 *file << "\t)" << endl; 146 *file << "\tfreq<MolecularFrequencies>: (" << endl; 147 *file << "\t\tmolecule=$:molecule" << endl; 148 *file << "\t)" << endl; 149 *file << ")" << endl; 150 *file << "molecule<Molecule>: (" << endl; 151 *file << "\tunit = " << (World::getInstance().getConfig()->GetIsAngstroem() ? "angstrom" : "bohr" ) << endl; 152 *file << "\t{ atoms geometry } = {" << endl; 153 // output of atoms 154 for (vector<atom *>::iterator AtomRunner = allatoms.begin(); AtomRunner != allatoms.end(); ++AtomRunner) { 155 (*AtomRunner)->OutputMPQCLine(file, ¢er); 156 } 157 *file << "\t}" << endl; 158 *file << ")" << endl; 159 *file << "basis<GaussianBasisSet>: (" << endl; 160 *file << "\tname = \"" << World::getInstance().getConfig()->basis << "\"" << endl; 161 *file << "\tmolecule = $:molecule" << endl; 162 *file << ")" << endl; 163 } 286 return params; 164 287 } 165 288 166 /** Sets whether hessian is desired or not167 * \param hessian statement168 */169 void MpqcParser::setHessian(bool hessian)170 {171 HessianPresent = hessian;172 } -
src/Parser/MpqcParser.hpp
rc14c78 r0bfe73 16 16 17 17 #include "FormatParser.hpp" 18 #include "MpqcParser_Parameters.hpp" 18 19 19 20 #include <iosfwd> … … 24 25 class MpqcParser : public FormatParser 25 26 { 27 friend class ParserMpqcUnitTest; 26 28 public: 29 27 30 MpqcParser(); 28 31 ~MpqcParser(); … … 30 33 void save(std::ostream* file, const std::vector<atom *> &atoms); 31 34 32 void setHessian(bool hessian); 35 /** Getter for parameter set. 36 * 37 * @return reference to parameter class 38 */ 39 MpqcParser_Parameters & getParams(); 33 40 34 41 private: 35 // whether output with computing hessian is desired. 36 bool HessianPresent; 37 38 void saveSimple(std::ostream *file, const std::vector<atom *> &atoms); 39 void saveHessian(std::ostream *file, const std::vector<atom *> &atoms); 42 MpqcParser_Parameters params; 40 43 }; 41 44 45 42 46 #endif /* MPQCPARSER_HPP_ */ -
src/Parser/TremoloAtomInfoContainer.cpp
rc14c78 r0bfe73 20 20 #include "CodePatterns/MemDebug.hpp" 21 21 22 #include "CodePatterns/toString.hpp" 23 22 24 #include <iostream> 23 25 … … 30 32 imprData("-"), 31 33 GroupMeasureTypeNo("0"), 34 Type("-"), 32 35 extType("-"), 33 36 name("-"), … … 59 62 case TremoloKey::GroupMeasureTypeNo : 60 63 GroupMeasureTypeNo = value; 64 break; 65 case TremoloKey::Type : 66 Type = value; 61 67 break; 62 68 case TremoloKey::extType : … … 104 110 } 105 111 106 std::string TremoloAtomInfoContainer::get(TremoloKey::atomDataKey key) { 112 std::string TremoloAtomInfoContainer::get(TremoloKey::atomDataKey key) const 113 { 107 114 switch (key) { 108 115 case TremoloKey::F : … … 114 121 case TremoloKey::GroupMeasureTypeNo : 115 122 return GroupMeasureTypeNo; 123 case TremoloKey::Type : 124 return Type; 116 125 case TremoloKey::extType : 117 126 return extType; … … 146 155 } 147 156 157 std::ostream& operator<<(std::ostream& out, const TremoloAtomInfoContainer& info) 158 { 159 out << info.get(TremoloKey::F) << "\t"; 160 out << info.get(TremoloKey::stress) << "\t"; 161 out << info.get(TremoloKey::imprData) << "\t"; 162 out << info.get(TremoloKey::GroupMeasureTypeNo) << "\t"; 163 out << info.get(TremoloKey::Type) << "\t"; 164 out << info.get(TremoloKey::extType) << "\t"; 165 out << info.get(TremoloKey::name) << "\t"; 166 out << info.get(TremoloKey::resName) << "\t"; 167 out << info.get(TremoloKey::chainID) << "\t"; 168 out << info.get(TremoloKey::resSeq) << "\t"; 169 out << info.get(TremoloKey::occupancy) << "\t"; 170 out << info.get(TremoloKey::tempFactor) << "\t"; 171 out << info.get(TremoloKey::segID) << "\t"; 172 out << info.get(TremoloKey::Charge) << "\t"; 173 out << info.get(TremoloKey::charge) << "\t"; 174 out << info.get(TremoloKey::GrpTypeNo) << "\t"; 175 out << info.get(TremoloKey::torsion) << "\t"; 176 out << info.neighbors << "\t"; 177 out << info.neighbors_processed; 178 179 return out; 180 } -
src/Parser/TremoloAtomInfoContainer.hpp
rc14c78 r0bfe73 27 27 TremoloAtomInfoContainer(); 28 28 void set(TremoloKey::atomDataKey key, std::string value); 29 std::string get(TremoloKey::atomDataKey key) ;29 std::string get(TremoloKey::atomDataKey key) const; 30 30 std::string F; 31 31 std::string stress; 32 32 std::string imprData; 33 33 std::string GroupMeasureTypeNo; 34 std::string Type; 34 35 std::string extType; 35 36 std::string name; … … 48 49 }; 49 50 51 std::ostream& operator<<(std::ostream& out, const TremoloAtomInfoContainer&); 50 52 51 53 #endif /* TREMOLOATOMINFOCONTAINER_HPP_ */ -
src/Parser/TremoloParser.cpp
rc14c78 r0bfe73 22 22 #include "CodePatterns/Assert.hpp" 23 23 #include "CodePatterns/Log.hpp" 24 #include "CodePatterns/toString.hpp" 24 25 #include "CodePatterns/Verbose.hpp" 25 26 #include "TremoloParser.hpp" … … 34 35 #include <vector> 35 36 37 #include <boost/tokenizer.hpp> 36 38 #include <iostream> 37 39 #include <iomanip> … … 65 67 knownKeys["torsion"] = TremoloKey::torsion; 66 68 69 createKnownTypesByIdentity(); 70 67 71 // default behavior: use all possible keys on output 68 72 for (std::map<std::string, TremoloKey::atomDataKey>::iterator iter = knownKeys.begin(); iter != knownKeys.end(); ++iter) … … 71 75 // and noKey afterwards(!) such that it is not used in usedFields 72 76 knownKeys[" "] = TremoloKey::noKey; // with this we can detect invalid keys 77 78 // invert knownKeys for debug output 79 for (std::map<std::string, TremoloKey::atomDataKey>::iterator iter = knownKeys.begin(); iter != knownKeys.end(); ++iter) 80 knownKeyNames.insert( make_pair( iter->second, iter->first) ); 81 82 additionalAtomData.clear(); 73 83 } 74 84 … … 130 140 vector<string>::iterator it; 131 141 142 DoLog(3) && (Log() << Verbose(3) << "additionalAtomData contains: " << additionalAtomData << std::endl); 143 132 144 *file << "# ATOMDATA"; 133 145 for (it=usedFields.begin(); it < usedFields.end(); it++) { … … 161 173 vector<string>::iterator it; 162 174 TremoloKey::atomDataKey currentField; 175 176 DoLog(4) && (Log() << Verbose(4) << "INFO: Saving atom " << *currentAtom << ", its father id is " << currentAtom->GetTrueFather()->getId() << std::endl); 163 177 164 178 for (it = usedFields.begin(); it != usedFields.end(); it++) { … … 167 181 case TremoloKey::x : 168 182 // for the moment, assume there are always three dimensions 183 DoLog(3) && (Log() << Verbose(3) << "Writing for type " << knownKeyNames[currentField] << ": " << currentAtom->getPosition() << std::endl); 169 184 *file << currentAtom->at(0) << "\t"; 170 185 *file << currentAtom->at(1) << "\t"; … … 173 188 case TremoloKey::u : 174 189 // for the moment, assume there are always three dimensions 190 DoLog(3) && (Log() << Verbose(3) << "Writing for type " << knownKeyNames[currentField] << ": " << currentAtom->AtomicVelocity << std::endl); 175 191 *file << currentAtom->AtomicVelocity[0] << "\t"; 176 192 *file << currentAtom->AtomicVelocity[1] << "\t"; … … 178 194 break; 179 195 case TremoloKey::Type : 180 *file << currentAtom->getType()->getSymbol() << "\t"; 196 if (additionalAtomData.count(currentAtom->getId())) { 197 if (additionalAtomData[currentAtom->getId()].get(currentField) != "-") { 198 DoLog(3) && (Log() << Verbose(3) << "Writing for type " << knownKeyNames[currentField] << ": " << additionalAtomData[currentAtom->getId()].get(currentField) << std::endl); 199 *file << additionalAtomData[currentAtom->getId()].get(currentField) << "\t"; 200 } else { 201 DoLog(3) && (Log() << Verbose(3) << "Writing for type " << knownKeyNames[currentField] << " default value: " << currentAtom->getType()->getSymbol() << std::endl); 202 *file << currentAtom->getType()->getSymbol() << "\t"; 203 } 204 } else if (additionalAtomData.count(currentAtom->GetTrueFather()->getId())) { 205 if (additionalAtomData[currentAtom->GetTrueFather()->getId()].get(currentField) != "-") { 206 DoLog(3) && (Log() << Verbose(3) << "Writing for type " << knownKeyNames[currentField] << " stuff from father: " << additionalAtomData[currentAtom->GetTrueFather()->getId()].get(currentField) << std::endl); 207 *file << additionalAtomData[currentAtom->GetTrueFather()->getId()].get(currentField) << "\t"; 208 } else { 209 DoLog(3) && (Log() << Verbose(3) << "Writing for type " << knownKeyNames[currentField] << " default value from father: " << currentAtom->GetTrueFather()->getType()->getSymbol() << std::endl); 210 *file << currentAtom->GetTrueFather()->getType()->getSymbol() << "\t"; 211 } 212 } else { 213 DoLog(3) && (Log() << Verbose(3) << "Writing for type " << knownKeyNames[currentField] << " its default value: " << currentAtom->getType()->getSymbol() << std::endl); 214 *file << currentAtom->getType()->getSymbol() << "\t"; 215 } 181 216 break; 182 217 case TremoloKey::Id : 218 DoLog(3) && (Log() << Verbose(3) << "Writing for type " << knownKeyNames[currentField] << ": " << currentAtom->getId()+1 << std::endl); 183 219 *file << currentAtom->getId()+1 << "\t"; 184 220 break; 185 221 case TremoloKey::neighbors : 222 DoLog(3) && (Log() << Verbose(3) << "Writing type " << knownKeyNames[currentField] << std::endl); 186 223 writeNeighbors(file, atoi(it->substr(it->find("=") + 1, 1).c_str()), currentAtom); 187 224 break; 188 225 case TremoloKey::resSeq : 189 if (additionalAtomData.find(currentAtom->getId()) != additionalAtomData.end()) { 226 if (additionalAtomData.count(currentAtom->getId())) { 227 DoLog(3) && (Log() << Verbose(3) << "Writing for type " << knownKeyNames[currentField] << ": " << additionalAtomData[currentAtom->getId()].get(currentField) << std::endl); 190 228 *file << additionalAtomData[currentAtom->getId()].get(currentField); 191 229 } else if (currentAtom->getMolecule() != NULL) { 230 DoLog(3) && (Log() << Verbose(3) << "Writing for type " << knownKeyNames[currentField] << " its own id: " << currentAtom->getMolecule()->getId()+1 << std::endl); 192 231 *file << setw(4) << currentAtom->getMolecule()->getId()+1; 193 232 } else { 233 DoLog(3) && (Log() << Verbose(3) << "Writing for type " << knownKeyNames[currentField] << " default value: " << defaultAdditionalData.get(currentField) << std::endl); 194 234 *file << defaultAdditionalData.get(currentField); 195 235 } 196 236 *file << "\t"; 197 break;237 break; 198 238 default : 199 if (additionalAtomData.find(currentAtom->getId()) != additionalAtomData.end()) { 239 if (additionalAtomData.count(currentAtom->getId())) { 240 DoLog(3) && (Log() << Verbose(3) << "Writing for type " << knownKeyNames[currentField] << ": " << additionalAtomData[currentAtom->getId()].get(currentField) << std::endl); 200 241 *file << additionalAtomData[currentAtom->getId()].get(currentField); 201 } else if (additionalAtomData.find(currentAtom->GetTrueFather()->getId()) != additionalAtomData.end()) { 242 } else if (additionalAtomData.count(currentAtom->GetTrueFather()->getId())) { 243 DoLog(3) && (Log() << Verbose(3) << "Writing for type " << knownKeyNames[currentField] << " stuff from father: " << additionalAtomData[currentAtom->GetTrueFather()->getId()].get(currentField) << std::endl); 202 244 *file << additionalAtomData[currentAtom->GetTrueFather()->getId()].get(currentField); 203 245 } else { 246 DoLog(3) && (Log() << Verbose(3) << "Writing for type " << knownKeyNames[currentField] << " the default: " << defaultAdditionalData.get(currentField) << std::endl); 204 247 *file << defaultAdditionalData.get(currentField); 205 248 } … … 250 293 usedFields.push_back(keyword); 251 294 } 295 //DoLog(1) && (Log() << Verbose(1) << "INFO: " << usedFields << std::endl); 252 296 } 253 297 … … 267 311 atomInfo = &additionalAtomData[newAtom->getId()]; 268 312 TremoloKey::atomDataKey currentField; 269 string word; 270 int oldId; 271 double tmp; 272 273 lineStream << line; 313 ConvertTo<double> toDouble; 314 ConvertTo<int> toInt; 315 316 // setup tokenizer, splitting up white-spaced entries 317 typedef boost::tokenizer<boost::char_separator<char> > 318 tokenizer; 319 boost::char_separator<char> whitespacesep(" \t"); 320 tokenizer tokens(line, whitespacesep); 321 ASSERT(tokens.begin() != tokens.end(), 322 "TremoloParser::readAtomDataLine - empty string, need at least ' '!"); 323 tokenizer::iterator tok_iter = tokens.begin(); 324 // then associate each token to each file 274 325 for (it = usedFields.begin(); it < usedFields.end(); it++) { 275 currentField = knownKeys[it->substr(0, it->find("="))]; 326 const std::string keyName = it->substr(0, it->find("=")); 327 currentField = knownKeys[keyName]; 328 const string word = *tok_iter; 329 //DoLog(1) && (Log() << Verbose(1) << "INFO: Parsing key " << keyName << " with remaining data " << word << std::endl); 276 330 switch (currentField) { 277 331 case TremoloKey::x : 278 332 // for the moment, assume there are always three dimensions 279 333 for (int i=0;i<NDIM;i++) { 280 lineStream >> tmp; 281 newAtom->set(i, tmp); 334 ASSERT(tok_iter != tokens.end(), "TremoloParser::readAtomDataLine() - no value for x["+toString(i)+"]!"); 335 //DoLog(1) && (Log() << Verbose(1) << "INFO: Parsing key " << keyName << " with next token " << *tok_iter << std::endl); 336 newAtom->set(i, toDouble(*tok_iter)); 337 tok_iter++; 282 338 } 283 339 break; 284 340 case TremoloKey::u : 285 341 // for the moment, assume there are always three dimensions 286 lineStream >> newAtom->AtomicVelocity[0]; 287 lineStream >> newAtom->AtomicVelocity[1]; 288 lineStream >> newAtom->AtomicVelocity[2]; 342 for (int i=0;i<NDIM;i++) { 343 ASSERT(tok_iter != tokens.end(), "TremoloParser::readAtomDataLine() - no value for u["+toString(i)+"]!"); 344 //DoLog(1) && (Log() << Verbose(1) << "INFO: Parsing key " << keyName << " with next token " << *tok_iter << std::endl); 345 newAtom->AtomicVelocity[i] = toDouble(*tok_iter); 346 tok_iter++; 347 } 289 348 break; 290 349 case TremoloKey::Type : 291 char type[3]; 292 lineStream >> type; 293 newAtom->setType(World::getInstance().getPeriode()->FindElement(type)); 350 { 351 ASSERT(tok_iter != tokens.end(), "TremoloParser::readAtomDataLine() - no value for "+keyName+"!"); 352 DoLog(1) && (Log() << Verbose(1) << "INFO: Parsing key " << keyName << " with next token " << *tok_iter << std::endl); 353 std::string element(knownTypes[(*tok_iter)]); 354 // put type name into container for later use 355 atomInfo->set(currentField, *tok_iter); 356 DoLog(1) && (Log() << Verbose(1) << "INFO: Parsing element " << (*tok_iter) << " as " << element << " according to KnownTypes." << std::endl); 357 tok_iter++; 358 newAtom->setType(World::getInstance().getPeriode()->FindElement(element)); 294 359 ASSERT(newAtom->getType(), "Type was not set for this atom"); 295 360 break; 361 } 296 362 case TremoloKey::Id : 297 lineStream >> oldId; 298 atomIdMap[oldId] = newAtom->getId(); 363 ASSERT(tok_iter != tokens.end(), "TremoloParser::readAtomDataLine() - no value for "+keyName+"!"); 364 //DoLog(1) && (Log() << Verbose(1) << "INFO: Parsing key " << keyName << " with next token " << *tok_iter << std::endl); 365 atomIdMap[toInt(*tok_iter)] = newAtom->getId(); 366 tok_iter++; 299 367 break; 300 368 case TremoloKey::neighbors : 369 for (int i=0;i<atoi(it->substr(it->find("=") + 1, 1).c_str());i++) { 370 ASSERT(tok_iter != tokens.end(), "TremoloParser::readAtomDataLine() - no value for "+keyName+"!"); 371 //DoLog(1) && (Log() << Verbose(1) << "INFO: Parsing key " << keyName << " with next token " << *tok_iter << std::endl); 372 lineStream << *tok_iter << "\t"; 373 tok_iter++; 374 } 301 375 readNeighbors(&lineStream, 302 376 atoi(it->substr(it->find("=") + 1, 1).c_str()), newAtom->getId()); 303 377 break; 304 378 default : 305 lineStream >> word; 306 atomInfo->set(currentField, word); 307 break; 308 } 309 } 310 if (newmol != NULL) 379 ASSERT(tok_iter != tokens.end(), "TremoloParser::readAtomDataLine() - no value for "+keyName+"!"); 380 //DoLog(1) && (Log() << Verbose(1) << "INFO: Parsing key " << keyName << " with next token " << *tok_iter << std::endl); 381 atomInfo->set(currentField, *tok_iter); 382 tok_iter++; 383 break; 384 } 385 } 386 if (newmol != NULL) { 387 //DoLog(0) && (Log() << Verbose(0) << "New Atom: " << *newAtom << " with type " << newAtom->getType()->getName() << std::endl); 311 388 newmol->AddAtom(newAtom); 389 } 312 390 } 313 391 … … 325 403 // 0 is used to fill empty neighbor positions in the tremolo file. 326 404 if (neighborId > 0) { 327 // std::cout << "Atom with global id " << atomId << " has neighbour with serial " << neighborId << std::endl; 405 // DoLog(1) && (Log() << Verbose(1) 406 // << "Atom with global id " << atomId 407 // << " has neighbour with serial " << neighborId 408 // << std::endl); 328 409 additionalAtomData[atomId].neighbors.push_back(neighborId); 329 410 } … … 366 447 neighbor != currentInfo->second.neighbors.end(); neighbor++ 367 448 ) { 368 // std::cout<< "Creating bond between ("449 // DoLog(1) && (Log() << Verbose(1) << "Creating bond between (" 369 450 // << currentInfo->first 370 451 // << ") and (" 371 // << atomIdMap[*neighbor] << "|" << *neighbor << ")" << std::endl ;452 // << atomIdMap[*neighbor] << "|" << *neighbor << ")" << std::endl); 372 453 World::getInstance().getAtom(AtomById(currentInfo->first)) 373 454 ->addBond(World::getInstance().getAtom(AtomById(atomIdMap[*neighbor]))); … … 440 521 } 441 522 523 /** Creates knownTypes as the identity, e.g. H -> H, He -> He, ... . 524 * 525 */ 526 void TremoloParser::createKnownTypesByIdentity() 527 { 528 // remove old mapping 529 knownTypes.clear(); 530 // make knownTypes the identity mapping 531 const periodentafel *periode = World::getInstance().getPeriode(); 532 for (periodentafel::const_iterator iter = periode->begin(); 533 iter != periode->end(); 534 ++iter) { 535 knownTypes.insert( make_pair(iter->second->getSymbol(), iter->second->getSymbol()) ); 536 } 537 } 538 539 /** Parses a .potentials file and creates from it the knownTypes file. 540 * 541 * @param file input stream of .potentials file 542 */ 543 void TremoloParser::parseKnownTypes(std::istream &file) 544 { 545 const periodentafel *periode = World::getInstance().getPeriode(); 546 // remove old mapping 547 knownTypes.clear(); 548 549 DoLog(3) && (Log() << Verbose(3) << "additionalAtomData contains: " << additionalAtomData << std::endl); 550 551 // parse in file 552 typedef boost::tokenizer<boost::char_separator<char> > 553 tokenizer; 554 boost::char_separator<char> tokensep(":\t ,;"); 555 boost::char_separator<char> equalitysep("\t ="); 556 std::string line; 557 while (file.good()) { 558 std::getline( file, line ); 559 DoLog(4) && (Log() << Verbose(4) << "INFO: full line of parameters is '" << line << "'" << std::endl); 560 if (line.find("particle:") != string::npos) { 561 DoLog(3) && (Log() << Verbose(3) << "INFO: found line '" << line << "' containing keyword 'particle:'." << std::endl); 562 tokenizer tokens(line, tokensep); 563 ASSERT(tokens.begin() != tokens.end(), 564 "TremoloParser::parseKnownTypes() - line with 'particle:' but no particles separated by comma."); 565 // look for particle_type 566 std::string particle_type("NULL"); 567 std::string element_type("NULL"); 568 for (tokenizer::iterator tok_iter = tokens.begin(); 569 tok_iter != tokens.end(); 570 ++tok_iter) { 571 if ((*tok_iter).find("particle_type") != string::npos) { 572 DoLog(3) && (Log() << Verbose(3) << "INFO: found line '" << line << "' containing keyword 'particle_type'." << std::endl); 573 tokenizer token((*tok_iter), equalitysep); 574 ASSERT(token.begin() != token.end(), 575 "TremoloParser::parseKnownTypes() - could not split particle_type by equality sign"); 576 tokenizer::iterator particle_iter = token.begin(); 577 particle_iter++; 578 particle_type = *particle_iter; 579 } 580 if ((*tok_iter).find("element_name") != string::npos) { 581 DoLog(3) && (Log() << Verbose(3) << "INFO: found line '" << line << "' containing keyword 'element_name'." << std::endl); 582 tokenizer token((*tok_iter), equalitysep); 583 ASSERT(token.begin() != token.end(), 584 "TremoloParser::parseKnownTypes() - could not split particle_type by equality sign"); 585 tokenizer::iterator element_iter = token.begin(); 586 element_iter++; 587 element_type = *element_iter; 588 } 589 } 590 if ((particle_type != "NULL") && (element_type != "NULL")) { 591 if (periode->FindElement(element_type) != NULL) { 592 DoLog(1) && (Log() << Verbose(1) << "INFO: Added Type " << particle_type << " as reference to element " << element_type << "." << std::endl); 593 knownTypes.insert( make_pair (particle_type, element_type) ); 594 } else { 595 DoeLog(1) && (Log() << Verbose(1) << "INFO: Either Type " << particle_type << " or " << element_type << " could not be recognized." << std::endl); 596 } 597 } else { 598 DoeLog(1) && (Log() << Verbose(1) << "INFO: Desired element " << element_type << " is not known." << std::endl); 599 } 600 } 601 } 602 603 } -
src/Parser/TremoloParser.hpp
rc14c78 r0bfe73 35 35 void setFieldsForSave(std::string atomDataLine); 36 36 37 void parseKnownTypes(std::istream &file); 38 void createKnownTypesByIdentity(); 39 37 40 38 41 private: … … 50 53 51 54 /** 55 * Map to associate the elements with stuff in "Type", e.g. OC2 -> O. 56 */ 57 std::map<std::string, std::string> knownTypes; 58 59 /** 52 60 * Map to associate the known keys with numbers. 53 61 */ 54 62 std::map<std::string, TremoloKey::atomDataKey> knownKeys; 63 64 /** 65 * Inverse Map to have a name to each known keys. 66 */ 67 std::map<TremoloKey::atomDataKey, std::string> knownKeyNames; 55 68 56 69 /** -
src/Parser/unittests/Makefile.am
rc14c78 r0bfe73 8 8 9 9 TESTS = \ 10 ParserCommonUnitTest \ 11 ParserTremoloUnitTest 10 ParserMpqcUnitTest \ 11 ParserPcpUnitTest \ 12 ParserPdbUnitTest \ 13 ParserTremoloUnitTest \ 14 ParserXyzUnitTest 12 15 13 16 … … 34 37 UILIBS = ../../UIElements/libMolecuilderUI.la 35 38 36 ParserCommonUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ 37 ParserCommonUnitTest.cpp \ 38 ParserCommonUnitTest.hpp 39 ParserCommonUnitTest_LDADD = ${ALLLIBS} 39 ParserMpqcUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ 40 ParserMpqcUnitTest.cpp \ 41 ParserMpqcUnitTest.hpp 42 ParserMpqcUnitTest_LDADD = ${ALLLIBS} 43 44 ParserPcpUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ 45 ParserPcpUnitTest.cpp \ 46 ParserPcpUnitTest.hpp 47 ParserPcpUnitTest_LDADD = ${ALLLIBS} 48 49 ParserPdbUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ 50 ParserPdbUnitTest.cpp \ 51 ParserPdbUnitTest.hpp 52 ParserPdbUnitTest_LDADD = ${ALLLIBS} 40 53 41 54 ParserTremoloUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ … … 44 57 ParserTremoloUnitTest_LDADD = ${ALLLIBS} 45 58 59 ParserXyzUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ 60 ParserXyzUnitTest.cpp \ 61 ParserXyzUnitTest.hpp 62 ParserXyzUnitTest_LDADD = ${ALLLIBS} 63 46 64 47 65 #AUTOMAKE_OPTIONS = parallel-tests -
src/Parser/unittests/ParserTremoloUnitTest.cpp
rc14c78 r0bfe73 44 44 CPPUNIT_TEST_SUITE_REGISTRATION( ParserTremoloUnitTest ); 45 45 46 static string Tremolo_Atomdata1 = "# ATOMDATA\tId\tname\tType\tx=3\n"; 47 static string Tremolo_Atomdata2 = "#\n#ATOMDATA Id name Type x=3\n1 hydrogen H 3.0 4.5 0.1\n\n"; 48 static string Tremolo_invalidkey = "#\n#ATOMDATA Id name foo Type x=3\n\n\n"; 49 static string Tremolo_velocity = "#\n#ATOMDATA Id name Type u=3\n1 hydrogen H 3.0 4.5 0.1\n\n"; 50 static string Tremolo_neighbours = "#\n#ATOMDATA Id Type neighbors=2\n1 H 3 0\n2 H 3 0\n3 O 1 2\n"; 51 static string Tremolo_improper = "#\n#ATOMDATA Id Type imprData\n8 H 9-10\n9 H 10-8,8-10\n10 O -\n"; 52 static string Tremolo_torsion = "#\n#ATOMDATA Id Type torsion\n8 H 9-10\n9 H 10-8,8-10\n10 O -\n"; 53 static string Tremolo_full = "# ATOMDATA\tx=3\tu=3\tF\tstress\tId\tneighbors=5\timprData\tGroupMeasureTypeNo\tType\textType\tname\tresName\tchainID\tresSeq\toccupancy\ttempFactor\tsegID\tCharge\tcharge\tGrpTypeNo\ttorsion\n0\t0\t0\t0\t0\t0\t0\t0\t1\t0\t0\t0\t0\t0\t-\t0\tH\t-\t-\t-\t0\t0\t0\t0\t0\t0\t0\t0\t-\t\n"; 46 static string Tremolo_Atomdata1 = "\ 47 # ATOMDATA\tId\tname\tType\tx=3\n"; 48 static string Tremolo_Atomdata2 = "\ 49 #\n\ 50 #ATOMDATA Id name Type x=3\n\ 51 1 hydrogen H 3.0 4.5 0.1\n\ 52 \n"; 53 static string Tremolo_invalidkey = "\ 54 #\n\ 55 #ATOMDATA Id name foo Type x=3\n\ 56 \n\n"; 57 static string Tremolo_velocity = "\ 58 #\n\ 59 #ATOMDATA Id name Type u=3\n\ 60 1 hydrogen H 3.0 4.5 0.1\n\ 61 \n"; 62 static string Tremolo_neighbours = "#\n\ 63 #ATOMDATA Id Type neighbors=2\n\ 64 1 H 3 0\n\ 65 2 H 3 0\n\ 66 3 O 1 2\n"; 67 static string Tremolo_improper = "\ 68 #\n\ 69 #ATOMDATA Id Type imprData\n\ 70 8 H 9-10\n\ 71 9 H 10-8,8-10\n\ 72 10 O -\n"; 73 static string Tremolo_torsion = "\ 74 #\n\ 75 #ATOMDATA Id Type torsion\n\ 76 8 H 9-10\n\ 77 9 H 10-8,8-10\n\ 78 10 O -\n"; 79 static string Tremolo_full = "\ 80 # ATOMDATA\tx=3\tu=3\tF\tstress\tId\tneighbors=5\timprData\tGroupMeasureTypeNo\tType\textType\tname\tresName\tchainID\tresSeq\toccupancy\ttempFactor\tsegID\tCharge\tcharge\tGrpTypeNo\ttorsion\n\ 81 0\t0\t0\t0\t0\t0\t0\t0\t1\t0\t0\t0\t0\t0\t-\t0\tH\t-\t-\t-\t0\t0\t0\t0\t0\t0\t0\t0\t-\t\n"; 54 82 55 83 void ParserTremoloUnitTest::setUp() { … … 79 107 std::vector<atom *> atoms = World::getInstance().getAllAtoms(); 80 108 testParser->save(&output, atoms); 109 // std::cout << output.str() << std::endl; 110 // std::cout << Tremolo_Atomdata1 << std::endl; 81 111 CPPUNIT_ASSERT(Tremolo_Atomdata1 == output.str()); 82 112 input.clear(); … … 90 120 std::vector<atom *> atoms = World::getInstance().getAllAtoms(); 91 121 testParser->save(&output, atoms); 122 std::cout << output.str() << std::endl; 92 123 CPPUNIT_ASSERT(output.str().find("hydrogen") != string::npos); 93 124 input.clear(); … … 149 180 testParser->save(&output, atoms); 150 181 CPPUNIT_ASSERT_EQUAL(3, World::getInstance().numAtoms()); 182 std::cout << output.str() << std::endl; 151 183 CPPUNIT_ASSERT(output.str().find("2-0,0-2") != string::npos); 152 184 input.clear(); … … 166 198 testParser->save(&output, atoms); 167 199 CPPUNIT_ASSERT_EQUAL(3, World::getInstance().numAtoms()); 200 std::cout << output.str() << std::endl; 168 201 CPPUNIT_ASSERT(output.str().find("2-0,0-2") != string::npos); 169 202 input.clear(); -
src/RandomNumbers/RandomNumberDistribution_Encapsulation.cpp
rc14c78 r0bfe73 22 22 #include "CodePatterns/MemDebug.hpp" 23 23 24 #include <limits> 25 24 26 #include "RandomNumberDistribution_Encapsulation.hpp" 25 27 … … 130 132 } 131 133 132 134 template <> 135 double RandomNumberDistribution_Encapsulation< boost::bernoulli_distribution<> >::min() const 136 { 137 return 0.; 138 } 139 140 template <> 141 double RandomNumberDistribution_Encapsulation< boost::binomial_distribution<> >::min() const 142 { 143 return 0.; 144 } 145 146 template <> 147 double RandomNumberDistribution_Encapsulation< boost::cauchy_distribution<> >::min() const 148 { 149 return std::numeric_limits<double>::min(); 150 } 151 152 template <> 153 double RandomNumberDistribution_Encapsulation< boost::gamma_distribution<> >::min() const 154 { 155 return 0.; 156 } 157 158 template <> 159 double RandomNumberDistribution_Encapsulation< boost::poisson_distribution<> >::min() const 160 { 161 return 0.; 162 } 163 164 template <> 165 double RandomNumberDistribution_Encapsulation< boost::geometric_distribution<> >::min() const 166 { 167 return 0.; 168 } 169 170 template <> 171 double RandomNumberDistribution_Encapsulation< boost::triangle_distribution<> >::min() const 172 { 173 return distribution_type.a(); 174 } 175 176 template <> 177 double RandomNumberDistribution_Encapsulation< boost::exponential_distribution<> >::min() const 178 { 179 return 0.; 180 } 181 182 template <> 183 double RandomNumberDistribution_Encapsulation< boost::normal_distribution<> >::min() const 184 { 185 return std::numeric_limits<double>::min(); 186 } 187 188 template <> 189 double RandomNumberDistribution_Encapsulation< boost::lognormal_distribution<> >::min() const 190 { 191 return 0.; 192 } 133 193 134 194 /* =============== max() ======================= */ … … 158 218 } 159 219 220 template <> 221 double RandomNumberDistribution_Encapsulation< boost::bernoulli_distribution<> >::max() const 222 { 223 return 1.; 224 } 225 226 template <> 227 double RandomNumberDistribution_Encapsulation< boost::binomial_distribution<> >::max() const 228 { 229 return distribution_type.t(); 230 } 231 232 template <> 233 double RandomNumberDistribution_Encapsulation< boost::cauchy_distribution<> >::max() const 234 { 235 return std::numeric_limits<double>::max(); 236 } 237 238 template <> 239 double RandomNumberDistribution_Encapsulation< boost::gamma_distribution<> >::max() const 240 { 241 return std::numeric_limits<double>::max(); 242 } 243 244 template <> 245 double RandomNumberDistribution_Encapsulation< boost::poisson_distribution<> >::max() const 246 { 247 return std::numeric_limits<double>::max(); 248 } 249 250 template <> 251 double RandomNumberDistribution_Encapsulation< boost::geometric_distribution<> >::max() const 252 { 253 return std::numeric_limits<double>::max(); 254 } 255 256 template <> 257 double RandomNumberDistribution_Encapsulation< boost::triangle_distribution<> >::max() const 258 { 259 return distribution_type.c(); 260 } 261 262 template <> 263 double RandomNumberDistribution_Encapsulation< boost::exponential_distribution<> >::max() const 264 { 265 return std::numeric_limits<double>::max(); 266 } 267 268 template <> 269 double RandomNumberDistribution_Encapsulation< boost::normal_distribution<> >::max() const 270 { 271 return std::numeric_limits<double>::max(); 272 } 273 274 template <> 275 double RandomNumberDistribution_Encapsulation< boost::lognormal_distribution<> >::max() const 276 { 277 return std::numeric_limits<double>::max(); 278 } 160 279 161 280 /* =============== p() ======================= */ -
src/RandomNumbers/RandomNumberGenerator.hpp
rc14c78 r0bfe73 39 39 virtual void seed(unsigned int _seed)=0; 40 40 41 /** Getter for smallest possible random number 42 * 43 * @return smallest possible random number 44 */ 45 virtual double min() const=0; 46 47 /** Getter for largest possible random number 48 * 49 * @return largest possible random number 50 */ 51 virtual double max() const=0; 52 41 53 /** Getter for the type name of the internal engine. 42 54 * 43 55 */ 44 virtual std::string EngineName() =0;56 virtual std::string EngineName() const=0; 45 57 46 58 /** Getter for the type name of the internal distribution. 47 59 * 48 60 */ 49 virtual std::string DistributionName() =0;61 virtual std::string DistributionName() const=0; 50 62 51 63 /** Destructor of class RandomNumberGenerator. -
src/RandomNumbers/RandomNumberGeneratorFactory.cpp
rc14c78 r0bfe73 55 55 !GeneratorPrototypeTable.empty(); 56 56 iter = GeneratorPrototypeTable.begin()) { 57 EmptyPrototypeTable< std::map<RandomNumberDistributionFactory::TypeList, Clone<RandomNumberGenerator>*> > (iter->second);57 EmptyPrototypeTable< std::map<RandomNumberDistributionFactory::TypeList,RandomNumberGenerator*> > (iter->second); 58 58 GeneratorPrototypeTable.erase(iter); 59 59 } … … 100 100 } 101 101 102 RandomNumberGenerator *RandomNumberGeneratorFactory::makeRandomNumberGenerator() const102 RandomNumberGenerator& RandomNumberGeneratorFactory::makeRandomNumberGenerator() const 103 103 { 104 104 // Instantiate and return (implicitly creates a copy of the stored prototype) 105 return (GeneratorPrototypeTable[engine][distribution]->clone()); 105 RandomNumberEngineFactory::TypeList eng_type = 106 RandomNumberEngineFactory::getInstance().getCurrentTypeEnum(); 107 RandomNumberDistributionFactory::TypeList dis_type = 108 RandomNumberDistributionFactory::getInstance().getCurrentTypeEnum(); 109 110 return (*GeneratorPrototypeTable[ eng_type ][ dis_type ]); 106 111 } 107 112 108 RandomNumberGenerator *RandomNumberGeneratorFactory::makeRandomNumberGenerator(113 RandomNumberGenerator& RandomNumberGeneratorFactory::makeRandomNumberGenerator( 109 114 std::string engine_type, 110 115 std::string distribution_type … … 118 123 eng_type = RandomNumberEngineFactory::getInstance().getEnum(engine_type); 119 124 } else 120 eng_type = engine;125 eng_type = RandomNumberEngineFactory::getInstance().getCurrentTypeEnum(); 121 126 if (!distribution_type.empty()) { 122 127 dis_type = RandomNumberDistributionFactory::getInstance().getEnum(distribution_type); 123 128 } else 124 dis_type = distribution; 125 return (GeneratorPrototypeTable[ eng_type ][ dis_type ]->clone()); 129 dis_type = RandomNumberDistributionFactory::getInstance().getCurrentTypeEnum(); 130 return (*GeneratorPrototypeTable[ eng_type ][ dis_type ]); 131 132 return (*GeneratorPrototypeTable[ eng_type ][ dis_type ]); 126 133 } 127 134 128 135 void RandomNumberGeneratorFactory::setEngine(std::string engine_type) 129 136 { 130 engine = RandomNumberEngineFactory::getInstance().getEnum(engine_type);137 RandomNumberEngineFactory::getInstance().setCurrentType(engine_type); 131 138 } 132 139 133 140 const std::string &RandomNumberGeneratorFactory::getEngineName() const 134 141 { 135 return RandomNumberEngineFactory::getInstance().get Name(engine);142 return RandomNumberEngineFactory::getInstance().getCurrentTypeName(); 136 143 } 137 144 138 145 void RandomNumberGeneratorFactory::setDistribution(std::string distribution_type) 139 146 { 140 distribution = RandomNumberDistributionFactory::getInstance().getEnum(distribution_type);147 RandomNumberDistributionFactory::getInstance().setCurrentType(distribution_type); 141 148 } 142 149 143 150 const std::string &RandomNumberGeneratorFactory::getDistributionName() const 144 151 { 145 return RandomNumberDistributionFactory::getInstance().get Name(distribution);152 return RandomNumberDistributionFactory::getInstance().getCurrentTypeName(); 146 153 } 147 154 -
src/RandomNumbers/RandomNumberGeneratorFactory.def
rc14c78 r0bfe73 27 27 */ 28 28 #define engine_seq \ 29 (minstd_rand0) 29 (minstd_rand0) \ 30 (mt19937) 31 30 32 /* 31 33 (minstd_rand)\ … … 36 38 (hellekalek1995)\ 37 39 (mt11213b)\ 38 (mt19937)39 40 */ 40 41 -
src/RandomNumbers/RandomNumberGeneratorFactory.hpp
rc14c78 r0bfe73 49 49 * \return random number generator instance 50 50 */ 51 RandomNumberGenerator *makeRandomNumberGenerator() const;51 RandomNumberGenerator& makeRandomNumberGenerator() const; 52 52 53 53 /** Create a Generator of desired combination of engine and distribution. … … 61 61 * \return random number generator instance 62 62 */ 63 RandomNumberGenerator *makeRandomNumberGenerator(std::string engine_type, std::string distribution_type) const;63 RandomNumberGenerator& makeRandomNumberGenerator(std::string engine_type, std::string distribution_type) const; 64 64 65 65 /** Specify the precise type of the engine to build … … 98 98 std::map< 99 99 RandomNumberDistributionFactory::TypeList, 100 Clone<RandomNumberGenerator>*>100 RandomNumberGenerator *> 101 101 > EngineDistributionTable; 102 102 -
src/RandomNumbers/RandomNumberGenerator_Encapsulation.hpp
rc14c78 r0bfe73 87 87 */ 88 88 double operator()() const { 89 return (*randomgenerator)(); 89 const double value = (*randomgenerator)(); 90 //std::cout << "Current random value from (" << EngineName() << "," << DistributionName() << ") is " << value << std::endl; 91 return value; 90 92 } 91 93 … … 98 100 } 99 101 102 /** Getter for smallest possible random number 103 * 104 * @return smallest possible random number 105 */ 106 double min() const { 107 return distribution_type->min(); 108 } 109 110 /** Getter for largest possible random number 111 * 112 * @return largest possible random number 113 */ 114 double max() const { 115 return distribution_type->max(); 116 } 117 100 118 /** Getter for the type name of the internal engine. 101 119 * 102 120 */ 103 std::string EngineName() {121 std::string EngineName() const { 104 122 return engine_type->name(); 105 123 } … … 108 126 * 109 127 */ 110 std::string DistributionName() {128 std::string DistributionName() const { 111 129 return distribution_type->name(); 112 130 } -
src/RandomNumbers/unittests/RandomNumberGeneratorFactoryUnitTest.cpp
rc14c78 r0bfe73 75 75 void RandomNumberGeneratorFactoryTest::setUp() 76 76 { 77 rng = NULL;78 79 77 RandomNumberGeneratorFactory::getInstance(); 80 78 } … … 82 80 void RandomNumberGeneratorFactoryTest::tearDown() 83 81 { 84 delete rng;85 82 86 83 RandomNumberDistributionFactory::purgeInstance(); … … 92 89 { 93 90 // check one of the engines and distributions 94 rng =RandomNumberGeneratorFactory::getInstance().91 RandomNumberGenerator& rng = *(RandomNumberGeneratorFactory::getInstance(). 95 92 GeneratorPrototypeTable[RandomNumberEngineFactory::minstd_rand0] 96 [RandomNumberDistributionFactory::uniform_smallint] ->clone();93 [RandomNumberDistributionFactory::uniform_smallint]); 97 94 CPPUNIT_ASSERT_EQUAL( 98 95 std::string(typeid(boost::minstd_rand0).name()), 99 rng ->EngineName()96 rng.EngineName() 100 97 ); 101 98 CPPUNIT_ASSERT_EQUAL( 102 99 std::string(typeid(boost::uniform_smallint<> ).name()), 103 rng->DistributionName() 100 rng.DistributionName() 101 ); 102 103 // set types in lower factories 104 RandomNumberEngineFactory::getInstance().setCurrentType(RandomNumberEngineFactory::minstd_rand0); 105 RandomNumberDistributionFactory::getInstance().setCurrentType(RandomNumberDistributionFactory::uniform_int); 106 // ... and check whether generator delivers those set types 107 RandomNumberGenerator &rng_A = RandomNumberGeneratorFactory::getInstance(). 108 makeRandomNumberGenerator(); 109 CPPUNIT_ASSERT_EQUAL( 110 std::string(typeid(boost::minstd_rand0).name()), 111 rng_A.EngineName() 112 ); 113 CPPUNIT_ASSERT_EQUAL( 114 std::string(typeid(boost::uniform_int<> ).name()), 115 rng_A.DistributionName() 104 116 ); 105 117 } -
src/RandomNumbers/unittests/RandomNumberGeneratorFactoryUnitTest.hpp
rc14c78 r0bfe73 29 29 30 30 void GeneratorTest(); 31 32 private:33 RandomNumberGenerator *rng;34 31 }; 35 32 -
src/RandomNumbers/unittests/RandomNumberGeneratorUnitTest.cpp
rc14c78 r0bfe73 50 50 51 51 /** We check that the RandomNumberGenerator instance received 52 * from the RandomNumberGeneratorFactory is truely a copy and53 * not the prototype instance.52 * from the RandomNumberGeneratorFactory is truely the prototype 53 * itself. 54 54 */ 55 void RandomNumberGeneratorTest::Prototype CopyTest()55 void RandomNumberGeneratorTest::PrototypeNonCopyTest() 56 56 { 57 RandomNumberGenerator *rng1 = RandomNumberGeneratorFactory::getInstance().makeRandomNumberGenerator();58 RandomNumberGenerator *rng2 = RandomNumberGeneratorFactory::getInstance().makeRandomNumberGenerator();57 RandomNumberGenerator &rng1 = RandomNumberGeneratorFactory::getInstance().makeRandomNumberGenerator(); 58 RandomNumberGenerator &rng2 = RandomNumberGeneratorFactory::getInstance().makeRandomNumberGenerator(); 59 59 60 double random1_1 = (*rng1)(); 61 double random1_2 = (*rng1)(); 62 double random2_1 = (*rng2)(); 63 double random2_2 = (*rng2)(); 64 65 CPPUNIT_ASSERT(random1_1 == random2_1); 66 CPPUNIT_ASSERT(random1_2 == random2_2); 67 68 delete rng1; 69 delete rng2; 60 // compare addresses in memory, have to be the same 61 CPPUNIT_ASSERT( &rng1 == &rng2 ); 70 62 } 71 63 … … 74 66 // obtain some random values for uniform_smallint 75 67 RandomNumberGeneratorFactory::getInstance().setDistribution("uniform_smallint"); 76 RandomNumberGenerator *rng = RandomNumberGeneratorFactory::getInstance().makeRandomNumberGenerator();68 RandomNumberGenerator& rng = RandomNumberGeneratorFactory::getInstance().makeRandomNumberGenerator(); 77 69 for (size_t i=0; i < 1000; ++i) { 78 const int testint = (*rng)();70 const int testint = rng(); 79 71 CPPUNIT_ASSERT_MESSAGE("randon number from uniform_smallint is out of [0:9]!", testint >= 0); 80 72 CPPUNIT_ASSERT_MESSAGE("randon number from uniform_smallint is out of [0:9]!", testint <= 9); 81 73 } 82 delete rng;83 74 } -
src/RandomNumbers/unittests/RandomNumberGeneratorUnitTest.hpp
rc14c78 r0bfe73 20 20 { 21 21 CPPUNIT_TEST_SUITE( RandomNumberGeneratorTest ); 22 CPPUNIT_TEST ( Prototype CopyTest );22 CPPUNIT_TEST ( PrototypeNonCopyTest ); 23 23 CPPUNIT_TEST ( Range_uniform_smallint_Test ); 24 24 CPPUNIT_TEST_SUITE_END(); … … 28 28 void tearDown(); 29 29 30 void Prototype CopyTest();30 void PrototypeNonCopyTest(); 31 31 void Range_uniform_smallint_Test(); 32 32 -
src/SubspaceFactorizer.cpp
rc14c78 r0bfe73 36 36 #include "LinearAlgebra/Subspace.hpp" 37 37 #include "LinearAlgebra/VectorContent.hpp" 38 39 #include "RandomNumbers/RandomNumberGeneratorFactory.hpp" 40 #include "RandomNumbers/RandomNumberGenerator.hpp" 38 41 39 42 typedef std::set<std::set<size_t> > SetofIndexSets; … … 203 206 } 204 207 208 // RandomNumberGenerator &random = RandomNumberGeneratorFactory::getInstance().makeRandomNumberGenerator(); 209 // const double rng_min = rng->min(); 210 // const double rng_max = rng->max(); 205 211 MatrixContent *matrix = new MatrixContent(matrixdimension,matrixdimension); 206 212 matrix->setZero(); 207 213 for (size_t i=0; i<matrixdimension ; i++) { 208 214 for (size_t j=0; j<= i; ++j) { 209 //const double value = 10. * rand () / (double)RAND_MAX;215 //const double value = 10. * random() / (rng_max-rng_min); 210 216 //const double value = i==j ? 2. : 1.; 211 217 if (i==j) -
src/Thermostats/Langevin.cpp
rc14c78 r0bfe73 19 19 #include "CodePatterns/Log.hpp" 20 20 #include "ThermoStatContainer.hpp" 21 22 #include "RandomNumbers/RandomNumberGeneratorFactory.hpp" 23 #include "RandomNumbers/RandomNumberGenerator.hpp" 21 24 22 25 Langevin::Langevin(double _TempFrequency,double _alpha) : … … 73 76 double Langevin::doScaleAtoms(unsigned int step,double ActualTemp,ForwardIterator begin, ForwardIterator end){ 74 77 DoLog(2) && (Log() << Verbose(2) << "Applying Langevin thermostat..." << endl); 78 RandomNumberGenerator &random = RandomNumberGeneratorFactory::getInstance().makeRandomNumberGenerator(); 79 const double rng_min = random.min(); 80 const double rng_max = random.max(); 75 81 double ekin=0; 76 82 for(ForwardIterator iter=begin;iter!=end;++iter){ … … 79 85 if ((*iter)->FixedIon == 0) { // even FixedIon moves, only not by other's forces 80 86 // throw a dice to determine whether it gets hit by a heat bath particle 81 if (((((rand ()/(double)RAND_MAX))*TempFrequency) < 1.)) {87 if (((((random()/(rng_max-rng_min)))*TempFrequency) < 1.)) { 82 88 DoLog(3) && (Log() << Verbose(3) << "Particle " << (**iter) << " was hit (sigma " << sigma << "): " << U.Norm() << " -> "); 83 89 // pick three random numbers from a Boltzmann distribution around the desired temperature T for each momenta axis -
src/bondgraph.cpp
rc14c78 r0bfe73 57 57 * Allocates \a MatrixContainer for BondGraph::BondLengthMatrix, using MatrixContainer::ParseMatrix(), 58 58 * but only if parsing is successful. Otherwise variable is left as NULL. 59 * \param *out output stream for debugging 60 * \param filename file with bond lengths to parse 59 * \param &input input stream to parse table from 61 60 * \return true - success in parsing file, false - failed to parse the file 62 61 */ 63 bool BondGraph::LoadBondLengthTable( const string &filename)62 bool BondGraph::LoadBondLengthTable(std::istream &input) 64 63 { 65 64 Info FunctionInfo(__func__); … … 75 74 76 75 // parse in matrix 77 if (( status = TempContainer->ParseMatrix(filename.c_str(), 0, 1, 0))) {76 if ((input.good()) && (status = TempContainer->ParseMatrix(input, 0, 1, 0))) { 78 77 DoLog(1) && (Log() << Verbose(1) << "Parsing bond length matrix successful." << endl); 79 78 } else { 80 79 DoeLog(1) && (eLog()<< Verbose(1) << "Parsing bond length matrix failed." << endl); 80 status = false; 81 81 } 82 82 … … 129 129 double BondGraph::GetBondLength(int firstZ, int secondZ) 130 130 { 131 if (BondLengthMatrix == NULL) 131 std::cout << "Request for length between " << firstZ << " and " << secondZ << ": "; 132 if (BondLengthMatrix == NULL) { 133 std::cout << "-1." << std::endl; 132 134 return( -1. ); 133 else 135 } else { 136 std::cout << BondLengthMatrix->Matrix[0][firstZ][secondZ] << std::endl; 134 137 return (BondLengthMatrix->Matrix[0][firstZ][secondZ]); 138 } 135 139 }; 136 140 -
src/bondgraph.hpp
rc14c78 r0bfe73 36 36 BondGraph(bool IsA); 37 37 ~BondGraph(); 38 bool LoadBondLengthTable( const string &filename);38 bool LoadBondLengthTable(std::istream &input); 39 39 bool ConstructBondGraph(molecule * const mol); 40 40 double GetBondLength(int firstelement, int secondelement); -
src/boundary.cpp
rc14c78 r0bfe73 40 40 #include "LinearAlgebra/Plane.hpp" 41 41 #include "LinearAlgebra/RealSpaceMatrix.hpp" 42 #include "RandomNumbers/RandomNumberGeneratorFactory.hpp" 43 #include "RandomNumbers/RandomNumberGenerator.hpp" 42 44 #include "Box.hpp" 43 45 … … 831 833 832 834 // initialize seed of random number generator to current time 833 srand ( time(NULL) ); 835 RandomNumberGenerator &random = RandomNumberGeneratorFactory::getInstance().makeRandomNumberGenerator(); 836 const double rng_min = random.min(); 837 const double rng_max = random.max(); 838 //srand ( time(NULL) ); 834 839 835 840 // go over [0,1]^3 filler grid … … 841 846 // create molecule random translation vector ... 842 847 for (int i=0;i<NDIM;i++) 843 FillerTranslations[i] = RandomMolDisplacement*(rand ()/(RAND_MAX/2.) - 1.);848 FillerTranslations[i] = RandomMolDisplacement*(random()/((rng_max-rng_min)/2.) - 1.); 844 849 DoLog(2) && (Log() << Verbose(2) << "INFO: Current Position is " << CurrentPosition << "+" << FillerTranslations << "." << endl); 845 850 … … 851 856 if (DoRandomRotation) 852 857 for (int i=0;i<NDIM;i++) 853 phi[i] = (rand ()/RAND_MAX)*(2.*M_PI);858 phi[i] = (random()/(rng_max-rng_min))*(2.*M_PI); 854 859 855 860 for(molecule::const_iterator iter = filler->begin(); iter !=filler->end();++iter){ … … 857 862 // create atomic random translation vector ... 858 863 for (int i=0;i<NDIM;i++) 859 AtomTranslations[i] = RandomAtomDisplacement*(rand ()/(RAND_MAX/2.) - 1.);864 AtomTranslations[i] = RandomAtomDisplacement*(random()/((rng_max-rng_min)/2.) - 1.); 860 865 861 866 // ... and rotation matrix … … 939 944 molecule *&Filling, 940 945 double RandomAtomDisplacement, 941 RealSpaceMatrix &Rotations 946 RealSpaceMatrix &Rotations, 947 RandomNumberGenerator &random 942 948 ) 943 949 { 950 const double rng_min = random.min(); 951 const double rng_max = random.max(); 952 944 953 Vector AtomTranslations; 945 954 for(molecule::iterator miter = Filling->begin(); miter != Filling->end(); ++miter) { … … 949 958 // create atomic random translation vector ... 950 959 for (int i=0;i<NDIM;i++) 951 AtomTranslations[i] = RandomAtomDisplacement*(rand ()/(RAND_MAX/2.) - 1.);960 AtomTranslations[i] = RandomAtomDisplacement*(random()/((rng_max-rng_min)/2.) - 1.); 952 961 (*miter)->setPosition((*miter)->getPosition() + AtomTranslations); 953 962 } … … 1090 1099 1091 1100 // initialize seed of random number generator to current time 1092 srand ( time(NULL) ); 1101 RandomNumberGenerator &random = RandomNumberGeneratorFactory::getInstance().makeRandomNumberGenerator(); 1102 const double rng_min = random.min(); 1103 const double rng_max = random.max(); 1104 //srand ( time(NULL) ); 1093 1105 1094 1106 // go over [0,1]^3 filler grid … … 1099 1111 CurrentPosition = M * Vector((double)n[0]/(double)N[0], (double)n[1]/(double)N[1], (double)n[2]/(double)N[2]); 1100 1112 // create molecule random translation vector ... 1101 for (int i=0;i<NDIM;i++) 1102 FillerTranslations[i] = RandomMolDisplacement*(rand ()/(RAND_MAX/2.) - 1.);1113 for (int i=0;i<NDIM;i++) // have the random values [-1,1]*RandomMolDisplacement 1114 FillerTranslations[i] = RandomMolDisplacement*(random()/((rng_max-rng_min)/2.) - 1.); 1103 1115 DoLog(2) && (Log() << Verbose(2) << "INFO: Current Position is " << CurrentPosition << "+" << FillerTranslations << "." << endl); 1104 1116 … … 1130 1142 // fill! 1131 1143 Filling = filler->CopyMolecule(); 1132 RandomizeMoleculePositions(Filling, RandomAtomDisplacement, Rotations );1144 RandomizeMoleculePositions(Filling, RandomAtomDisplacement, Rotations, random); 1133 1145 // translation 1134 1146 Filling->Translate(&Inserter); … … 1168 1180 else 1169 1181 Rotations.setIdentity(); 1170 RandomizeMoleculePositions(filler, RandomAtomDisplacement, Rotations );1182 RandomizeMoleculePositions(filler, RandomAtomDisplacement, Rotations, random); 1171 1183 // translation 1172 1184 filler->Translate(&firstInserter); -
src/builder_init.cpp
rc14c78 r0bfe73 19 19 20 20 #include "CodePatterns/MemDebug.hpp" 21 22 #include <iostream> 21 23 22 24 #include "bondgraph.hpp" … … 107 109 World::getInstance().getConfig()->BG = new BondGraph(World::getInstance().getConfig()->GetIsAngstroem()); 108 110 if (boost::filesystem::exists(BondGraphFileName)) { 109 if (World::getInstance().getConfig()->BG->LoadBondLengthTable(BondGraphFileName)) { 111 std::ifstream input(BondGraphFileName.c_str()); 112 if ((input.good()) && (World::getInstance().getConfig()->BG->LoadBondLengthTable(input))) { 110 113 DoLog(0) && (Log() << Verbose(0) << "Bond length table loaded successfully." << endl); 111 114 } else { 112 115 DoeLog(1) && (eLog()<< Verbose(1) << "Bond length table loading failed." << endl); 113 116 } 117 input.close(); 114 118 } 115 119 } -
src/config.cpp
rc14c78 r0bfe73 60 60 FastParsing(false), 61 61 Deltat(0.01), 62 basis(""),63 62 databasepath(NULL), 64 63 DoConstrainedMD(0), … … 117 116 strcpy(pseudopotpath,"not specified"); 118 117 configname[0]='\0'; 119 basis = "3-21G";120 118 }; 121 119 … … 786 784 *output << ")" << endl; 787 785 *output << "basis<GaussianBasisSet>: (" << endl; 788 *output << "\tname = \" " << basis << "\"" << endl;786 *output << "\tname = \"3-21G\"" << endl; 789 787 *output << "\tmolecule = $:molecule" << endl; 790 788 *output << ")" << endl; -
src/config.hpp
rc14c78 r0bfe73 50 50 bool FastParsing; 51 51 double Deltat; 52 string basis;53 52 54 53 char *databasepath; -
src/ellipsoid.cpp
rc14c78 r0bfe73 36 36 #include "LinearAlgebra/RealSpaceMatrix.hpp" 37 37 #include "CodePatterns/Verbose.hpp" 38 39 #include "RandomNumbers/RandomNumberGeneratorFactory.hpp" 40 #include "RandomNumbers/RandomNumberGenerator.hpp" 38 41 39 42 /** Determines squared distance for a given point \a x to surface of ellipsoid. … … 258 261 } 259 262 263 RandomNumberGenerator &random = RandomNumberGeneratorFactory::getInstance().makeRandomNumberGenerator("mt19937", "uniform_int"); 264 // check that random number generator's bounds are ok 265 ASSERT(random.min() == 0, 266 "PickRandomNeighbouredPointSet: Chosen RandomNumberGenerator's min " 267 +toString(random.min())+" is not 0!"); 268 ASSERT(random.max() >= LC->N[0], 269 "PickRandomNeighbouredPointSet: Chosen RandomNumberGenerator's max " 270 +toString(random.max())+" is too small"+toString(LC->N[0]) 271 +" for axis 0!"); 272 ASSERT(random.max() >= LC->N[1], 273 "PickRandomNeighbouredPointSet: Chosen RandomNumberGenerator's max " 274 +toString(random.max())+" is too small"+toString(LC->N[1]) 275 +" for axis 1!"); 276 ASSERT(random.max() >= LC->N[2], 277 "PickRandomNeighbouredPointSet: Chosen RandomNumberGenerator's max " 278 +toString(random.max())+" is too small"+toString(LC->N[2]) 279 +" for axis 2!"); 280 260 281 do { 261 282 for(int i=0;i<NDIM;i++) // pick three random indices 262 LC->n[i] = ( rand() % LC->N[i]);283 LC->n[i] = ((int)random() % LC->N[i]); 263 284 DoLog(2) && (Log() << Verbose(2) << "INFO: Center cell is " << LC->n[0] << ", " << LC->n[1] << ", " << LC->n[2] << " ... "); 264 285 // get random cell … … 293 314 PickedAtomNrs.clear(); 294 315 do { 295 index = ( rand() % PointsLeft);316 index = (((int)random()) % PointsLeft); 296 317 current = PickedAtomNrs.find(index); // not present? 297 318 if (current == PickedAtomNrs.end()) { … … 358 379 } 359 380 381 RandomNumberGenerator &random = RandomNumberGeneratorFactory::getInstance().makeRandomNumberGenerator("mt19937", "uniform_int"); 382 const double rng_min = random.min(); 383 const double rng_max = random.max(); 360 384 if (List != NULL) 361 385 for (PointMap::iterator Runner = List->begin(); Runner != List->end(); Runner++) { 362 386 threshold = 1. - (double)(PointsToPick - PointsPicked)/(double)PointsLeft; 363 value = (double)rand ()/(double)RAND_MAX;387 value = (double)random()/(double)(rng_max-rng_min); 364 388 //Log() << Verbose(3) << "Current node is " << *Runner->second->node << " with " << value << " ... " << threshold << ": "; 365 389 if (value > threshold) { -
src/molecule.hpp
rc14c78 r0bfe73 206 206 void SetNameFromFilename(const char *filename); 207 207 void SetBoxDimension(Vector *dim); 208 voidScanForPeriodicCorrection();208 bool ScanForPeriodicCorrection(); 209 209 bool VerletForceIntegration(char *file, config &configuration, const size_t offset); 210 210 double VolumeOfConvexEnvelope(bool IsAngstroem); -
src/molecule_dynamics.cpp
rc14c78 r0bfe73 574 574 { 575 575 Info FunctionInfo(__func__); 576 ifstream input(file);577 576 string token; 578 577 stringstream item; … … 582 581 583 582 const int AtomCount = getAtomCount(); 584 // check file 585 if (input == NULL) { 583 // parse file into ForceMatrix 584 std::ifstream input(file); 585 if ((input.good()) && (!Force.ParseMatrix(input, 0,0,0))) { 586 DoeLog(0) && (eLog()<< Verbose(0) << "Could not parse Force Matrix file " << file << "." << endl); 587 performCriticalExit(); 586 588 return false; 587 } else { 588 // parse file into ForceMatrix 589 if (!Force.ParseMatrix(file, 0,0,0)) { 590 DoeLog(0) && (eLog()<< Verbose(0) << "Could not parse Force Matrix file " << file << "." << endl); 591 performCriticalExit(); 592 return false; 593 } 594 if (Force.RowCounter[0] != AtomCount) { 595 DoeLog(0) && (eLog()<< Verbose(0) << "Mismatch between number of atoms in file " << Force.RowCounter[0] << " and in molecule " << getAtomCount() << "." << endl); 596 performCriticalExit(); 597 return false; 598 } 599 // correct Forces 600 Velocity.Zero(); 601 for(int i=0;i<AtomCount;i++) 602 for(int d=0;d<NDIM;d++) { 603 Velocity[d] += Force.Matrix[0][i][d+offset]; 604 } 605 for(int i=0;i<AtomCount;i++) 606 for(int d=0;d<NDIM;d++) { 607 Force.Matrix[0][i][d+offset] -= Velocity[d]/static_cast<double>(AtomCount); 608 } 609 // solve a constrained potential if we are meant to 610 if (configuration.DoConstrainedMD) { 611 // calculate forces and potential 612 atom **PermutationMap = NULL; 613 ConstrainedPotentialEnergy = MinimiseConstrainedPotential(PermutationMap,configuration.DoConstrainedMD, 0, configuration.GetIsAngstroem()); 614 EvaluateConstrainedForces(configuration.DoConstrainedMD, 0, PermutationMap, &Force); 615 delete[](PermutationMap); 616 } 617 618 // and perform Verlet integration for each atom with position, velocity and force vector 619 // check size of vectors 620 for_each(atoms.begin(), 621 atoms.end(), 622 boost::bind(&atom::VelocityVerletUpdate,_1,MDSteps+1, &configuration, &Force, (const size_t) 0)); 623 } 589 } 590 input.close(); 591 if (Force.RowCounter[0] != AtomCount) { 592 DoeLog(0) && (eLog()<< Verbose(0) << "Mismatch between number of atoms in file " << Force.RowCounter[0] << " and in molecule " << getAtomCount() << "." << endl); 593 performCriticalExit(); 594 return false; 595 } 596 // correct Forces 597 Velocity.Zero(); 598 for(int i=0;i<AtomCount;i++) 599 for(int d=0;d<NDIM;d++) { 600 Velocity[d] += Force.Matrix[0][i][d+offset]; 601 } 602 for(int i=0;i<AtomCount;i++) 603 for(int d=0;d<NDIM;d++) { 604 Force.Matrix[0][i][d+offset] -= Velocity[d]/static_cast<double>(AtomCount); 605 } 606 // solve a constrained potential if we are meant to 607 if (configuration.DoConstrainedMD) { 608 // calculate forces and potential 609 atom **PermutationMap = NULL; 610 ConstrainedPotentialEnergy = MinimiseConstrainedPotential(PermutationMap,configuration.DoConstrainedMD, 0, configuration.GetIsAngstroem()); 611 EvaluateConstrainedForces(configuration.DoConstrainedMD, 0, PermutationMap, &Force); 612 delete[](PermutationMap); 613 } 614 615 // and perform Verlet integration for each atom with position, velocity and force vector 616 // check size of vectors 617 for_each(atoms.begin(), 618 atoms.end(), 619 boost::bind(&atom::VelocityVerletUpdate,_1,MDSteps+1, &configuration, &Force, (const size_t) 0)); 620 624 621 // correct velocities (rather momenta) so that center of mass remains motionless 625 622 Velocity = atoms.totalMomentumAtStep(MDSteps+1); -
src/molecule_fragmentation.cpp
rc14c78 r0bfe73 661 661 FragmentationToDo = FragmentationToDo && CheckAdjacencyFileAgainstMolecule(prefix, ListOfAtoms); 662 662 delete[](ListOfAtoms); 663 664 // === reset bond degree and perform CorrectBondDegree === 665 for(World::MoleculeIterator iter = World::getInstance().getMoleculeIter(); 666 iter != World::getInstance().moleculeEnd(); 667 ++iter) { 668 // reset bond degree to 1 669 for (molecule::iterator atomiter = (*iter)->begin(); 670 atomiter != (*iter)->end(); 671 ++atomiter) { 672 for (BondList::iterator bonditer = (*atomiter)->ListOfBonds.begin(); 673 bonditer != (*atomiter)->ListOfBonds.end(); 674 ++bonditer) { 675 (*bonditer)->BondDegree = 1; 676 } 677 } 678 // correct bond degree 679 (*iter)->CorrectBondDegree(); 680 } 663 681 664 682 // ===== 2. perform a DFS analysis to gather info on cyclic structure and a list of disconnected subgraphs ===== … … 752 770 // free subgraph memory again 753 771 FragmentCounter = 0; 754 if (Subgraphs != NULL) { 755 while (Subgraphs->next != NULL) { 756 Subgraphs = Subgraphs->next; 757 delete(FragmentList[FragmentCounter++]); 758 delete(Subgraphs->previous); 759 } 772 while (Subgraphs != NULL) { 773 // remove entry in fragment list 774 // remove subgraph fragment 775 MolecularWalker = Subgraphs->next; 760 776 delete(Subgraphs); 761 } 777 Subgraphs = MolecularWalker; 778 } 779 // free fragment list 780 for (int i=0; i< FragmentCounter; ++i ) 781 delete(FragmentList[i]); 762 782 delete[](FragmentList); 783 784 DoLog(0) && (Log() << Verbose(0) << FragmentCounter-1 << " subgraph fragments have been removed." << std::endl); 763 785 764 786 // ===== 8b. gather keyset lists (graphs) from all subgraphs and transform into MoleculeListClass ===== … … 813 835 } else { 814 836 DoLog(1) && (Log() << Verbose(1) << "FragmentList is zero on return, splitting failed." << endl); 837 } 838 // remove all create molecules again from the World including their atoms 839 for (MoleculeList::iterator iter = BondFragments->ListOfMolecules.begin(); 840 !BondFragments->ListOfMolecules.empty(); 841 iter = BondFragments->ListOfMolecules.begin()) { 842 // remove copied atoms and molecule again 843 molecule *mol = *iter; 844 mol->removeAtomsinMolecule(); 845 World::getInstance().destroyMolecule(mol); 846 BondFragments->ListOfMolecules.erase(iter); 815 847 } 816 848 delete(BondFragments); … … 1754 1786 * \param *out ofstream for debugging messages 1755 1787 */ 1756 voidmolecule::ScanForPeriodicCorrection()1788 bool molecule::ScanForPeriodicCorrection() 1757 1789 { 1758 1790 bond *Binder = NULL; … … 1763 1795 enum Shading *ColorList = NULL; 1764 1796 double tmp; 1797 bool LastBond = true; // only needed to due list construct 1765 1798 Vector Translationvector; 1766 1799 //std::deque<atom *> *CompStack = NULL; … … 1773 1806 for (int i=0;i<getAtomCount();i++) 1774 1807 ColorList[i] = (enum Shading)0; 1775 while(flag) {1808 if (flag) { 1776 1809 // remove bonds that are beyond bonddistance 1777 1810 Translationvector.Zero(); … … 1785 1818 //Log() << Verbose(3) << "Checking " << i << "th distance of " << *Binder->leftatom << " to " << *Binder->rightatom << ": " << tmp << "." << endl; 1786 1819 if (tmp > BondDistance) { 1787 OtherBinder = Binder->next; // note down binding partner for later re-insertion 1788 unlink(Binder); // unlink bond 1820 // OtherBinder = Binder->next; // note down binding partner for later re-insertion 1821 // if (OtherBinder != NULL) { 1822 // LastBond = false; 1823 // } else { 1824 // OtherBinder = Binder->previous; 1825 // LastBond = true; 1826 // } 1827 // unlink(Binder); // unlink bond 1789 1828 DoLog(2) && (Log() << Verbose(2) << "Correcting at bond " << *Binder << "." << endl); 1790 1829 flag = true; … … 1793 1832 } 1794 1833 } 1795 if (flag) { 1834 //if (flag) { 1835 if (0) { 1796 1836 // create translation vector from their periodically modified distance 1797 1837 for (int i=NDIM;i--;) { … … 1823 1863 } 1824 1864 // re-add bond 1825 link(Binder, OtherBinder); 1865 if (OtherBinder == NULL) { // is the only bond? 1866 //Do nothing 1867 } else { 1868 if (!LastBond) { 1869 link(Binder, OtherBinder); 1870 } else { 1871 link(OtherBinder, Binder); 1872 } 1873 } 1826 1874 } else { 1827 1875 DoLog(3) && (Log() << Verbose(3) << "No corrections for this fragment." << endl); … … 1833 1881 delete[](ColorList); 1834 1882 DoLog(2) && (Log() << Verbose(2) << "End of ScanForPeriodicCorrection." << endl); 1835 }; 1883 1884 return flag; 1885 }; -
src/molecule_graph.cpp
rc14c78 r0bfe73 26 26 #include "bondgraph.hpp" 27 27 #include "config.hpp" 28 #include "element.hpp" 28 29 #include "Helpers/defs.hpp" 29 #include " element.hpp"30 #include "Helpers/fast_functions.hpp" 30 31 #include "Helpers/helpers.hpp" 31 #include " CodePatterns/Info.hpp"32 #include "LinearAlgebra/RealSpaceMatrix.hpp" 32 33 #include "linkedcell.hpp" 33 34 #include "lists.hpp" 34 #include "CodePatterns/Verbose.hpp"35 #include "CodePatterns/Log.hpp"36 35 #include "molecule.hpp" 37 36 #include "World.hpp" 38 #include "Helpers/fast_functions.hpp" 37 #include "Box.hpp" 38 39 39 #include "CodePatterns/Assert.hpp" 40 #include "LinearAlgebra/RealSpaceMatrix.hpp" 41 #include "Box.hpp" 40 #include "CodePatterns/Info.hpp" 41 #include "CodePatterns/Log.hpp" 42 #include "CodePatterns/Verbose.hpp" 43 44 #define MAXBONDS 8 42 45 43 46 struct BFSAccounting … … 174 177 for (LC->n[2] = 0; LC->n[2] < LC->N[2]; LC->n[2]++) { 175 178 const LinkedCell::LinkedNodes *List = LC->GetCurrentCell(); 176 //Log() << Verbose(2) << "Current cell is " << LC->n[0] << ", " << LC->n[1] << ", " << LC->n[2] << " with No. " << LC->index << " containing " << List->size() << " points." << endl;179 Log() << Verbose(2) << "Current cell is " << LC->n[0] << ", " << LC->n[1] << ", " << LC->n[2] << " with No. " << LC->index << " containing " << List->size() << " points." << endl; 177 180 if (List != NULL) { 178 181 for (LinkedCell::LinkedNodes::const_iterator Runner = List->begin(); Runner != List->end(); Runner++) { 179 182 Walker = dynamic_cast<atom*>(*Runner); 180 183 ASSERT(Walker,"Tesselpoint that was not an atom retrieved from LinkedNode"); 181 //Log() << Verbose(0) << "Current Atom is " << *Walker << "." << endl;184 Log() << Verbose(0) << "Current Atom is " << *Walker << "." << endl; 182 185 // 3c. check for possible bond between each atom in this and every one in the 27 cells 183 186 for (n[0] = -1; n[0] <= 1; n[0]++) … … 185 188 for (n[2] = -1; n[2] <= 1; n[2]++) { 186 189 const LinkedCell::LinkedNodes *OtherList = LC->GetRelativeToCurrentCell(n); 187 // Log() << Verbose(2) << "Current relative cell is " << LC->n[0] << ", " << LC->n[1] << ", " << LC->n[2] << " with No. " << LC->index << " containing " << List->size() << " points." << endl;188 190 if (OtherList != NULL) { 191 Log() << Verbose(2) << "Current relative cell is " << LC->n[0] << ", " << LC->n[1] << ", " << LC->n[2] << " with No. " << LC->index << " containing " << List->size() << " points." << endl; 189 192 for (LinkedCell::LinkedNodes::const_iterator OtherRunner = OtherList->begin(); OtherRunner != OtherList->end(); OtherRunner++) { 190 193 if ((*OtherRunner)->nr > Walker->nr) { 191 194 OtherWalker = dynamic_cast<atom*>(*OtherRunner); 192 195 ASSERT(OtherWalker,"TesselPoint that was not an atom retrieved from LinkedNode"); 193 //Log() << Verbose(1) << "Checking distance " << OtherWalker->x.PeriodicDistanceSquared(&(Walker->x), cell_size) << " against typical bond length of " << bonddistance*bonddistance << "." << endl;194 196 (BG->*minmaxdistance)(Walker, OtherWalker, MinDistance, MaxDistance, IsAngstroem); 195 197 const double distance = domain.periodicDistanceSquared(OtherWalker->getPosition(),Walker->getPosition()); 198 Log() << Verbose(1) << "Checking distance " << distance << " against typical bond length of " << bonddistance*bonddistance << "." << endl; 196 199 const bool status = (distance <= MaxDistance * MaxDistance) && (distance >= MinDistance * MinDistance); 197 //Log() << Verbose(1) << "MinDistance is " << MinDistance << " and MaxDistance is " << MaxDistance << "." << endl;200 Log() << Verbose(1) << "MinDistance is " << MinDistance << " and MaxDistance is " << MaxDistance << "." << endl; 198 201 if (OtherWalker->father->nr > Walker->father->nr) { 199 202 if (status) { // create bond if distance is smaller 200 //Log() << Verbose(1) << "Adding Bond between " << *Walker << " and " << *OtherWalker << " in distance " << sqrt(distance) << "." << endl;203 Log() << Verbose(1) << "Adding Bond between " << *Walker << " and " << *OtherWalker << " in distance " << sqrt(distance) << "." << endl; 201 204 AddBond(Walker->father, OtherWalker->father, 1); // also increases molecule::BondCount 202 205 } else { 203 //Log() << Verbose(1) << "Not Adding: distance too great." << endl;206 Log() << Verbose(1) << "Not Adding: distance too great." << endl; 204 207 } 205 208 } else { 206 //Log() << Verbose(1) << "Not Adding: Wrong order of labels." << endl;209 Log() << Verbose(1) << "Not Adding: Wrong order of labels." << endl; 207 210 } 208 211 } … … 1144 1147 1145 1148 // allocate storage structure 1146 CurrentBonds = new int[ 8]; // contains parsed bonds of current atom1147 for(int i=0;i< 8;i++)1149 CurrentBonds = new int[MAXBONDS]; // contains parsed bonds of current atom 1150 for(int i=0;i<MAXBONDS;i++) 1148 1151 CurrentBonds[i] = 0; 1149 1152 return true; … … 1210 1213 1211 1214 char buffer[MAXSTRINGSIZE]; 1215 int tmp; 1212 1216 // Parse the file line by line and count the bonds 1213 1217 while (!File.eof()) { … … 1221 1225 if ((AtomNr >= 0) && (AtomNr < AtomCount)) { 1222 1226 Walker = ListOfAtoms[AtomNr]; 1223 while (!line.eof()) 1224 line >> CurrentBonds[++CurrentBondsOfAtom]; 1227 while (line >> ws >> tmp) { 1228 std::cout << "Recognized bond partner " << tmp << std::endl; 1229 CurrentBonds[++CurrentBondsOfAtom] = tmp; 1230 ASSERT(CurrentBondsOfAtom < MAXBONDS, 1231 "molecule::CheckAdjacencyFileAgainstMolecule() - encountered more bonds than allowed: " 1232 +toString(CurrentBondsOfAtom)+" >= "+toString(MAXBONDS)+"!"); 1233 } 1225 1234 // compare against present bonds 1226 1235 CheckAdjacencyFileAgainstMolecule_CompareBonds(status, NonMatchNumber, Walker, CurrentBondsOfAtom, AtomNr, CurrentBonds, ListOfAtoms); -
src/moleculelist.cpp
rc14c78 r0bfe73 506 506 RealSpaceMatrix cell_size = World::getInstance().getDomain().getM(); 507 507 RealSpaceMatrix cell_size_backup = cell_size; 508 int count=0; 508 509 509 510 // store the fragments as config and as xyz … … 519 520 520 521 // correct periodic 521 (*ListRunner)->ScanForPeriodicCorrection(); 522 if ((*ListRunner)->ScanForPeriodicCorrection()) { 523 count++; 524 } 522 525 523 526 // output xyz file … … 543 546 // center on edge 544 547 (*ListRunner)->CenterEdge(&BoxDimension); 548 for (int k = 0; k < NDIM; k++) // if one edge is to small, set at least to 1 angstroem 549 if (BoxDimension[k] < 1.) 550 BoxDimension[k] += 1.; 545 551 (*ListRunner)->SetBoxDimension(&BoxDimension); // update Box of atoms by boundary 546 552 for (int k = 0; k < NDIM; k++) { … … 591 597 // printing final number 592 598 DoLog(2) && (Log() << Verbose(2) << "Final number of fragments: " << FragmentCounter << "." << endl); 599 600 // printing final number 601 DoLog(0) && (Log() << Verbose(0) << "For " << count << " fragments periodic correction would have been necessary." << endl); 593 602 594 603 // restore cell_size … … 741 750 // remove the leaf itself 742 751 if (Leaf != NULL) { 752 Leaf->removeAtomsinMolecule(); 743 753 World::getInstance().destroyMolecule(Leaf); 744 754 Leaf = NULL; -
src/parser.cpp
rc14c78 r0bfe73 22 22 23 23 #include <cstring> 24 #include <iomanip> 24 25 25 26 #include "Helpers/helpers.hpp" … … 158 159 * -# allocate matrix 159 160 * -# loop over found column and row counts and parse in each entry 160 * \param *name directory with files161 * \param &input input stream 161 162 * \param skiplines number of inital lines to skip 162 163 * \param skiplines number of inital columns to skip … … 164 165 * \return parsing successful 165 166 */ 166 bool MatrixContainer::ParseMatrix(const char *name, int skiplines, int skipcolumns, int MatrixNr) 167 { 168 ifstream input; 167 bool MatrixContainer::ParseMatrix(std::istream &input, int skiplines, int skipcolumns, int MatrixNr) 168 { 169 169 stringstream line; 170 170 string token; 171 171 char filename[1023]; 172 172 173 input.open(name, ios::in);174 173 //Log() << Verbose(1) << "Opening " << name << " ... " << input << endl; 175 if (input == NULL) {176 DoeLog(1) && (eLog()<< Verbose(1) << endl << "MatrixContainer::ParseMatrix: Unable to open " << name << ", is the directory correct?" << endl);174 if (input.bad()) { 175 DoeLog(1) && (eLog()<< Verbose(1) << endl << "MatrixContainer::ParseMatrix: Unable to parse istream." << endl); 177 176 //performCriticalExit(); 178 177 return false; … … 190 189 for(int k=skipcolumns;k--;) 191 190 line >> Header[MatrixNr]; 192 //Log() << Verbose(0) << line.str() << endl;191 Log() << Verbose(0) << line.str() << endl; 193 192 ColumnCounter[MatrixNr]=0; 194 193 while ( getline(line,token, '\t') ) { … … 196 195 ColumnCounter[MatrixNr]++; 197 196 } 198 //Log() << Verbose(0) << line.str() << endl;199 //Log() << Verbose(1) << "ColumnCounter[" << MatrixNr << "]: " << ColumnCounter[MatrixNr] << "." << endl;197 Log() << Verbose(0) << line.str() << endl; 198 Log() << Verbose(1) << "ColumnCounter[" << MatrixNr << "]: " << ColumnCounter[MatrixNr] << "." << endl; 200 199 if (ColumnCounter[MatrixNr] == 0) { 201 DoeLog(0) && (eLog()<< Verbose(0) << "ColumnCounter[" << MatrixNr << "]: " << ColumnCounter[MatrixNr] << " from file " << name << ", this is probably an error!" << endl);200 DoeLog(0) && (eLog()<< Verbose(0) << "ColumnCounter[" << MatrixNr << "]: " << ColumnCounter[MatrixNr] << " from ostream." << endl); 202 201 performCriticalExit(); 203 202 } … … 207 206 while (!input.eof()) { 208 207 input.getline(filename, 1023); 209 //Log() << Verbose(0) << "Comparing: " << strncmp(filename,"MeanForce",9) << endl;208 Log() << Verbose(0) << "Comparing: " << strncmp(filename,"MeanForce",9) << endl; 210 209 RowCounter[MatrixNr]++; // then line was not last MeanForce 211 210 if (strncmp(filename,"MeanForce", 9) == 0) { … … 213 212 } 214 213 } 215 //Log() << Verbose(1) << "RowCounter[" << MatrixNr << "]: " << RowCounter[MatrixNr] << " from file " << name << "." << endl;214 Log() << Verbose(1) << "RowCounter[" << MatrixNr << "]: " << RowCounter[MatrixNr] << " from input stream." << endl; 216 215 if (RowCounter[MatrixNr] == 0) { 217 DoeLog(0) && (eLog()<< Verbose(0) << "RowCounter[" << MatrixNr << "]: " << RowCounter[MatrixNr] << " from file " << name << ", this is probably an error!" << endl);216 DoeLog(0) && (eLog()<< Verbose(0) << "RowCounter[" << MatrixNr << "]: " << RowCounter[MatrixNr] << " from input stream." << endl); 218 217 performCriticalExit(); 219 218 } … … 233 232 input.getline(Header[MatrixNr], 1023); // skip header 234 233 line.str(Header[MatrixNr]); 234 Log() << Verbose(0) << "Header: " << line.str() << endl; 235 235 for(int k=skipcolumns;k--;) // skip columns in header too 236 236 line >> filename; … … 245 245 input.getline(filename, 1023); 246 246 stringstream lines(filename); 247 //Log() << Verbose(2) << "Matrix at level " << j << ":";// << filename << endl;247 Log() << Verbose(2) << "Matrix at level " << j << ":";// << filename << endl; 248 248 for(int k=skipcolumns;k--;) 249 249 lines >> filename; 250 250 for(int k=0;(k<ColumnCounter[MatrixNr]) && (!lines.eof());k++) { 251 251 lines >> Matrix[MatrixNr][j][k]; 252 //Log() << Verbose(1) << " " << setprecision(2) << Matrix[MatrixNr][j][k] << endl;252 Log() << Verbose(1) << " " << setprecision(2) << Matrix[MatrixNr][j][k] << endl; 253 253 } 254 254 if (Matrix[MatrixNr][ RowCounter[MatrixNr] ] != NULL) … … 261 261 DoeLog(1) && (eLog()<< Verbose(1) << "Matrix nr. " << MatrixNr << " has column and row count of (" << ColumnCounter[MatrixNr] << "," << RowCounter[MatrixNr] << "), could not allocate nor parse!" << endl); 262 262 } 263 input.close();264 263 return true; 265 264 }; … … 327 326 file.str(" "); 328 327 file << name << FRAGMENTPREFIX << FragmentNumber << prefix << suffix; 329 if (!ParseMatrix(file.str().c_str(), skiplines, skipcolumns, i)) 328 std::ifstream input(file.str().c_str()); 329 if (!ParseMatrix(input, skiplines, skipcolumns, i)) { 330 input.close(); 330 331 return false; 332 } 333 input.close(); 331 334 delete[](FragmentNumber); 332 335 } … … 628 631 strncat(filename, prefix, 1023-strlen(filename)); 629 632 strncat(filename, suffix.c_str(), 1023-strlen(filename)); 630 ParseMatrix(filename, skiplines, skipcolumns, MatrixCounter); 633 std::ifstream input(filename); 634 ParseMatrix(input, skiplines, skipcolumns, MatrixCounter); 635 input.close(); 631 636 } 632 637 return status; … … 764 769 strncat(filename, prefix, 1023-strlen(filename)); 765 770 strncat(filename, suffix.c_str(), 1023-strlen(filename)); 766 ParseMatrix(filename, skiplines, skipcolumns, MatrixCounter); 771 std::ifstream input(filename); 772 ParseMatrix(input, skiplines, skipcolumns, MatrixCounter); 773 input.close(); 767 774 } 768 775 … … 992 999 strncat(filename, prefix, 1023-strlen(filename)); 993 1000 strncat(filename, suffix.c_str(), 1023-strlen(filename)); 994 ParseMatrix(filename, skiplines, skipcolumns, MatrixCounter); 1001 std::ifstream input(filename); 1002 ParseMatrix(input, skiplines, skipcolumns, MatrixCounter); 1003 input.close(); 995 1004 } 996 1005 -
src/parser.hpp
rc14c78 r0bfe73 86 86 87 87 bool InitialiseIndices(class MatrixContainer *Matrix = NULL); 88 bool ParseMatrix( const char *name, int skiplines, int skipcolumns, int MatrixNr);88 bool ParseMatrix(std::istream &input, int skiplines, int skipcolumns, int MatrixNr); 89 89 virtual bool ParseFragmentMatrix(const char *name, const char *prefix, string suffix, int skiplines, int skipcolumns); 90 90 bool AllocateMatrix(char **GivenHeader, int MCounter, int *RCounter, int *CCounter); -
src/periodentafel.cpp
rc14c78 r0bfe73 429 429 input >> elements[Z]->Electronegativity; 430 430 input >> ws; 431 DoLog(1) && (Log() << Verbose(1)432 << "Element " << Z << " has " << FindElement(Z)->Electronegativity << " valence electrons." << endl);431 //DoLog(1) && (Log() << Verbose(1) 432 // << "Element " << Z << " has " << FindElement(Z)->Electronegativity << " valence electrons." << endl); 433 433 } 434 434 return true; -
src/unittests/AnalysisBondsUnitTest.cpp
rc14c78 r0bfe73 92 92 CPPUNIT_ASSERT_EQUAL( TestMolecule->getAtomCount(), 5 ); 93 93 94 // create a small file with table 95 filename = new string("test.dat"); 96 CPPUNIT_ASSERT(filename != NULL && "could not create string"); 97 ofstream test(filename->c_str()); 94 // create stream with table 95 std::stringstream test; 98 96 test << ".\tH\tHe\tLi\tBe\tB\tC\n"; 99 97 test << "H\t1.\t1.\t1.\t1.\t1.\t1.2\n"; … … 103 101 test << "B\t1.\t1.\t1.\t1.\t1.\t1.\n"; 104 102 test << "C\t1.2\t1.\t1.\t1.\t1.\t1.5\n"; 105 test.close();106 103 BG = new BondGraph(true); 107 104 CPPUNIT_ASSERT(BG != NULL && "could not create BondGraph"); 108 105 109 CPPUNIT_ASSERT_EQUAL( true , BG->LoadBondLengthTable( *filename) );106 CPPUNIT_ASSERT_EQUAL( true , BG->LoadBondLengthTable(test) ); 110 107 CPPUNIT_ASSERT_EQUAL( 1., BG->GetBondLength(0,0) ); 111 108 CPPUNIT_ASSERT_EQUAL( 1.2, BG->GetBondLength(0,5) ); … … 119 116 { 120 117 // remove the file 121 remove(filename->c_str());122 delete(filename);123 118 delete(BG); 124 119 -
src/unittests/BondGraphUnitTest.cpp
rc14c78 r0bfe73 92 92 CPPUNIT_ASSERT_EQUAL( TestMolecule->getAtomCount(), 4 ); 93 93 94 // create a small file with table 95 dummyname = new string("dummy.dat"); 96 CPPUNIT_ASSERT(dummyname != NULL && "could not create string"); 97 filename = new string("test.dat"); 98 CPPUNIT_ASSERT(filename != NULL && "could not create string"); 99 ofstream test(filename->c_str()); 94 // create stream with table 100 95 test << ".\tH\tHe\tLi\tBe\tB\tC\n"; 101 96 test << "H\t1.\t1.\t1.\t1.\t1.\t1.2\n"; … … 105 100 test << "B\t1.\t1.\t1.\t1.\t1.\t1.\n"; 106 101 test << "C\t1.2\t1.\t1.\t1.\t1.\t1.5\n"; 107 test.close(); 102 // created bad stream (i.e. non-present file) 103 dummy.setstate(ios::eofbit); 104 CPPUNIT_ASSERT(dummy.eof()); 108 105 BG = new BondGraph(true); 109 106 CPPUNIT_ASSERT(BG != NULL && "could not create BondGraph"); … … 114 111 { 115 112 // remove the file 116 remove(filename->c_str());117 delete(filename);118 delete(dummyname);119 113 delete(BG); 120 114 … … 139 133 void BondGraphTest::LoadTableTest() 140 134 { 141 CPPUNIT_ASSERT_EQUAL( true , BG->LoadBondLengthTable( *filename) );135 CPPUNIT_ASSERT_EQUAL( true , BG->LoadBondLengthTable(test) ); 142 136 CPPUNIT_ASSERT_EQUAL( 1., BG->GetBondLength(0,0) ); 143 137 CPPUNIT_ASSERT_EQUAL( 1.2, BG->GetBondLength(0,5) ); … … 152 146 molecule::iterator Runner = TestMolecule->begin(); 153 147 Runner++; 154 CPPUNIT_ASSERT_EQUAL( true , BG->LoadBondLengthTable( *filename) );148 CPPUNIT_ASSERT_EQUAL( true , BG->LoadBondLengthTable(test) ); 155 149 CPPUNIT_ASSERT_EQUAL( true , BG->ConstructBondGraph(TestMolecule) ); 156 150 CPPUNIT_ASSERT_EQUAL( true , (*Walker)->IsBondedTo((*Runner)) ); … … 165 159 //atom *Runner = TestMolecule->end->previous; 166 160 //CPPUNIT_ASSERT( TestMolecule->end != Walker ); 167 CPPUNIT_ASSERT_EQUAL( false , BG->LoadBondLengthTable( *dummyname) );161 CPPUNIT_ASSERT_EQUAL( false , BG->LoadBondLengthTable(dummy) ); 168 162 CPPUNIT_ASSERT_EQUAL( true , BG->ConstructBondGraph(TestMolecule) ); 169 163 -
src/unittests/BondGraphUnitTest.hpp
rc14c78 r0bfe73 49 49 50 50 BondGraph *BG; 51 st ring *filename;52 st ring *dummyname;51 std::stringstream dummy; 52 std::stringstream test; 53 53 }; 54 54 -
src/unittests/FormulaUnitTest.cpp
rc14c78 r0bfe73 246 246 } 247 247 { 248 CPPUNIT_ASSERT_THROW(Formula formula("74107"), ParseError);249 CPPUNIT_ASSERT_THROW(Formula formula(" "), ParseError);250 CPPUNIT_ASSERT_THROW(Formula formula("nAcL"), ParseError);251 CPPUNIT_ASSERT_THROW(Formula formula("NAcL"), ParseError);252 CPPUNIT_ASSERT_THROW(Formula formula("Na Cl"), ParseError);253 CPPUNIT_ASSERT_THROW(Formula formula("1NaCl"), ParseError);254 CPPUNIT_ASSERT_THROW(Formula formula("Mag"), ParseError);255 CPPUNIT_ASSERT_THROW(Formula formula("AgCl)"), ParseError);256 CPPUNIT_ASSERT_THROW(Formula formula("(Na"), ParseError);257 CPPUNIT_ASSERT_THROW(Formula formula("(Mag)"), ParseError);258 CPPUNIT_ASSERT_THROW(Formula formula("MgCl2)"), ParseError);259 CPPUNIT_ASSERT_THROW(Formula formula("((MgCl2)"), ParseError);260 CPPUNIT_ASSERT_THROW(Formula formula("(MgCl2))"), ParseError);261 CPPUNIT_ASSERT_THROW(Formula formula("(MgCl2]"), ParseError);262 CPPUNIT_ASSERT_THROW(Formula formula("[MgCl2)"), ParseError);263 CPPUNIT_ASSERT_THROW(Formula formula("N(aCl"), ParseError);264 CPPUNIT_ASSERT_THROW(Formula formula("Na()Cl"), ParseError);248 CPPUNIT_ASSERT_THROW(Formula formula("74107"),FormulaStringParseException); 249 CPPUNIT_ASSERT_THROW(Formula formula(" "),FormulaStringParseException); 250 CPPUNIT_ASSERT_THROW(Formula formula("nAcL"),FormulaStringParseException); 251 CPPUNIT_ASSERT_THROW(Formula formula("NAcL"),FormulaStringParseException); 252 CPPUNIT_ASSERT_THROW(Formula formula("Na Cl"),FormulaStringParseException); 253 CPPUNIT_ASSERT_THROW(Formula formula("1NaCl"),FormulaStringParseException); 254 CPPUNIT_ASSERT_THROW(Formula formula("Mag"),FormulaStringParseException); 255 CPPUNIT_ASSERT_THROW(Formula formula("AgCl)"),FormulaStringParseException); 256 CPPUNIT_ASSERT_THROW(Formula formula("(Na"),FormulaStringParseException); 257 CPPUNIT_ASSERT_THROW(Formula formula("(Mag)"),FormulaStringParseException); 258 CPPUNIT_ASSERT_THROW(Formula formula("MgCl2)"),FormulaStringParseException); 259 CPPUNIT_ASSERT_THROW(Formula formula("((MgCl2)"),FormulaStringParseException); 260 CPPUNIT_ASSERT_THROW(Formula formula("(MgCl2))"),FormulaStringParseException); 261 CPPUNIT_ASSERT_THROW(Formula formula("(MgCl2]"),FormulaStringParseException); 262 CPPUNIT_ASSERT_THROW(Formula formula("[MgCl2)"),FormulaStringParseException); 263 CPPUNIT_ASSERT_THROW(Formula formula("N(aCl"),FormulaStringParseException); 264 CPPUNIT_ASSERT_THROW(Formula formula("Na()Cl"),FormulaStringParseException); 265 265 } 266 266 -
src/unittests/Makefile.am
rc14c78 r0bfe73 77 77 ../UIElements/Menu/unittests/MenuDescriptionUnitTest.cpp \ 78 78 ../Descriptors/unittests/MoleculeDescriptorUnitTest.cpp \ 79 ../Parser/unittests/ParserCommonUnitTest.cpp \ 79 ../Parser/unittests/ParserMpqcUnitTest.cpp \ 80 ../Parser/unittests/ParserPcpUnitTest.cpp \ 81 ../Parser/unittests/ParserPdbUnitTest.cpp \ 80 82 ../Parser/unittests/ParserTremoloUnitTest.cpp \ 83 ../Parser/unittests/ParserXyzUnitTest.cpp \ 81 84 PeriodentafelUnitTest.cpp \ 82 85 ../LinearAlgebra/unittests/PlaneUnitTest.cpp \ … … 111 114 ../UIElements/Menu/unittests/MenuDescriptionUnitTest.hpp \ 112 115 ../Descriptors/unittests/MoleculeDescriptorUnitTest.hpp \ 113 ../Parser/unittests/ParserCommonUnitTest.hpp \ 116 ../Parser/unittests/ParserMpqcUnitTest.hpp \ 117 ../Parser/unittests/ParserPcpUnitTest.hpp \ 118 ../Parser/unittests/ParserPdbUnitTest.hpp \ 114 119 ../Parser/unittests/ParserTremoloUnitTest.hpp \ 120 ../Parser/unittests/ParserXyzUnitTest.hpp \ 115 121 PeriodentafelUnitTest.hpp \ 116 122 ../LinearAlgebra/unittests/PlaneUnitTest.hpp \ -
src/unittests/SubspaceFactorizerUnitTest.cpp
rc14c78 r0bfe73 39 39 #include "LinearAlgebra/VectorContent.hpp" 40 40 41 #include "RandomNumbers/RandomNumberGeneratorFactory.hpp" 42 #include "RandomNumbers/RandomNumberGenerator.hpp" 43 41 44 #include "SubspaceFactorizerUnitTest.hpp" 42 45 … … 49 52 50 53 void SubspaceFactorizerUnittest::setUp(){ 54 // RandomNumberGenerator &random = RandomNumberGeneratorFactory::getInstance().makeRandomNumberGenerator(); 55 // const double rng_min = rng->min(); 56 // const double rng_max = rng->max(); 51 57 matrix = new MatrixContent(matrixdimension,matrixdimension); 52 58 matrix->setZero(); 53 59 for (size_t i=0; i<matrixdimension ; i++) { 54 60 for (size_t j=0; j<= i; ++j) { 55 //const double value = 10. * rand () / (double)RAND_MAX;61 //const double value = 10. * random() / (rng_max-rng_min); 56 62 //const double value = i==j ? 2. : 1.; 57 63 if (i==j) -
tests/Makefile.am
rc14c78 r0bfe73 1 SUBDIRS = CodeChecks regression Tesselations1 SUBDIRS = CodeChecks regression Fragmentations Tesselations 2 2 -
tests/Tesselations/Makefile.am
rc14c78 r0bfe73 16 16 17 17 # heptan.test 18 19 ${TESTS}: defs -
tests/Tesselations/defs.in
rc14c78 r0bfe73 30 30 CLEANUP="$CLEANUP; rm -rf $testdir" 31 31 cp -r @srcdir@/$testdir/* $testdir/ 32 CLEANUP="rm -f stderr stdout diffstderr diffstdout; cd ..;$CLEANUP"32 CLEANUP="rm -f stderr stdout diffstderr diffstdout; $CLEANUP" 33 33 CLEANUP="rm -f *.conf*; rm -f NonConvexEnvelope*; rm -f ${testdir}.xyz; rm -f ${testdir}.dbond; $CLEANUP" 34 34 fi … … 36 36 # debug runs should keep results 37 37 if $DEBUG; then :; else 38 trap "eval \"$CLEANUP\""0 1 2 13 1538 trap 'eval "$CLEANUP"' 0 1 2 13 15 39 39 fi 40 40 … … 52 52 exitcode=0 53 53 cd $testdir/$RADIUS 54 #echo "Current dir is `pwd`, calling $MOLECUILDER $mol.conf -e $exec_prefix -p ../$mol.xyz -N $RADIUS $FILENAME."54 echo "Current dir is `pwd`, calling $MOLECUILDER $mol.conf -e $exec_prefix -p ../$mol.xyz -N $RADIUS $FILENAME." 55 55 if [ -e $mol.dbond ]; then 56 56 $MOLECUILDER -i ../$mol.xyz -A $mol.dbond --select-molecule-by-id 0 -N $RADIUS --nonconvex-file $FILENAME 2>stderr >stdout || exitcode=$? … … 58 58 $MOLECUILDER -i ../$mol.xyz --select-molecule-by-id 0 -N $RADIUS --nonconvex-file $FILENAME 2>stderr >stdout || exitcode=$? 59 59 fi 60 #echo "Molecuilder done with exitcode $exitcode."60 echo "Molecuilder done with exitcode $exitcode." 61 61 cd ../.. 62 #cat stderr 63 #cat stdout 64 grep -E "^[0-9]* [0-9]* [0-9]*$" @srcdir@/$mol/$2/${FILENAME}-$mol.dat | sort -n >$testdir/$RADIUS/reference-triangles.dat 65 grep -E "^[0-9]* [0-9]* [0-9]*$" $testdir/$RADIUS/${FILENAME}.dat | sort -n >$testdir/$RADIUS/new-triangles.dat 66 diff $testdir/$RADIUS/reference-triangles.dat $testdir/$RADIUS/new-triangles.dat 2>$testdir/$RADIUS/diffstderr >$testdir/$RADIUS/diffstdout || exitcode=$? 67 #echo "Diff done with exitcode $exitcode." 68 #cat diffstderr 69 #cat diffstdout 70 test $exitcode = $expected_exitcode || exit 1 62 grep -E "^[0-9]* [0-9]* [0-9]*$" @srcdir@/$mol/$2/${FILENAME}-$mol.dat | sort -n >$testdir/$RADIUS/reference-triangles.dat 63 grep -E "^[0-9]* [0-9]* [0-9]*$" $testdir/$RADIUS/${FILENAME}.dat | sort -n >$testdir/$RADIUS/new-triangles.dat 64 diff $testdir/$RADIUS/reference-triangles.dat $testdir/$RADIUS/new-triangles.dat 2>$testdir/$RADIUS/diffstderr >$testdir/$RADIUS/diffstdout || exitcode=$? 65 66 if test $exitcode = $expected_exitcode; then 67 : 68 else 69 CLEANUP= 70 exit 1 71 fi 71 72 } 72 73 -
tests/regression/Analysis/PrincipalAxisSystem/testsuite-analysis-principal-axis-system.at
rc14c78 r0bfe73 1 ### 5.principal axis system1 ### principal axis system 2 2 3 3 AT_SETUP([Analysis - Principal Axis System]) -
tests/regression/Analysis/testsuite-analysis.at
rc14c78 r0bfe73 1 1 AT_BANNER([MoleCuilder - Analysis]) 2 2 3 # 1. & 2.pair correlation analysis4 m4_include(Analysis/ testsuite-analysis-pair-correlation.at)3 # pair correlation analysis 4 m4_include(Analysis/PairCorrelation/testsuite-analysis-pair-correlation.at) 5 5 6 # 3. pair correlation analysis to point7 m4_include(Analysis/ testsuite-analysis-point-correlation.at)6 # pair correlation analysis - range test 7 m4_include(Analysis/PairCorrelation-RangeTest/testsuite-analysis-pair-correlation-range-test.at) 8 8 9 # 4. pair correlation analysis to surface10 m4_include(Analysis/ testsuite-analysis-surface-correlation.at)9 # pair correlation analysis to point 10 m4_include(Analysis/PointCorrelation/testsuite-analysis-point-correlation.at) 11 11 12 # 5. principal axis system 12 # pair correlation analysis to surface 13 m4_include(Analysis/SurfaceCorrelation/testsuite-analysis-surface-correlation.at) 14 15 # principal axis system 13 16 m4_include(Analysis/PrincipalAxisSystem/testsuite-analysis-principal-axis-system.at) 14 17 15 # 6.angular dipole correlation - empty16 m4_include(Analysis/ testsuite-analysis-angular-dipole-correlation-empty.at)18 # angular dipole correlation - empty 19 m4_include(Analysis/AngularDipoleCorrelation-Empty/testsuite-analysis-angular-dipole-correlation-empty.at) 17 20 18 # 7. angular dipole correlation - discrete angles 19 m4_include(Analysis/testsuite-analysis-angular-dipole-correlation-discrete-angles.at) 20 21 # 8. angular dipole correlation - random distribution 22 m4_include(Analysis/testsuite-analysis-angular-dipole-correlation-random-distribution.at) 21 # angular dipole correlation - discrete angles 22 m4_include(Analysis/AngularDipoleCorrelation-DiscreteAngles/testsuite-analysis-angular-dipole-correlation-discrete-angles.at) -
tests/regression/Filling/testsuite-filling.at
rc14c78 r0bfe73 1 1 AT_BANNER([MoleCuilder - Filling in molecules]) 2 2 3 # 1.filling box4 m4_include(Filling/ testsuite-fill-with-molecule.at)3 # filling box 4 m4_include(Filling/FillWithMolecule/testsuite-fill-with-molecule.at) 5 5 6 # 2.suspend in water with certain density7 m4_include(Filling/ testsuite-suspend-in-water.at)6 # suspend in water with certain density 7 m4_include(Filling/SuspendInWater/testsuite-suspend-in-water.at) 8 8 9 # 3.filling box10 m4_include(Filling/ testsuite-fill-void-with-molecule.at)9 # filling box 10 m4_include(Filling/FillVoidWithMolecule/testsuite-fill-void-with-molecule.at) -
tests/regression/Makefile.am
rc14c78 r0bfe73 6 6 molecuider.in \ 7 7 Analysis \ 8 Atoms \ 8 9 Domain \ 9 10 Filling \ … … 11 12 Graph \ 12 13 Molecules \ 14 Options \ 15 Parser \ 13 16 RandomNumbers \ 14 17 Selection \ 15 Simple_configuration \16 18 Tesselation 17 19 TESTSUITE = $(srcdir)/testsuite 18 20 19 21 TESTSCRIPTS = \ 22 $(srcdir)/Atoms/testsuite-atoms.at \ 23 $(srcdir)/Atoms/Add/testsuite-atoms-add.at \ 24 $(srcdir)/Atoms/ChangeElement/testsuite-atoms-change-element.at \ 25 $(srcdir)/Atoms/Remove/testsuite-atoms-remove.at \ 26 $(srcdir)/Atoms/RemoveInsideSphere/testsuite-atoms-remove-inside-sphere.at \ 27 $(srcdir)/Atoms/RemoveInsideCuboid/testsuite-atoms-remove-inside-cuboid.at \ 28 $(srcdir)/Atoms/Translation/testsuite-atoms-translation.at \ 20 29 $(srcdir)/Analysis/testsuite-analysis.at \ 21 $(srcdir)/Analysis/testsuite-analysis-pair-correlation.at \ 22 $(srcdir)/Analysis/testsuite-analysis-point-correlation.at \ 23 $(srcdir)/Analysis/testsuite-analysis-surface-correlation.at \ 30 $(srcdir)/Analysis/PairCorrelation/testsuite-analysis-pair-correlation.at \ 31 $(srcdir)/Analysis/PairCorrelation-RangeTest/testsuite-analysis-pair-correlation-range-test.at \ 32 $(srcdir)/Analysis/PointCorrelation/testsuite-analysis-point-correlation.at \ 33 $(srcdir)/Analysis/SurfaceCorrelation/testsuite-analysis-surface-correlation.at \ 24 34 $(srcdir)/Analysis/PrincipalAxisSystem/testsuite-analysis-principal-axis-system.at \ 25 $(srcdir)/Analysis/testsuite-analysis-angular-dipole-correlation-empty.at \ 26 $(srcdir)/Analysis/testsuite-analysis-angular-dipole-correlation-discrete-angles.at \ 27 $(srcdir)/Analysis/testsuite-analysis-angular-dipole-correlation-random-distribution.at \ 28 $(srcdir)/testsuite-domain.at \ 35 $(srcdir)/Analysis/AngularDipoleCorrelation-Empty/testsuite-analysis-angular-dipole-correlation-empty.at \ 36 $(srcdir)/Analysis/AngularDipoleCorrelation-DiscreteAngles/testsuite-analysis-angular-dipole-correlation-discrete-angles.at \ 37 $(srcdir)/Domain/testsuite-domain.at \ 38 $(srcdir)/Domain/ChangeBox/testsuite-domain-change-box.at \ 39 $(srcdir)/Domain/CenterInBox/testsuite-domain-center-in-box.at \ 40 $(srcdir)/Domain/AddEmptyBoundary/testsuite-domain-add-empty-boundary.at \ 41 $(srcdir)/Domain/CenterOnEdge/testsuite-domain-center-on-edge.at \ 42 $(srcdir)/Domain/ScaleBox/testsuite-domain-scale-box.at \ 43 $(srcdir)/Domain/RepeatBox/testsuite-domain-repeat-box.at \ 29 44 $(srcdir)/Filling/testsuite-filling.at \ 30 $(srcdir)/Filling/testsuite-fill-with-molecule.at \ 31 $(srcdir)/Filling/testsuite-suspend-in-water.at \ 32 $(srcdir)/Filling/testsuite-fill-void-with-molecule.at \ 33 $(srcdir)/testsuite-fragmentation.at \ 34 $(srcdir)/testsuite-graph.at \ 35 $(srcdir)/testsuite-molecules.at \ 36 $(srcdir)/testsuite-simple_configuration.at \ 45 $(srcdir)/Filling/FillWithMolecule/testsuite-fill-with-molecule.at \ 46 $(srcdir)/Filling/SuspendInWater/testsuite-suspend-in-water.at \ 47 $(srcdir)/Filling/FillVoidWithMolecule/testsuite-fill-void-with-molecule.at \ 48 $(srcdir)/Fragmentation/testsuite-fragmentation.at \ 49 $(srcdir)/Fragmentation/FragmentMolecule/testsuite-fragmentation-fragment-molecule.at \ 50 $(srcdir)/Fragmentation/FragmentMolecule-MaxOrder/testsuite-fragmentation-fragment-molecule-maxorder.at \ 51 $(srcdir)/Graph/testsuite-graph.at \ 52 $(srcdir)/Graph/DepthFirstSearch/testsuite-graph-depth-first-search.at \ 53 $(srcdir)/Graph/SubgraphDissection/testsuite-graph-subgraph-dissection.at \ 54 $(srcdir)/Molecules/testsuite-molecules.at \ 55 $(srcdir)/Molecules/BondFile/testsuite-molecules-bond-file.at \ 56 $(srcdir)/Molecules/SaveAdjacency/testsuite-molecules-save-adjacency.at \ 57 $(srcdir)/Molecules/SaveBonds/testsuite-molecules-save-bonds.at \ 58 $(srcdir)/Molecules/SaveTemperature/testsuite-molecules-save-temperature.at \ 59 $(srcdir)/Molecules/LinearInterpolationofTrajectories/testsuite-molecules-linear-interpolation-of-trajectories.at \ 60 $(srcdir)/Molecules/VerletIntegration/testsuite-molecules-verlet-integration.at \ 61 $(srcdir)/Molecules/Translation/testsuite-molecules-translation.at \ 62 $(srcdir)/Molecules/Translation-Periodic/testsuite-molecules-translation-periodic.at \ 63 $(srcdir)/Molecules/RotateToPrincipalAxisSystem/testsuite-molecules-rotate-to-principal-axis-system.at \ 64 $(srcdir)/Molecules/RotateAroundOrigin/testsuite-molecules-rotate-around-origin.at \ 65 $(srcdir)/Molecules/RotateAroundSelf/testsuite-molecules-rotate-around-self.at \ 66 $(srcdir)/Molecules/Copy/testsuite-molecules-copy-molecule.at \ 67 $(srcdir)/Options/testsuite-options.at \ 68 $(srcdir)/Options/Verbosity/testsuite-options-verbosity.at \ 69 $(srcdir)/Options/Warranty/testsuite-options-warranty.at \ 70 $(srcdir)/Options/Help/testsuite-options-help.at \ 71 $(srcdir)/Options/ElementsDb/testsuite-options-no-elements-db.at \ 72 $(srcdir)/Options/ElementsDb/testsuite-options-elements-db.at \ 73 $(srcdir)/Options/BondLengthTable/testsuite-options-bond-length-table.at \ 74 $(srcdir)/Options/FastParsing/testsuite-options-fast-parsing.at \ 75 $(srcdir)/Options/SetDefaultName/testsuite-options-set-default-name.at \ 76 $(srcdir)/Options/Empty/testsuite-options-empty-configs.at \ 77 $(srcdir)/Options/InvalidCommands/testsuite-options-invalid-commands.at \ 78 $(srcdir)/Parser/testsuite-parser.at \ 79 $(srcdir)/Parser/Mpqc/testsuite-parser-mpqc.at \ 80 $(srcdir)/Parser/Mpqc-SetParameters/testsuite-parser-mpqc-set-parameters.at \ 81 $(srcdir)/Parser/Pcp/testsuite-parser-pcp.at \ 82 $(srcdir)/Parser/Pdb/testsuite-parser-pdb.at \ 83 $(srcdir)/Parser/Tremolo/testsuite-parser-tremolo.at \ 84 $(srcdir)/Parser/Xyz/testsuite-parser-xyz.at \ 37 85 $(srcdir)/RandomNumbers/testsuite-randomnumbers.at \ 38 86 $(srcdir)/RandomNumbers/Distribution/testsuite-set-random-number-distribution.at \ 39 87 $(srcdir)/RandomNumbers/Engine/testsuite-set-random-number-engine.at \ 40 88 $(srcdir)/Selection/testsuite-selection.at \ 41 $(srcdir)/Selection/Atoms/testsuite-selection-all-atoms.at \ 42 $(srcdir)/Selection/Atoms/testsuite-selection-atoms-by-element.at \ 43 $(srcdir)/Selection/Atoms/testsuite-selection-atom-by-id.at \ 44 $(srcdir)/Selection/Atoms/testsuite-selection-atoms-inside-cuboid.at \ 45 $(srcdir)/Selection/Atoms/testsuite-selection-atoms-inside-sphere.at \ 46 $(srcdir)/Selection/Atoms/testsuite-selection-atoms-of-molecule.at \ 47 $(srcdir)/Selection/Atoms/testsuite-selection-clear-atoms.at \ 48 $(srcdir)/Selection/Molecules/testsuite-selection-all-molecules.at \ 49 $(srcdir)/Selection/Molecules/testsuite-selection-clear-molecules.at \ 50 $(srcdir)/Selection/Molecules/testsuite-selection-molecules-by-formula.at \ 51 $(srcdir)/Selection/Molecules/testsuite-selection-molecule-by-id.at \ 52 $(srcdir)/Selection/Molecules/testsuite-selection-molecules-by-name.at \ 53 $(srcdir)/Selection/Molecules/testsuite-selection-molecules-of-atoms.at \ 54 $(srcdir)/testsuite-specifics.at \ 55 $(srcdir)/testsuite-standard_options.at \ 56 $(srcdir)/testsuite-tesselation.at 89 $(srcdir)/Selection/Atoms/AllAtoms/testsuite-selection-all-atoms.at \ 90 $(srcdir)/Selection/Atoms/AllAtomsOfMolecule/testsuite-selection-all-atoms-of-molecule.at \ 91 $(srcdir)/Selection/Atoms/AtomByElement/testsuite-selection-atoms-by-element.at \ 92 $(srcdir)/Selection/Atoms/AtomById/testsuite-selection-atom-by-id.at \ 93 $(srcdir)/Selection/Atoms/AtomsInsideCuboid/testsuite-selection-atoms-inside-cuboid.at \ 94 $(srcdir)/Selection/Atoms/AtomsInsideSphere/testsuite-selection-atoms-inside-sphere.at \ 95 $(srcdir)/Selection/Atoms/ClearAtoms/testsuite-selection-clear-atoms.at \ 96 $(srcdir)/Selection/Molecules/AllMolecules/testsuite-selection-all-molecules.at \ 97 $(srcdir)/Selection/Molecules/ClearMolecules/testsuite-selection-clear-molecules.at \ 98 $(srcdir)/Selection/Molecules/MoleculeByFormula/testsuite-selection-molecules-by-formula.at \ 99 $(srcdir)/Selection/Molecules/MoleculeById/testsuite-selection-molecule-by-id.at \ 100 $(srcdir)/Selection/Molecules/MoleculeByName/testsuite-selection-molecules-by-name.at \ 101 $(srcdir)/Selection/Molecules/MoleculeOfAtom/testsuite-selection-atoms-molecules.at \ 102 $(srcdir)/Tesselation/testsuite-tesselation.at \ 103 $(srcdir)/Tesselation/NonConvex/testsuite-tesselation-non-convex-envelope.at \ 104 $(srcdir)/Tesselation/Convex/testsuite-tesselation-convex-envelope.at \ 105 $(srcdir)/Tesselation/BigNonConvex/testsuite-tesselation-big-non-convex-envelope.at \ 106 $(srcdir)/Tesselation/BigConvex/testsuite-tesselation-big-convex-envelope.at 57 107 58 108 -
tests/regression/Selection/testsuite-selection.at
rc14c78 r0bfe73 3 3 ### ATOMS #### 4 4 5 # 5. (un)select atoms by element6 m4_include(Selection/Atoms/ testsuite-selection-atoms-by-element.at)5 # (un)select all atoms 6 m4_include(Selection/Atoms/AllAtoms/testsuite-selection-all-atoms.at) 7 7 8 # 6. (un)select atom by id9 m4_include(Selection/Atoms/ testsuite-selection-atom-by-id.at)8 # (un)select all atoms of molecule 9 m4_include(Selection/Atoms/AllAtomsOfMolecule/testsuite-selection-all-atoms-of-molecule.at) 10 10 11 # 1. (un)select all atoms12 m4_include(Selection/Atoms/ testsuite-selection-all-atoms.at)11 # (un)select atoms by element 12 m4_include(Selection/Atoms/AtomByElement/testsuite-selection-atoms-by-element.at) 13 13 14 # 2. (un)select all atoms inside cuboid15 m4_include(Selection/Atoms/ testsuite-selection-atoms-inside-cuboid.at)14 # (un)select atom by id 15 m4_include(Selection/Atoms/AtomById/testsuite-selection-atom-by-id.at) 16 16 17 # 3. (un)select all atoms inside sphere18 m4_include(Selection/Atoms/ testsuite-selection-atoms-inside-sphere.at)17 # (un)select atoms inside cuboid 18 m4_include(Selection/Atoms/AtomsInsideCuboid/testsuite-selection-atoms-inside-cuboid.at) 19 19 20 # 4. (un)select all atoms of molecule21 m4_include(Selection/Atoms/ testsuite-selection-atoms-of-molecule.at)20 # (un)select atoms inside sphere 21 m4_include(Selection/Atoms/AtomsInsideSphere/testsuite-selection-atoms-inside-sphere.at) 22 22 23 # 7.clear atom selection24 m4_include(Selection/Atoms/ testsuite-selection-clear-atoms.at)23 # clear atom selection 24 m4_include(Selection/Atoms/ClearAtoms/testsuite-selection-clear-atoms.at) 25 25 26 26 ### Molecules ### 27 27 28 # 1.(un)select all molecules29 m4_include(Selection/Molecules/ testsuite-selection-all-molecules.at)28 # (un)select all molecules 29 m4_include(Selection/Molecules/AllMolecules/testsuite-selection-all-molecules.at) 30 30 31 # 2.clear molecule selection32 m4_include(Selection/Molecules/ testsuite-selection-clear-molecules.at)31 # clear molecule selection 32 m4_include(Selection/Molecules/ClearMolecules/testsuite-selection-clear-molecules.at) 33 33 34 # 3.(un)select molecules by formula35 m4_include(Selection/Molecules/ testsuite-selection-molecules-by-formula.at)34 # (un)select molecules by formula 35 m4_include(Selection/Molecules/MoleculeByFormula/testsuite-selection-molecules-by-formula.at) 36 36 37 # 4.(un)select molecule by id38 m4_include(Selection/Molecules/ testsuite-selection-molecule-by-id.at)37 # (un)select molecule by id 38 m4_include(Selection/Molecules/MoleculeById/testsuite-selection-molecule-by-id.at) 39 39 40 # 5.(un)select molecule by name41 m4_include(Selection/Molecules/ testsuite-selection-molecules-by-name.at)40 # (un)select molecule by name 41 m4_include(Selection/Molecules/MoleculeByName/testsuite-selection-molecules-by-name.at) 42 42 43 # 6.(un)select molecule from atom selection44 m4_include(Selection/Molecules/ testsuite-selection-molecules-of-atoms.at)43 # (un)select molecule from atom selection 44 m4_include(Selection/Molecules/MoleculeOfAtom/testsuite-selection-atoms-molecules.at) -
tests/regression/testsuite.at
rc14c78 r0bfe73 7 7 AT_TESTED(diff grep egrep fgrep) 8 8 9 # makes functions in CheckCommand.sh available within the tests 10 # This is not yet working due to a bug in autotest (AC_CHECK cannot be used inside diversion) 11 #m4_divert_push([PREPARE_TESTS]) 12 #m4_include([CheckCommand.sh]) 13 #m4_divert_pop([PREPARE_TESTS]) 14 9 15 # Use colored output with new-enough Autotest. 10 16 m4_ifdef([AT_COLOR_TESTS], [AT_COLOR_TESTS]) 11 17 12 m4_include( testsuite-standard_options.at)18 m4_include(Options/testsuite-options.at) 13 19 14 m4_include( testsuite-specifics.at)20 m4_include(Parser/testsuite-parser.at) 15 21 16 m4_include( testsuite-simple_configuration.at)22 m4_include(Atoms/testsuite-atoms.at) 17 23 18 24 m4_include(Selection/testsuite-selection.at) … … 20 26 m4_include(RandomNumbers/testsuite-randomnumbers.at) 21 27 22 m4_include( testsuite-domain.at)28 m4_include(Domain/testsuite-domain.at) 23 29 24 m4_include( testsuite-graph.at)30 m4_include(Graph/testsuite-graph.at) 25 31 26 m4_include( testsuite-molecules.at)32 m4_include(Molecules/testsuite-molecules.at) 27 33 28 m4_include( testsuite-fragmentation.at)34 m4_include(Fragmentation/testsuite-fragmentation.at) 29 35 30 m4_include( testsuite-tesselation.at)36 m4_include(Tesselation/testsuite-tesselation.at) 31 37 32 38 m4_include(Filling/testsuite-filling.at)
Note:
See TracChangeset
for help on using the changeset viewer.