Changeset 6efcae


Ignore:
Timestamp:
Feb 25, 2013, 5:29:09 PM (12 years ago)
Author:
Frederik Heber <heber@…>
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)
Message:

SerializablePotential is new type to be stored in PotentialRegistry.

  • added new class SerializablePotential with operator<<() and ..>>() and a a set of virtual functions to be implemented in deriving classes.
  • added unit test SerializablePotentialUnitTest and mock implementation of such a SerializablePotential.
  • added exceptions, thrown when parsing of potential containing line fails.
  • NOTE: empty name/key of a parameter are not printed on output.
Location:
src
Files:
8 added
11 edited

Legend:

Unmodified
Added
Removed
  • src/LevMartester.cpp

    r67cd3a r6efcae  
    4040
    4141#include <boost/assign.hpp>
     42#include <boost/assign/list_of.hpp>
    4243#include <boost/bind.hpp>
    4344#include <boost/filesystem.hpp>
  • src/Potentials/EmpiricalPotential.hpp

    r67cd3a r6efcae  
    6666   */
    6767  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 potential
    74    */
    75   virtual const std::string getName() const=0;
    7668};
    7769
    78 
    7970#endif /* EMPIRICALPOTENTIAL_HPP_ */
  • src/Potentials/Makefile.am

    r67cd3a r6efcae  
    55  Potentials/Specifics/ManyBodyPotential_Tersoff.cpp \
    66  Potentials/PotentialRegistry.cpp \
     7  Potentials/SerializablePotential.cpp \
    78  Potentials/Specifics/PairPotential_Angle.cpp \
    89  Potentials/Specifics/PairPotential_Harmonic.cpp \
     
    1213POTENTIALSHEADER = \
    1314  Potentials/EmpiricalPotential.hpp \
     15  Potentials/Exceptions.hpp \
    1416  Potentials/helpers.hpp \
    1517  Potentials/PotentialRegistry.hpp \
     18  Potentials/SerializablePotential.hpp \
    1619  Potentials/Specifics/ManyBodyPotential_Tersoff.hpp \
    1720  Potentials/Specifics/PairPotential_Angle.hpp \
  • src/Potentials/PotentialRegistry.cpp

    r67cd3a r6efcae  
    4040
    4141CONSTRUCT_SINGLETON(PotentialRegistry)
    42 CONSTRUCT_REGISTRY(EmpiricalPotential)
     42CONSTRUCT_REGISTRY(SerializablePotential)
  • src/Potentials/PotentialRegistry.hpp

    r67cd3a r6efcae  
    1616#include "CodePatterns/Registry.hpp"
    1717#include "CodePatterns/Singleton.hpp"
    18 #include "Potentials/EmpiricalPotential.hpp"
     18#include "Potentials/SerializablePotential.hpp"
    1919
    2020/** Potential Registry.
     
    2929 * ones.
    3030 */
    31 class PotentialRegistry : public Singleton<PotentialRegistry>, public Registry<EmpiricalPotential>
     31class PotentialRegistry : public Singleton<PotentialRegistry>, public Registry<SerializablePotential>
    3232{
    3333  friend class Singleton<PotentialRegistry>;
    34   //friend class Registry<EmpiricalPotential>;
     34  //friend class Registry<SerializablePotential>;
    3535
    3636public:
  • src/Potentials/Specifics/ManyBodyPotential_Tersoff.hpp

    r67cd3a r6efcae  
    120120  results_t parameter_derivative(const arguments_t &arguments, const size_t index) const;
    121121
    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 {
    129127    return std::string("tersoff");
    130128  }
  • src/Potentials/Specifics/PairPotential_Angle.hpp

    r67cd3a r6efcae  
    9393  results_t parameter_derivative(const arguments_t &arguments, const size_t index) const;
    9494
    95   /** Return the name of this specific potential.
     95  /** Return the token name of this specific potential.
    9696   *
    97    * This is required for storage in a Registry.
    98    *
    99    * \return name of the potential
     97   * \return token name of the potential
    10098   */
    101   const std::string getName() const {
     99  const std::string getToken() const {
    102100    return std::string("harmonic_angle");
    103101  }
  • src/Potentials/Specifics/PairPotential_Harmonic.hpp

    r67cd3a r6efcae  
    9393  results_t parameter_derivative(const arguments_t &arguments, const size_t index) const;
    9494
    95   /** Return the name of this specific potential.
    96    *
    97    * This is required for storage in a Registry.
    98    *
    99    * \return name of the potential
    100    */
    101   const std::string getName() const {
    102     return std::string("harmonic_bond");
    103   }
    104 
    10595  /** States whether lower and upper boundaries should be used to constraint
    10696   * the parameter search for this function model.
     
    132122  }
    133123
     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
    134132  enum parameter_enum_t {
    135133    spring_constant=0,
  • src/Potentials/Specifics/PairPotential_Morse.hpp

    r67cd3a r6efcae  
    9494  results_t parameter_derivative(const arguments_t &arguments, const size_t index) const;
    9595
    96   /** Return the name of this specific potential.
     96  /** Return the token name of this specific potential.
    9797   *
    98    * This is required for storage in a Registry.
    99    *
    100    * \return name of the potential
     98   * \return token name of the potential
    10199   */
    102   const std::string getName() const {
     100  const std::string getToken() const {
    103101    return std::string("morse");
    104102  }
  • src/Potentials/Specifics/SaturationPotential.hpp

    r67cd3a r6efcae  
    9696  results_t parameter_derivative(const arguments_t &arguments, const size_t index) const;
    9797
    98   /** Return the name of this specific potential.
     98  /** Return the token name of this specific potential.
    9999   *
    100    * This is required for storage in a Registry.
    101    *
    102    * \return name of the potential
     100   * \return token name of the potential
    103101   */
    104   const std::string getName() const {
     102  const std::string getToken() const {
    105103    return std::string("saturation");
    106104  }
  • src/unittests/Makefile.am

    r67cd3a r6efcae  
    3030include ../../src/Parameters/unittests/Makefile.am
    3131include ../../src/Parser/unittests/Makefile.am
     32include ../../src/Potentials/unittests/Makefile.am
    3233include ../../src/Potentials/Specifics/unittests/Makefile.am
    3334include ../../src/RandomNumbers/unittests/Makefile.am
Note: See TracChangeset for help on using the changeset viewer.