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:
0496af
Parents:
6efcae
git-author:
Frederik Heber <heber@…> (11/25/12 09:10:44)
git-committer:
Frederik Heber <heber@…> (02/25/13 17:29:09)
Message:

All Pair_.. and ManyBodyPotentials are now also derived from SerializablePotential.

  • added static ParameterNames, skipping "energy_offset" which should not go to file.
  • overrode operator<<() and ..>>() for SaturationPotential to print both potentials independently.
  • adapted LevMartest and all unit tests.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Potentials/Specifics/SaturationPotential.hpp

    r6efcae red2551  
    1616
    1717#include <boost/function.hpp>
     18#include <iosfwd>
    1819#include <limits>
    1920
    2021#include "Potentials/EmpiricalPotential.hpp"
     22#include "Potentials/SerializablePotential.hpp"
    2123#include "Potentials/Specifics/PairPotential_Angle.hpp"
    2224#include "Potentials/Specifics/PairPotential_Morse.hpp"
     
    2628 *
    2729 */
    28 class SaturationPotential : virtual public EmpiricalPotential, virtual public FunctionModel
     30class SaturationPotential :
     31  virtual public EmpiricalPotential,
     32  virtual public FunctionModel,
     33  virtual public SerializablePotential
    2934{
    3035  //!> grant unit test access to internal parts
    3136  friend class SaturationPotentialTest;
     37  //!> grant operator access to private functions
     38  friend std::ostream& operator<<(std::ostream &ost, const SaturationPotential &potential);
     39  //!> grant operator access to private functions
     40  friend std::istream& operator>>(std::istream &ost, SaturationPotential &potential);
     41
    3242  // some repeated typedefs to avoid ambiguities
    3343  typedef FunctionModel::arguments_t arguments_t;
     
    3848public:
    3949  SaturationPotential(
     50      const ParticleTypes_t &_ParticleTypes,
    4051      const double _saturation_cutoff,
    4152      boost::function< std::vector<arguments_t>(const argument_t &, const double)> &_triplefunction
    4253      );
    4354  SaturationPotential(
     55      const ParticleTypes_t &_ParticleTypes,
    4456      const double _morse_spring_constant,
    4557      const double _morse_equilibrium_distance,
     
    100112   * \return token name of the potential
    101113   */
    102   const std::string getToken() const {
    103     return std::string("saturation");
    104   }
     114  const std::string& getToken() const
     115  { return potential_token; }
     116
     117  /** Returns a vector of parameter names.
     118   *
     119   * This is required from the specific implementation
     120   *
     121   * \return vector of strings containing parameter names
     122   */
     123  const ParameterNames_t& getParameterNames() const
     124  { return ParameterNames; }
    105125
    106126  /** States whether lower and upper boundaries should be used to constraint
     
    154174  const boost::function< std::vector< arguments_t >(const argument_t &, const double)> &triplefunction;
    155175  const double saturation_cutoff;
     176
     177  //!> static definitions of the parameter name for this potential
     178  static const ParameterNames_t ParameterNames;
     179
     180  //!> static token of this potential type
     181  static const std::string potential_token;
    156182};
    157183
     184/** Output operations stores .potentials line containing these parameters
     185 * coefficients and designations.
     186 *
     187 * \note We have to overrride this function in order to print both potentials
     188 * separately.
     189 *
     190 * \param ost output stream to print to
     191 * \param potential potential whose coefficients to print
     192 * \return output stream for concatenation
     193 */
     194std::ostream& operator<<(std::ostream &ost, const SaturationPotential &potential);
     195
     196/** Input operation parses coefficients from a given line of a .potentials
     197 * file.
     198 *
     199 * \note We have to override this function in order to parse both potentials
     200 * separately.
     201 *
     202 * \param ist input stream to parse from
     203 * \param potential potential to set
     204 * \return input stream for concatenation
     205 */
     206std::istream& operator>>(std::istream &ist, SaturationPotential &potential);
     207
    158208#endif /* SATURATIONPOTENTIAL_HPP_ */
Note: See TracChangeset for help on using the changeset viewer.