Changeset 6efcae
- Timestamp:
- Feb 25, 2013, 5:29:09 PM (12 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:
- ed2551
- Parents:
- 67cd3a
- git-author:
- Frederik Heber <heber@…> (11/25/12 06:37:09)
- git-committer:
- Frederik Heber <heber@…> (02/25/13 17:29:09)
- Location:
- src
- Files:
-
- 8 added
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
src/LevMartester.cpp
r67cd3a r6efcae 40 40 41 41 #include <boost/assign.hpp> 42 #include <boost/assign/list_of.hpp> 42 43 #include <boost/bind.hpp> 43 44 #include <boost/filesystem.hpp> -
src/Potentials/EmpiricalPotential.hpp
r67cd3a r6efcae 66 66 */ 67 67 virtual derivative_components_t derivative(const arguments_t &arguments) const=0; 68 69 /** Return the name of this specific potential.70 *71 * This is required for storage in a Registry.72 *73 * \return name of the potential74 */75 virtual const std::string getName() const=0;76 68 }; 77 69 78 79 70 #endif /* EMPIRICALPOTENTIAL_HPP_ */ -
src/Potentials/Makefile.am
r67cd3a r6efcae 5 5 Potentials/Specifics/ManyBodyPotential_Tersoff.cpp \ 6 6 Potentials/PotentialRegistry.cpp \ 7 Potentials/SerializablePotential.cpp \ 7 8 Potentials/Specifics/PairPotential_Angle.cpp \ 8 9 Potentials/Specifics/PairPotential_Harmonic.cpp \ … … 12 13 POTENTIALSHEADER = \ 13 14 Potentials/EmpiricalPotential.hpp \ 15 Potentials/Exceptions.hpp \ 14 16 Potentials/helpers.hpp \ 15 17 Potentials/PotentialRegistry.hpp \ 18 Potentials/SerializablePotential.hpp \ 16 19 Potentials/Specifics/ManyBodyPotential_Tersoff.hpp \ 17 20 Potentials/Specifics/PairPotential_Angle.hpp \ -
src/Potentials/PotentialRegistry.cpp
r67cd3a r6efcae 40 40 41 41 CONSTRUCT_SINGLETON(PotentialRegistry) 42 CONSTRUCT_REGISTRY( EmpiricalPotential)42 CONSTRUCT_REGISTRY(SerializablePotential) -
src/Potentials/PotentialRegistry.hpp
r67cd3a r6efcae 16 16 #include "CodePatterns/Registry.hpp" 17 17 #include "CodePatterns/Singleton.hpp" 18 #include "Potentials/ EmpiricalPotential.hpp"18 #include "Potentials/SerializablePotential.hpp" 19 19 20 20 /** Potential Registry. … … 29 29 * ones. 30 30 */ 31 class PotentialRegistry : public Singleton<PotentialRegistry>, public Registry< EmpiricalPotential>31 class PotentialRegistry : public Singleton<PotentialRegistry>, public Registry<SerializablePotential> 32 32 { 33 33 friend class Singleton<PotentialRegistry>; 34 //friend class Registry< EmpiricalPotential>;34 //friend class Registry<SerializablePotential>; 35 35 36 36 public: -
src/Potentials/Specifics/ManyBodyPotential_Tersoff.hpp
r67cd3a r6efcae 120 120 results_t parameter_derivative(const arguments_t &arguments, const size_t index) const; 121 121 122 /** Return the name of this specific potential. 123 * 124 * This is required for storage in a Registry. 125 * 126 * \return name of the potential 127 */ 128 const std::string getName() const { 122 /** Return the token name of this specific potential. 123 * 124 * \return token name of the potential 125 */ 126 const std::string getToken() const { 129 127 return std::string("tersoff"); 130 128 } -
src/Potentials/Specifics/PairPotential_Angle.hpp
r67cd3a r6efcae 93 93 results_t parameter_derivative(const arguments_t &arguments, const size_t index) const; 94 94 95 /** Return the name of this specific potential.95 /** Return the token name of this specific potential. 96 96 * 97 * This is required for storage in a Registry. 98 * 99 * \return name of the potential 97 * \return token name of the potential 100 98 */ 101 const std::string get Name() const {99 const std::string getToken() const { 102 100 return std::string("harmonic_angle"); 103 101 } -
src/Potentials/Specifics/PairPotential_Harmonic.hpp
r67cd3a r6efcae 93 93 results_t parameter_derivative(const arguments_t &arguments, const size_t index) const; 94 94 95 /** Return the name of this specific potential.96 *97 * This is required for storage in a Registry.98 *99 * \return name of the potential100 */101 const std::string getName() const {102 return std::string("harmonic_bond");103 }104 105 95 /** States whether lower and upper boundaries should be used to constraint 106 96 * the parameter search for this function model. … … 132 122 } 133 123 124 /** Return the token name of this specific potential. 125 * 126 * \return token name of the potential 127 */ 128 const std::string getToken() const { 129 return std::string("harmonic_bond"); 130 } 131 134 132 enum parameter_enum_t { 135 133 spring_constant=0, -
src/Potentials/Specifics/PairPotential_Morse.hpp
r67cd3a r6efcae 94 94 results_t parameter_derivative(const arguments_t &arguments, const size_t index) const; 95 95 96 /** Return the name of this specific potential.96 /** Return the token name of this specific potential. 97 97 * 98 * This is required for storage in a Registry. 99 * 100 * \return name of the potential 98 * \return token name of the potential 101 99 */ 102 const std::string get Name() const {100 const std::string getToken() const { 103 101 return std::string("morse"); 104 102 } -
src/Potentials/Specifics/SaturationPotential.hpp
r67cd3a r6efcae 96 96 results_t parameter_derivative(const arguments_t &arguments, const size_t index) const; 97 97 98 /** Return the name of this specific potential.98 /** Return the token name of this specific potential. 99 99 * 100 * This is required for storage in a Registry. 101 * 102 * \return name of the potential 100 * \return token name of the potential 103 101 */ 104 const std::string get Name() const {102 const std::string getToken() const { 105 103 return std::string("saturation"); 106 104 } -
src/unittests/Makefile.am
r67cd3a r6efcae 30 30 include ../../src/Parameters/unittests/Makefile.am 31 31 include ../../src/Parser/unittests/Makefile.am 32 include ../../src/Potentials/unittests/Makefile.am 32 33 include ../../src/Potentials/Specifics/unittests/Makefile.am 33 34 include ../../src/RandomNumbers/unittests/Makefile.am
Note:
See TracChangeset
for help on using the changeset viewer.