Changeset ed2551 for src/Potentials/Specifics/SaturationPotential.hpp
- 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:
- 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)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Potentials/Specifics/SaturationPotential.hpp
r6efcae red2551 16 16 17 17 #include <boost/function.hpp> 18 #include <iosfwd> 18 19 #include <limits> 19 20 20 21 #include "Potentials/EmpiricalPotential.hpp" 22 #include "Potentials/SerializablePotential.hpp" 21 23 #include "Potentials/Specifics/PairPotential_Angle.hpp" 22 24 #include "Potentials/Specifics/PairPotential_Morse.hpp" … … 26 28 * 27 29 */ 28 class SaturationPotential : virtual public EmpiricalPotential, virtual public FunctionModel 30 class SaturationPotential : 31 virtual public EmpiricalPotential, 32 virtual public FunctionModel, 33 virtual public SerializablePotential 29 34 { 30 35 //!> grant unit test access to internal parts 31 36 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 32 42 // some repeated typedefs to avoid ambiguities 33 43 typedef FunctionModel::arguments_t arguments_t; … … 38 48 public: 39 49 SaturationPotential( 50 const ParticleTypes_t &_ParticleTypes, 40 51 const double _saturation_cutoff, 41 52 boost::function< std::vector<arguments_t>(const argument_t &, const double)> &_triplefunction 42 53 ); 43 54 SaturationPotential( 55 const ParticleTypes_t &_ParticleTypes, 44 56 const double _morse_spring_constant, 45 57 const double _morse_equilibrium_distance, … … 100 112 * \return token name of the potential 101 113 */ 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; } 105 125 106 126 /** States whether lower and upper boundaries should be used to constraint … … 154 174 const boost::function< std::vector< arguments_t >(const argument_t &, const double)> &triplefunction; 155 175 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; 156 182 }; 157 183 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 */ 194 std::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 */ 206 std::istream& operator>>(std::istream &ist, SaturationPotential &potential); 207 158 208 #endif /* SATURATIONPOTENTIAL_HPP_ */
Note:
See TracChangeset
for help on using the changeset viewer.