Changeset c1db05 for src/Parser
- Timestamp:
- Oct 10, 2011, 2:27:06 PM (13 years ago)
- Branches:
- Action_Thermostats, Add_AtomRandomPerturbation, Add_FitFragmentPartialChargesAction, Add_RotateAroundBondAction, Add_SelectAtomByNameAction, Added_ParseSaveFragmentResults, AddingActions_SaveParseParticleParameters, Adding_Graph_to_ChangeBondActions, Adding_MD_integration_tests, Adding_ParticleName_to_Atom, Adding_StructOpt_integration_tests, AtomFragments, Automaking_mpqc_open, AutomationFragmentation_failures, Candidate_v1.5.4, Candidate_v1.6.0, Candidate_v1.6.1, ChangeBugEmailaddress, ChangingTestPorts, ChemicalSpaceEvaluator, CombiningParticlePotentialParsing, Combining_Subpackages, Debian_Package_split, Debian_package_split_molecuildergui_only, Disabling_MemDebug, Docu_Python_wait, EmpiricalPotential_contain_HomologyGraph, EmpiricalPotential_contain_HomologyGraph_documentation, Enable_parallel_make_install, Enhance_userguide, Enhanced_StructuralOptimization, Enhanced_StructuralOptimization_continued, Example_ManyWaysToTranslateAtom, Exclude_Hydrogens_annealWithBondGraph, FitPartialCharges_GlobalError, Fix_BoundInBox_CenterInBox_MoleculeActions, Fix_ChargeSampling_PBC, Fix_ChronosMutex, Fix_FitPartialCharges, Fix_FitPotential_needs_atomicnumbers, Fix_ForceAnnealing, Fix_IndependentFragmentGrids, Fix_ParseParticles, Fix_ParseParticles_split_forward_backward_Actions, Fix_PopActions, Fix_QtFragmentList_sorted_selection, Fix_Restrictedkeyset_FragmentMolecule, Fix_StatusMsg, Fix_StepWorldTime_single_argument, Fix_Verbose_Codepatterns, Fix_fitting_potentials, Fixes, ForceAnnealing_goodresults, ForceAnnealing_oldresults, ForceAnnealing_tocheck, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_continued, ForceAnnealing_with_BondGraph_continued_betteresults, ForceAnnealing_with_BondGraph_contraction-expansion, FragmentAction_writes_AtomFragments, FragmentMolecule_checks_bonddegrees, GeometryObjects, Gui_Fixes, Gui_displays_atomic_force_velocity, ImplicitCharges, IndependentFragmentGrids, IndependentFragmentGrids_IndividualZeroInstances, IndependentFragmentGrids_IntegrationTest, IndependentFragmentGrids_Sole_NN_Calculation, JobMarket_RobustOnKillsSegFaults, JobMarket_StableWorkerPool, JobMarket_unresolvable_hostname_fix, MoreRobust_FragmentAutomation, ODR_violation_mpqc_open, PartialCharges_OrthogonalSummation, PdbParser_setsAtomName, PythonUI_with_named_parameters, QtGui_reactivate_TimeChanged_changes, Recreated_GuiChecks, Rewrite_FitPartialCharges, RotateToPrincipalAxisSystem_UndoRedo, SaturateAtoms_findBestMatching, SaturateAtoms_singleDegree, StoppableMakroAction, Subpackage_CodePatterns, Subpackage_JobMarket, Subpackage_LinearAlgebra, Subpackage_levmar, Subpackage_mpqc_open, Subpackage_vmg, Switchable_LogView, ThirdParty_MPQC_rebuilt_buildsystem, TrajectoryDependenant_MaxOrder, TremoloParser_IncreasedPrecision, TremoloParser_MultipleTimesteps, TremoloParser_setsAtomName, Ubuntu_1604_changes, stable
- Children:
- 4151b0
- Parents:
- e611dc
- git-author:
- Frederik Heber <heber@…> (09/06/11 08:45:22)
- git-committer:
- Frederik Heber <heber@…> (10/10/11 14:27:06)
- Location:
- src/Parser
- Files:
-
- 1 added
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/Parser/FormatParser.cpp ¶
re611dc rc1db05 30 30 FormatParser::FormatParser() : 31 31 Observer("FormatParser"), 32 parameters(NULL), 32 33 saveStream(NULL) 33 34 { -
TabularUnified src/Parser/FormatParser.hpp ¶
re611dc rc1db05 17 17 #include "CodePatterns/Observer.hpp" 18 18 #include "ChangeTracker.hpp" 19 #include "FormatParser_Parameters.hpp" 19 20 #include "parser.hpp" 21 20 22 21 23 class atom; … … 25 27 */ 26 28 class FormatParser : public Observer { 29 friend class MoleculeLoadAction; 27 30 public: 28 31 FormatParser(); … … 41 44 virtual void AtomRemoved(atomId_t) {}; 42 45 46 FormatParser_Parameters *parameters; 43 47 private: 48 44 49 std::ostream* saveStream; 45 50 }; -
TabularUnified src/Parser/Makefile.am ¶
re611dc rc1db05 20 20 Parser/ChangeTracker.hpp \ 21 21 Parser/FormatParser.hpp \ 22 Parser/FormatParser_Parameters.hpp \ 22 23 Parser/FormatParserStorage.hpp \ 23 24 Parser/MpqcParser.hpp \ -
TabularUnified src/Parser/MpqcParser.cpp ¶
re611dc rc1db05 25 25 26 26 #include "MpqcParser.hpp" 27 #include "MpqcParser_Parameters.hpp" 27 28 28 29 #include "atom.hpp" … … 42 43 */ 43 44 MpqcParser::MpqcParser() 44 {} 45 { 46 parameters = new MpqcParser_Parameters(); 47 } 45 48 46 49 /** Destructor of MpqcParser. … … 48 51 */ 49 52 MpqcParser::~MpqcParser() 50 {} 53 { 54 delete parameters; 55 } 51 56 52 57 /** Load an MPQC config file into the World. … … 123 128 std::string value(*tok_iter); 124 129 std::stringstream linestream("theory = "+value); 125 linestream >> params;130 linestream >> getParams(); 126 131 } else if (linestring.find("integrals<") != string::npos) { // get theory 127 132 tokenizer tokens(linestring, angularsep); … … 132 137 std::string value(*tok_iter); 133 138 std::stringstream linestream("integration = "+value); 134 linestream >> params;139 linestream >> getParams(); 135 140 } else if ((linestring.find("molecule") == string::npos) && (linestring.find("basis") == string::npos)){ 136 141 // molecule and basis must not be parsed in this section … … 142 147 std::string key; 143 148 whitespacefilter >> ws >> key; 144 if ( params.haveParam(key)) {149 if (getParams().haveParam(key)) { 145 150 std::stringstream linestream(linestring); 146 linestream >> params;151 linestream >> getParams(); 147 152 } else { // unknown keys are simply ignored as long as parser is incomplete 148 153 DoLog(2) && (Log() << Verbose(2) << "INFO: '"+key+"' is unknown and ignored." << std::endl); … … 165 170 if (key == "name") { 166 171 std::stringstream linestream("basis = "+value); 167 linestream >> params;172 linestream >> getParams(); 168 173 } 169 174 } … … 183 188 if (key == "name") { 184 189 std::stringstream linestream("aux_basis = "+value); 185 linestream >> params;190 linestream >> getParams(); 186 191 } 187 192 } … … 227 232 *file << "% Created by MoleCuilder" << endl; 228 233 *file << "mpqc: (" << endl; 229 *file << "\tsavestate = " << params.getString(MpqcParser_Parameters::savestateParam) << endl;230 *file << "\tdo_gradient = " << params.getString(MpqcParser_Parameters::do_gradientParam) << endl;231 if ( params.getBool(MpqcParser_Parameters::hessianParam)) {234 *file << "\tsavestate = " << getParams().getString(MpqcParser_Parameters::savestateParam) << endl; 235 *file << "\tdo_gradient = " << getParams().getString(MpqcParser_Parameters::do_gradientParam) << endl; 236 if (getParams().getBool(MpqcParser_Parameters::hessianParam)) { 232 237 *file << "\tfreq<MolecularFrequencies>: (" << endl; 233 238 *file << "\t\tmolecule=$:molecule" << endl; 234 239 *file << "\t)" << endl; 235 240 } 236 switch ( params.getTheory()) {241 switch (getParams().getTheory()) { 237 242 case MpqcParser_Parameters::CLHF: 238 *file << "\tmole<" << params.getString(MpqcParser_Parameters::theoryParam) << ">: (" << endl;243 *file << "\tmole<" << getParams().getString(MpqcParser_Parameters::theoryParam) << ">: (" << endl; 239 244 *file << "\t\tmolecule = $:molecule" << endl; 240 245 *file << "\t\tbasis = $:basis" << endl; 241 *file << "\t\tmaxiter = " << toString( params.getInt(MpqcParser_Parameters::maxiterParam))<< endl;242 *file << "\t\tmemory = " << toString( params.getInt(MpqcParser_Parameters::memoryParam)) << endl;246 *file << "\t\tmaxiter = " << toString(getParams().getInt(MpqcParser_Parameters::maxiterParam))<< endl; 247 *file << "\t\tmemory = " << toString(getParams().getInt(MpqcParser_Parameters::memoryParam)) << endl; 243 248 *file << "\t)" << endl; 244 249 break; 245 250 case MpqcParser_Parameters::CLKS: 246 *file << "\tmole<" << params.getString(MpqcParser_Parameters::theoryParam) << ">: (" << endl;251 *file << "\tmole<" << getParams().getString(MpqcParser_Parameters::theoryParam) << ">: (" << endl; 247 252 *file << "\t\tfunctional<StdDenFunctional>:(name=B3LYP)" << endl; 248 253 *file << "\t\tmolecule = $:molecule" << endl; 249 254 *file << "\t\tbasis = $:basis" << endl; 250 *file << "\t\tmaxiter = " << toString( params.getInt(MpqcParser_Parameters::maxiterParam))<< endl;251 *file << "\t\tmemory = " << toString( params.getInt(MpqcParser_Parameters::memoryParam)) << endl;255 *file << "\t\tmaxiter = " << toString(getParams().getInt(MpqcParser_Parameters::maxiterParam))<< endl; 256 *file << "\t\tmemory = " << toString(getParams().getInt(MpqcParser_Parameters::memoryParam)) << endl; 252 257 *file << "\t)" << endl; 253 258 break; 254 259 case MpqcParser_Parameters::MBPT2: 255 *file << "\tmole<" << params.getString(MpqcParser_Parameters::theoryParam) << ">: (" << endl;260 *file << "\tmole<" << getParams().getString(MpqcParser_Parameters::theoryParam) << ">: (" << endl; 256 261 *file << "\t\tbasis = $:basis" << endl; 257 262 *file << "\t\tmolecule = $:molecule" << endl; 258 *file << "\t\tmemory = " << toString( params.getInt(MpqcParser_Parameters::memoryParam)) << endl;263 *file << "\t\tmemory = " << toString(getParams().getInt(MpqcParser_Parameters::memoryParam)) << endl; 259 264 *file << "\t\treference<CLHF>: (" << endl; 260 *file << "\t\t\tmaxiter = " << toString( params.getInt(MpqcParser_Parameters::maxiterParam))<< endl;265 *file << "\t\t\tmaxiter = " << toString(getParams().getInt(MpqcParser_Parameters::maxiterParam))<< endl; 261 266 *file << "\t\t\tbasis = $:basis" << endl; 262 267 *file << "\t\t\tmolecule = $:molecule" << endl; 263 *file << "\t\t\tmemory = " << toString( params.getInt(MpqcParser_Parameters::memoryParam)) << endl;268 *file << "\t\t\tmemory = " << toString(getParams().getInt(MpqcParser_Parameters::memoryParam)) << endl; 264 269 *file << "\t\t)" << endl; 265 270 *file << "\t)" << endl; 266 271 break; 267 272 case MpqcParser_Parameters::MBPT2_R12: 268 *file << "\tmole<" << params.getString(MpqcParser_Parameters::theoryParam) << ">: (" << endl;273 *file << "\tmole<" << getParams().getString(MpqcParser_Parameters::theoryParam) << ">: (" << endl; 269 274 *file << "\t\tmolecule = $:molecule" << endl; 270 275 *file << "\t\tbasis = $:basis" << endl; 271 276 *file << "\t\taux_basis = $:abasis" << endl; 272 *file << "\t\tstdapprox = \"" << params.getString(MpqcParser_Parameters::stdapproxParam) << "\"" << endl;273 *file << "\t\tnfzc = " << toString( params.getInt(MpqcParser_Parameters::nfzcParam)) << endl;274 *file << "\t\tmemory = " << toString( params.getInt(MpqcParser_Parameters::memoryParam)) << endl;277 *file << "\t\tstdapprox = \"" << getParams().getString(MpqcParser_Parameters::stdapproxParam) << "\"" << endl; 278 *file << "\t\tnfzc = " << toString(getParams().getInt(MpqcParser_Parameters::nfzcParam)) << endl; 279 *file << "\t\tmemory = " << toString(getParams().getInt(MpqcParser_Parameters::memoryParam)) << endl; 275 280 *file << "\t\tintegrals<IntegralCints>:()" << endl; 276 281 *file << "\t\treference<CLHF>: (" << endl; 277 282 *file << "\t\t\tmolecule = $:molecule" << endl; 278 283 *file << "\t\t\tbasis = $:basis" << endl; 279 *file << "\t\t\tmaxiter = " << toString( params.getInt(MpqcParser_Parameters::maxiterParam)) << endl;280 *file << "\t\t\tmemory = " << toString( params.getInt(MpqcParser_Parameters::memoryParam)) << endl;281 *file << "\t\t\tintegrals<" << params.getString(MpqcParser_Parameters::integrationParam) << ">:()" << endl;284 *file << "\t\t\tmaxiter = " << toString(getParams().getInt(MpqcParser_Parameters::maxiterParam)) << endl; 285 *file << "\t\t\tmemory = " << toString(getParams().getInt(MpqcParser_Parameters::memoryParam)) << endl; 286 *file << "\t\t\tintegrals<" << getParams().getString(MpqcParser_Parameters::integrationParam) << ">:()" << endl; 282 287 *file << "\t\t)" << endl; 283 288 *file << "\t)" << endl; … … 299 304 *file << ")" << endl; 300 305 *file << "basis<GaussianBasisSet>: (" << endl; 301 *file << "\tname = \"" << params.getString(MpqcParser_Parameters::basisParam) << "\"" << endl;306 *file << "\tname = \"" << getParams().getString(MpqcParser_Parameters::basisParam) << "\"" << endl; 302 307 *file << "\tmolecule = $:molecule" << endl; 303 308 *file << ")" << endl; 304 if ( params.getTheory() == MpqcParser_Parameters::MBPT2_R12) {309 if (getParams().getTheory() == MpqcParser_Parameters::MBPT2_R12) { 305 310 *file << "% auxiliary basis set specification" << endl; 306 311 *file << "\tabasis<GaussianBasisSet>: (" << endl; 307 *file << "\tname = \"" << params.getString(MpqcParser_Parameters::aux_basisParam) << "\"" << endl;312 *file << "\tname = \"" << getParams().getString(MpqcParser_Parameters::aux_basisParam) << "\"" << endl; 308 313 *file << "\tmolecule = $:molecule" << endl; 309 314 *file << ")" << endl; … … 312 317 } 313 318 314 MpqcParser_Parameters & MpqcParser::getParams() 315 { 316 return params; 317 } 318 319 -
TabularUnified src/Parser/MpqcParser.hpp ¶
re611dc rc1db05 29 29 30 30 MpqcParser(); 31 ~MpqcParser();31 virtual ~MpqcParser(); 32 32 void load(std::istream* file); 33 33 void save(std::ostream* file, const std::vector<atom *> &atoms); … … 37 37 * @return reference to parameter class 38 38 */ 39 MpqcParser_Parameters & getParams(); 40 41 private: 42 MpqcParser_Parameters params; 39 MpqcParser_Parameters & getParams() { return *static_cast<MpqcParser_Parameters *>(parameters); } 43 40 }; 44 41 -
TabularUnified src/Parser/MpqcParser_Parameters.cpp ¶
re611dc rc1db05 35 35 36 36 MpqcParser_Parameters::MpqcParser_Parameters() 37 { 38 Init(); 39 } 40 41 void MpqcParser_Parameters::Init() 37 42 { 38 43 // add all known basis … … 106 111 107 112 initParameters(); 113 } 114 115 MpqcParser_Parameters::MpqcParser_Parameters(const MpqcParser_Parameters & state) 116 { 117 // init 118 Init(); 119 120 // copy values 121 copyParameters(state); 122 } 123 124 void MpqcParser_Parameters::copyParameters(const MpqcParser_Parameters & state) 125 { 126 appendParameter(hessianParam, state.getBool(hessianParam)); 127 appendParameter(savestateParam, state.getBool(savestateParam)); 128 appendParameter(do_gradientParam, state.getBool(do_gradientParam)); 129 appendParameter(maxiterParam, state.getInt(maxiterParam)); 130 appendParameter(memoryParam, state.getInt(memoryParam)); 131 appendParameter(stdapproxParam, state.getString(stdapproxParam)); 132 appendParameter(nfzcParam, state.getInt(nfzcParam)); 133 appendParameter(basisParam, state.getString(basisParam)); 134 appendParameter(aux_basisParam, state.getString(aux_basisParam)); 135 appendParameter(integrationParam, state.getIntegration()); 136 appendParameter(theoryParam, state.getTheory()); 137 } 138 139 FormatParser_Parameters* MpqcParser_Parameters::clone() const 140 { 141 //LOG(3, "Cloning parameters."); 142 MpqcParser_Parameters *instance = new MpqcParser_Parameters(*this); 143 return instance; 144 } 145 146 void MpqcParser_Parameters::makeClone(const FormatParser_Parameters & _state) 147 { 148 //LOG(3, "Cloning parameters from other instance."); 149 copyParameters(static_cast<const MpqcParser_Parameters &>(_state)); 108 150 } 109 151 … … 279 321 } 280 322 281 enum MpqcParser_Parameters::Parameters MpqcParser_Parameters::getParam(std::string _name) 282 { 283 return ParamLookup[_name]; 284 } 285 286 enum MpqcParser_Parameters::IntegrationMethod MpqcParser_Parameters::getIntegration() 287 { 323 enum MpqcParser_Parameters::Parameters MpqcParser_Parameters::getParam(std::string _name) const 324 { 325 ParamLookupType::const_iterator iter = ParamLookup.find(_name); 326 return iter->second; 327 } 328 329 enum MpqcParser_Parameters::IntegrationMethod MpqcParser_Parameters::getIntegration() const 330 { 331 parameterlist::const_iterator iter = params.find(integrationParam); 288 332 enum IntegrationMethod value; 289 333 // TODO: throw exception instead of eLog() 290 334 // try { 291 value = boost::any_cast<enum IntegrationMethod>( params[integrationParam]);335 value = boost::any_cast<enum IntegrationMethod>(iter->second); 292 336 // } catch(const boost::bad_any_cast &) { 293 337 // DoeLog(0) && (eLog() << Verbose(0) … … 298 342 } 299 343 300 enum MpqcParser_Parameters::Theory MpqcParser_Parameters::getTheory() 301 { 344 enum MpqcParser_Parameters::Theory MpqcParser_Parameters::getTheory() const 345 { 346 parameterlist::const_iterator iter = params.find(theoryParam); 302 347 enum Theory value; 303 348 // TODO: throw exception instead of eLog() 304 349 // try { 305 value = boost::any_cast<enum Theory>( params[theoryParam]);350 value = boost::any_cast<enum Theory>(iter->second); 306 351 // } catch(const boost::bad_any_cast &) { 307 352 // DoeLog(0) && (eLog() << Verbose(0) … … 312 357 } 313 358 314 std::string MpqcParser_Parameters::getString(enum Parameters _param) 359 std::string MpqcParser_Parameters::getString(enum Parameters _param) const 315 360 { 316 361 std::string value; … … 318 363 enum Theory Tindex; 319 364 bool test; 365 parameterlist::const_iterator iter = params.find(_param); 320 366 switch (_param) { 321 367 case hessianParam: 322 368 case savestateParam: 323 369 case do_gradientParam: 324 test = boost::any_cast<bool>( params[_param]);370 test = boost::any_cast<bool>(iter->second); 325 371 if (test) 326 372 value = "yes"; … … 331 377 // TODO: throw exception instead of eLog() 332 378 // try { 333 Iindex = boost::any_cast<enum IntegrationMethod>( params[_param]);379 Iindex = boost::any_cast<enum IntegrationMethod>(iter->second); 334 380 // } catch(const boost::bad_any_cast &) { 335 381 // DoeLog(0) && (eLog() << Verbose(0) … … 337 383 // +ParamNames[_param]+" to string!" << std::endl); 338 384 // } 339 value = IntegrationNames[Iindex]; 385 { 386 IntegrationNamesType::const_iterator Iiter = IntegrationNames.find(Iindex); 387 value = Iiter->second; 388 } 340 389 break; 341 390 case theoryParam: 342 391 // TODO: throw exception instead of eLog() 343 392 // try { 344 Tindex = boost::any_cast<enum Theory>( params[_param]);393 Tindex = boost::any_cast<enum Theory>(iter->second); 345 394 // } catch(const boost::bad_any_cast &) { 346 395 // DoeLog(0) && (eLog() << Verbose(0) … … 348 397 // +ParamNames[_param]+" to string!" << std::endl); 349 398 // } 350 value = TheoryNames[(enum Theory)Tindex]; 399 { 400 TheoryNamesType::const_iterator Titer = TheoryNames.find(Tindex); 401 value = Titer->second; 402 } 351 403 break; 352 404 default: 353 405 // TODO: throw exception instead of eLog() 354 406 // try { 355 value = boost::any_cast<std::string>( params[_param]);407 value = boost::any_cast<std::string>(iter->second); 356 408 // } catch(const boost::bad_any_cast &) { 357 409 // DoeLog(0) && (eLog() << Verbose(0) … … 365 417 } 366 418 367 int MpqcParser_Parameters::getInt(enum Parameters _param) 419 int MpqcParser_Parameters::getInt(enum Parameters _param) const 368 420 { 369 421 int value; 422 parameterlist::const_iterator iter = params.find(_param); 370 423 switch (_param) { 371 424 default: 372 425 // TODO: throw exception instead of eLog() 373 426 // try { 374 value = boost::any_cast<int>( params[_param]);427 value = boost::any_cast<int>(iter->second); 375 428 // } catch(const boost::bad_any_cast &) { 376 429 // DoeLog(0) && (eLog() << Verbose(0) … … 383 436 } 384 437 385 double MpqcParser_Parameters::getDouble(enum Parameters _param) 438 double MpqcParser_Parameters::getDouble(enum Parameters _param) const 386 439 { 387 440 double value; 388 // TODO: throw exception instead of eLog() 389 // try { 390 value = boost::any_cast<double>(params[_param]); 441 parameterlist::const_iterator iter = params.find(_param); 442 // TODO: throw exception instead of eLog() 443 // try { 444 value = boost::any_cast<double>(iter->second); 391 445 // } catch(const boost::bad_any_cast &) { 392 446 // DoeLog(0) && (eLog() << Verbose(0) … … 397 451 } 398 452 399 bool MpqcParser_Parameters::getBool(enum Parameters _param) 453 bool MpqcParser_Parameters::getBool(enum Parameters _param) const 400 454 { 401 455 bool value; 402 // TODO: throw exception instead of eLog() 403 // try { 404 value = boost::any_cast<bool>(params[_param]); 456 parameterlist::const_iterator iter = params.find(_param); 457 // TODO: throw exception instead of eLog() 458 // try { 459 value = boost::any_cast<bool>(iter->second); 405 460 // } catch(const boost::bad_any_cast &) { 406 461 // DoeLog(0) && (eLog() << Verbose(0) -
TabularUnified src/Parser/MpqcParser_Parameters.hpp ¶
re611dc rc1db05 19 19 #include <vector> 20 20 21 #include "CodePatterns/Clone.hpp" 21 22 #include "CodePatterns/Log.hpp" 22 23 #include "CodePatterns/Verbose.hpp" … … 24 25 #include <boost/any.hpp> 25 26 27 #include "Parser/FormatParser_Parameters.hpp" 26 28 27 29 class MpqcParser; 28 30 29 class MpqcParser_Parameters 31 class MpqcParser_Parameters : public FormatParser_Parameters 30 32 { 31 33 // MpqcParser should be friend to access params directly for types. … … 40 42 MpqcParser_Parameters(); 41 43 44 /** Copy Constructor of MpqcParser_Parameters. 45 * 46 * @param state ref to instance to copy 47 */ 48 MpqcParser_Parameters(const MpqcParser_Parameters & state); 49 42 50 /** Destructor of MpqcParser_Parameters. 43 51 * 44 52 */ 45 ~MpqcParser_Parameters();53 virtual ~MpqcParser_Parameters(); 46 54 47 55 /** Enumeration of all known theories. … … 99 107 * @return enumeration index of IntegrationMethod. 100 108 */ 101 enum IntegrationMethod getIntegration() ;109 enum IntegrationMethod getIntegration() const; 102 110 103 111 /** Getter for current Theory in params. … … 105 113 * @return enumeration index of Theory 106 114 */ 107 enum Theory getTheory() ;115 enum Theory getTheory() const; 108 116 109 117 /** Getter for a parameter in params as a string. … … 112 120 * @return string value 113 121 */ 114 std::string getString(enum Parameters _param) ;122 std::string getString(enum Parameters _param) const; 115 123 116 124 /** Getter for integer value of desired Parameter in params. … … 121 129 * @return integer value of parameter 122 130 */ 123 int getInt(enum Parameters _param) ;131 int getInt(enum Parameters _param) const; 124 132 125 133 /** Getter for double value of desired Parameter in params. … … 130 138 * @return double value of parameter 131 139 */ 132 double getDouble(enum Parameters _param) ;140 double getDouble(enum Parameters _param) const; 133 141 134 142 /** Getter for bool value of desired Parameter in params. … … 139 147 * @return bool value of parameter 140 148 */ 141 bool getBool(enum Parameters _param) ;149 bool getBool(enum Parameters _param) const; 142 150 143 151 /** Setter for a desired value of its type is known. … … 178 186 * @return enumeration index of Parameters 179 187 */ 180 enum Parameters getParam(std::string _name) ;188 enum Parameters getParam(std::string _name) const; 181 189 182 190 /** Checker whether parameter with name is known. … … 187 195 bool haveParam(std::string _name) const; 188 196 197 /** Creates a clone of the class. 198 * 199 * @return 200 */ 201 FormatParser_Parameters* clone() const; 202 203 /** Applies a before returned undo state. 204 * 205 * @param undo state to set 206 */ 207 void makeClone(const FormatParser_Parameters & _state); 208 209 /** Set the internal parameters to the one's from the given \a state. 210 * 211 * @param state set of parameters 212 */ 213 void copyParameters(const MpqcParser_Parameters & state); 214 189 215 private: 216 /** Global initialization in cstor. 217 * 218 */ 219 void Init(); 220 190 221 /** Initializes BasisList. 191 222 * -
TabularUnified src/Parser/unittests/ParserMpqcUnitTest.cpp ¶
re611dc rc1db05 178 178 void ParserMpqcUnitTest::ParameterTypeTest() { 179 179 // check types in boost::any map 180 CPPUNIT_ASSERT(mpqc-> params.params[MpqcParser_Parameters::hessianParam].type() == typeid(bool));181 CPPUNIT_ASSERT(mpqc-> params.params[MpqcParser_Parameters::hessianParam].type() != typeid(int));182 CPPUNIT_ASSERT(mpqc-> params.params[MpqcParser_Parameters::savestateParam].type() == typeid(bool));183 CPPUNIT_ASSERT(mpqc-> params.params[MpqcParser_Parameters::do_gradientParam].type() == typeid(bool));184 CPPUNIT_ASSERT(mpqc-> params.params[MpqcParser_Parameters::maxiterParam].type() == typeid(int));185 CPPUNIT_ASSERT(mpqc-> params.params[MpqcParser_Parameters::memoryParam].type() == typeid(int));186 CPPUNIT_ASSERT(mpqc-> params.params[MpqcParser_Parameters::stdapproxParam].type() == typeid(std::string));187 CPPUNIT_ASSERT(mpqc-> params.params[MpqcParser_Parameters::nfzcParam].type() == typeid(int));188 CPPUNIT_ASSERT(mpqc-> params.params[MpqcParser_Parameters::basisParam].type() == typeid(std::string));189 CPPUNIT_ASSERT(mpqc-> params.params[MpqcParser_Parameters::aux_basisParam].type() == typeid(std::string));190 CPPUNIT_ASSERT(mpqc-> params.params[MpqcParser_Parameters::integrationParam].type() == typeid(MpqcParser_Parameters::IntegralCints));191 CPPUNIT_ASSERT(mpqc-> params.params[MpqcParser_Parameters::theoryParam].type() == typeid(MpqcParser_Parameters::MBPT2));180 CPPUNIT_ASSERT(mpqc->getParams().params[MpqcParser_Parameters::hessianParam].type() == typeid(bool)); 181 CPPUNIT_ASSERT(mpqc->getParams().params[MpqcParser_Parameters::hessianParam].type() != typeid(int)); 182 CPPUNIT_ASSERT(mpqc->getParams().params[MpqcParser_Parameters::savestateParam].type() == typeid(bool)); 183 CPPUNIT_ASSERT(mpqc->getParams().params[MpqcParser_Parameters::do_gradientParam].type() == typeid(bool)); 184 CPPUNIT_ASSERT(mpqc->getParams().params[MpqcParser_Parameters::maxiterParam].type() == typeid(int)); 185 CPPUNIT_ASSERT(mpqc->getParams().params[MpqcParser_Parameters::memoryParam].type() == typeid(int)); 186 CPPUNIT_ASSERT(mpqc->getParams().params[MpqcParser_Parameters::stdapproxParam].type() == typeid(std::string)); 187 CPPUNIT_ASSERT(mpqc->getParams().params[MpqcParser_Parameters::nfzcParam].type() == typeid(int)); 188 CPPUNIT_ASSERT(mpqc->getParams().params[MpqcParser_Parameters::basisParam].type() == typeid(std::string)); 189 CPPUNIT_ASSERT(mpqc->getParams().params[MpqcParser_Parameters::aux_basisParam].type() == typeid(std::string)); 190 CPPUNIT_ASSERT(mpqc->getParams().params[MpqcParser_Parameters::integrationParam].type() == typeid(MpqcParser_Parameters::IntegralCints)); 191 CPPUNIT_ASSERT(mpqc->getParams().params[MpqcParser_Parameters::theoryParam].type() == typeid(MpqcParser_Parameters::MBPT2)); 192 192 } 193 193 194 194 void ParserMpqcUnitTest::ParameterDefaultTest() { 195 195 // check default values 196 CPPUNIT_ASSERT(mpqc-> params.getString(MpqcParser_Parameters::hessianParam) == "no");197 CPPUNIT_ASSERT(!mpqc-> params.getBool(MpqcParser_Parameters::hessianParam));198 CPPUNIT_ASSERT(mpqc-> params.getString(MpqcParser_Parameters::savestateParam) == "no");199 CPPUNIT_ASSERT(!mpqc-> params.getBool(MpqcParser_Parameters::savestateParam));200 CPPUNIT_ASSERT(mpqc-> params.getString(MpqcParser_Parameters::do_gradientParam) == "yes");201 CPPUNIT_ASSERT(mpqc-> params.getBool(MpqcParser_Parameters::do_gradientParam));202 CPPUNIT_ASSERT(mpqc-> params.getInt(MpqcParser_Parameters::maxiterParam) == 1000);203 CPPUNIT_ASSERT(mpqc-> params.getInt(MpqcParser_Parameters::memoryParam) == 16000000);204 CPPUNIT_ASSERT(mpqc-> params.getString(MpqcParser_Parameters::stdapproxParam) == "A'");205 CPPUNIT_ASSERT(mpqc-> params.getInt(MpqcParser_Parameters::nfzcParam) == 1);206 CPPUNIT_ASSERT(mpqc-> params.getString(MpqcParser_Parameters::basisParam) == "3-21G");207 CPPUNIT_ASSERT(mpqc-> params.getString(MpqcParser_Parameters::aux_basisParam) == "aug-cc-pVDZ");208 CPPUNIT_ASSERT(mpqc-> params.getString(MpqcParser_Parameters::integrationParam) == "IntegralCints");209 CPPUNIT_ASSERT(mpqc-> params.getString(MpqcParser_Parameters::theoryParam) == "MBPT2");210 CPPUNIT_ASSERT(mpqc-> params.getTheory() == MpqcParser_Parameters::MBPT2);211 CPPUNIT_ASSERT(mpqc-> params.getIntegration() == MpqcParser_Parameters::IntegralCints);196 CPPUNIT_ASSERT(mpqc->getParams().getString(MpqcParser_Parameters::hessianParam) == "no"); 197 CPPUNIT_ASSERT(!mpqc->getParams().getBool(MpqcParser_Parameters::hessianParam)); 198 CPPUNIT_ASSERT(mpqc->getParams().getString(MpqcParser_Parameters::savestateParam) == "no"); 199 CPPUNIT_ASSERT(!mpqc->getParams().getBool(MpqcParser_Parameters::savestateParam)); 200 CPPUNIT_ASSERT(mpqc->getParams().getString(MpqcParser_Parameters::do_gradientParam) == "yes"); 201 CPPUNIT_ASSERT(mpqc->getParams().getBool(MpqcParser_Parameters::do_gradientParam)); 202 CPPUNIT_ASSERT(mpqc->getParams().getInt(MpqcParser_Parameters::maxiterParam) == 1000); 203 CPPUNIT_ASSERT(mpqc->getParams().getInt(MpqcParser_Parameters::memoryParam) == 16000000); 204 CPPUNIT_ASSERT(mpqc->getParams().getString(MpqcParser_Parameters::stdapproxParam) == "A'"); 205 CPPUNIT_ASSERT(mpqc->getParams().getInt(MpqcParser_Parameters::nfzcParam) == 1); 206 CPPUNIT_ASSERT(mpqc->getParams().getString(MpqcParser_Parameters::basisParam) == "3-21G"); 207 CPPUNIT_ASSERT(mpqc->getParams().getString(MpqcParser_Parameters::aux_basisParam) == "aug-cc-pVDZ"); 208 CPPUNIT_ASSERT(mpqc->getParams().getString(MpqcParser_Parameters::integrationParam) == "IntegralCints"); 209 CPPUNIT_ASSERT(mpqc->getParams().getString(MpqcParser_Parameters::theoryParam) == "MBPT2"); 210 CPPUNIT_ASSERT(mpqc->getParams().getTheory() == MpqcParser_Parameters::MBPT2); 211 CPPUNIT_ASSERT(mpqc->getParams().getIntegration() == MpqcParser_Parameters::IntegralCints); 212 212 213 213 // check that values are not removed 214 CPPUNIT_ASSERT(!mpqc-> params.params[MpqcParser_Parameters::theoryParam].empty());214 CPPUNIT_ASSERT(!mpqc->getParams().params[MpqcParser_Parameters::theoryParam].empty()); 215 215 216 216 // check throw, for the moment aren't, are caught in getInt() 217 CPPUNIT_ASSERT_THROW(mpqc->params.getInt(MpqcParser_Parameters::integrationParam), boost::bad_any_cast); 218 CPPUNIT_ASSERT_THROW(mpqc->params.getInt(MpqcParser_Parameters::theoryParam), boost::bad_any_cast); 219 217 CPPUNIT_ASSERT_THROW(mpqc->getParams().getInt(MpqcParser_Parameters::integrationParam), boost::bad_any_cast); 218 CPPUNIT_ASSERT_THROW(mpqc->getParams().getInt(MpqcParser_Parameters::theoryParam), boost::bad_any_cast); 219 220 } 221 222 void ParserMpqcUnitTest::ParameterCloneTest() { 223 FormatParser_Parameters *clone = mpqc->getParams().clone(); 224 CPPUNIT_ASSERT(mpqc->getParams().getString(MpqcParser_Parameters::theoryParam) == "MBPT2"); 225 std::stringstream setvalue("theory = CLHF"); 226 setvalue >> mpqc->getParams(); 227 CPPUNIT_ASSERT(mpqc->getParams().getString(MpqcParser_Parameters::theoryParam) == "CLHF"); 228 mpqc->getParams().makeClone(*clone); 229 CPPUNIT_ASSERT(mpqc->getParams().getString(MpqcParser_Parameters::theoryParam) == "MBPT2"); 220 230 } 221 231 … … 224 234 { 225 235 std::stringstream setvalue("theory = CLHF"); 226 setvalue >> mpqc-> params;236 setvalue >> mpqc->getParams(); 227 237 // std::cout << "integration method is " 228 // << mpqc-> params.getString(MpqcParser_Parameters::theoryParam) << std::endl;229 CPPUNIT_ASSERT(mpqc-> params.getString(MpqcParser_Parameters::theoryParam) == "CLHF");238 // << mpqc->getParams().getString(MpqcParser_Parameters::theoryParam) << std::endl; 239 CPPUNIT_ASSERT(mpqc->getParams().getString(MpqcParser_Parameters::theoryParam) == "CLHF"); 230 240 } 231 241 // test a bool 232 242 { 233 243 std::stringstream setvalue("Hessian = yes"); 234 setvalue >> mpqc-> params;244 setvalue >> mpqc->getParams(); 235 245 // std::cout << "Hessian is " 236 // << mpqc-> params.getString(MpqcParser_Parameters::hessianParam) << std::endl;237 CPPUNIT_ASSERT(mpqc-> params.getString(MpqcParser_Parameters::hessianParam) == "yes");246 // << mpqc->getParams().getString(MpqcParser_Parameters::hessianParam) << std::endl; 247 CPPUNIT_ASSERT(mpqc->getParams().getString(MpqcParser_Parameters::hessianParam) == "yes"); 238 248 } 239 249 // test int 240 250 { 241 251 std::stringstream setvalue("maxiter = 500"); 242 setvalue >> mpqc-> params;252 setvalue >> mpqc->getParams(); 243 253 // std::cout << "maxiter is " 244 // << mpqc-> params.getString(MpqcParser_Parameters::maxiterParam) << std::endl;245 CPPUNIT_ASSERT(mpqc-> params.getInt(MpqcParser_Parameters::maxiterParam) == 500);254 // << mpqc->getParams().getString(MpqcParser_Parameters::maxiterParam) << std::endl; 255 CPPUNIT_ASSERT(mpqc->getParams().getInt(MpqcParser_Parameters::maxiterParam) == 500); 246 256 } 247 257 // test whether unknown key fails … … 251 261 #ifndef NDEBUG 252 262 ASSERT_DO(Assert::Throw); 253 CPPUNIT_ASSERT_THROW(setvalue >> mpqc-> params, Assert::AssertionFailure);263 CPPUNIT_ASSERT_THROW(setvalue >> mpqc->getParams(), Assert::AssertionFailure); 254 264 #else 255 setvalue >> mpqc-> params;265 setvalue >> mpqc->getParams(); 256 266 #endif 257 267 // std::cout << "Hessian is still " 258 // << mpqc-> params.getString(MpqcParser_Parameters::hessianParam) << std::endl;259 CPPUNIT_ASSERT(mpqc-> params.getString(MpqcParser_Parameters::hessianParam) == "yes");268 // << mpqc->getParams().getString(MpqcParser_Parameters::hessianParam) << std::endl; 269 CPPUNIT_ASSERT(mpqc->getParams().getString(MpqcParser_Parameters::hessianParam) == "yes"); 260 270 } 261 271 } … … 263 273 void ParserMpqcUnitTest::readMpqcTest() { 264 274 stringstream input(waterMpqc_CLHF); 265 mpqc-> params.setTheory(MpqcParser_Parameters::CLHF);275 mpqc->getParams().setTheory(MpqcParser_Parameters::CLHF); 266 276 mpqc->load(&input); 267 277 … … 291 301 // compare both configs for CLHF 292 302 stringstream output; 293 mpqc-> params.setTheory(MpqcParser_Parameters::CLHF);303 mpqc->getParams().setTheory(MpqcParser_Parameters::CLHF); 294 304 mpqc->save(&output, atoms); 295 305 stringstream input(waterMpqc_CLHF); … … 302 312 // compare both configs for CLKS 303 313 stringstream output; 304 mpqc-> params.setTheory(MpqcParser_Parameters::CLKS);314 mpqc->getParams().setTheory(MpqcParser_Parameters::CLKS); 305 315 mpqc->save(&output, atoms); 306 316 stringstream input(waterMpqc_CLKS); … … 313 323 // compare both configs for MBPT2 314 324 stringstream output; 315 mpqc-> params.setTheory(MpqcParser_Parameters::MBPT2);325 mpqc->getParams().setTheory(MpqcParser_Parameters::MBPT2); 316 326 mpqc->save(&output, atoms); 317 327 stringstream input(waterMpqc_MBPT2); … … 324 334 // compare both configs for MBPT2_R12 325 335 stringstream output; 326 mpqc-> params.setTheory(MpqcParser_Parameters::MBPT2_R12);336 mpqc->getParams().setTheory(MpqcParser_Parameters::MBPT2_R12); 327 337 mpqc->save(&output, atoms); 328 338 stringstream input(waterMpqc_MBPT2_R12); -
TabularUnified src/Parser/unittests/ParserMpqcUnitTest.hpp ¶
re611dc rc1db05 24 24 CPPUNIT_TEST ( ParameterDefaultTest ); 25 25 CPPUNIT_TEST ( ParameterSetterTest ); 26 CPPUNIT_TEST ( ParameterCloneTest ); 26 27 CPPUNIT_TEST ( readMpqcTest ); 27 28 CPPUNIT_TEST ( writeMpqcTest ); … … 35 36 void ParameterDefaultTest(); 36 37 void ParameterSetterTest(); 38 void ParameterCloneTest(); 37 39 void readMpqcTest(); 38 40 void writeMpqcTest();
Note:
See TracChangeset
for help on using the changeset viewer.