- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/MpqcParser_Parameters.hpp
rcf1d82 re3c4c5 58 58 integrationParam,//!< integrationParam, integration method to use in MBPT2 R12 59 59 theoryParam, //!< theoryParam, level of theory to use 60 jobtypeParam, //!< jobtypeParam, job type to use 60 61 unknownParam}; //!< unknownParam, designates an unknown parameter 61 62 … … 69 70 MBPT2_R12, //!< Moeller Plesset Perturbation Theory second order with R12 integral 70 71 unknownTheory //!< designates an unknown theory 72 }; 73 74 /** Enumeration of all known jobtypes. 75 * 76 */ 77 enum Jobtype { 78 Default, //!< standard energy and force calculation 79 Optimization, //!< additional optimization of geometry 80 unknownJob //!< designates an unknown job 71 81 }; 72 82 … … 93 103 const std::string &getParameterName(const enum Parameters param) const; 94 104 const std::string &getTheoryName(const enum Theory theory) const; 105 const std::string &getJobtypeName(const enum Jobtype jobtype) const; 95 106 const std::string &getIntegrationMethodName(const enum IntegrationMethod integration) const; 96 107 … … 99 110 //!> vector with all available theories in same order as enum Theory. 100 111 std::vector<std::string> ValidTheories; 112 113 //!> vector with all available jobtypes in same order as enum Jobs. 114 std::vector<std::string> ValidJobtypes; 101 115 102 116 //!> vector with all available integration methods in same order as enum IntegrationMethod.
Note:
See TracChangeset
for help on using the changeset viewer.