Changeset 6440c6 for src/Parser
- Timestamp:
- Feb 13, 2013, 3:47:46 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:
- cf1d82
- Parents:
- b11f5e
- git-author:
- Frederik Heber <heber@…> (01/10/13 13:27:38)
- git-committer:
- Frederik Heber <heber@…> (02/13/13 15:47:46)
- Location:
- src/Parser
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/FormatParser_Parameters.cpp
rb11f5e r6440c6 44 44 #include "CodePatterns/Log.hpp" 45 45 46 #include "Parameters/Parameter AsString.hpp"46 #include "Parameters/ParameterInterface.hpp" 47 47 #include "FormatParser_Parameters.hpp" 48 48 … … 102 102 * @param instance parameter to add 103 103 */ 104 void FormatParser_Parameters::appendParameter(Parameter AsString*instance)104 void FormatParser_Parameters::appendParameter(ParameterInterface *instance) 105 105 { 106 106 storage->registerInstance(instance); … … 124 124 * @return pointer to instance with this \a _name 125 125 */ 126 Parameter AsString*FormatParser_Parameters::getParameter(const std::string &_name) const126 ParameterInterface *FormatParser_Parameters::getParameter(const std::string &_name) const 127 127 { 128 128 return storage->getByName(_name); … … 202 202 +key+"' with value "+valuestream.str()+"!"); 203 203 if (params.haveParameter(key)) { 204 Parameter AsString*instance = params.getParameter(key);204 ParameterInterface *instance = params.getParameter(key); 205 205 instance->setAsString(valuestream.str()); 206 206 } -
src/Parser/FormatParser_Parameters.hpp
rb11f5e r6440c6 20 20 #include "Parser/Parameters/ParameterStorage.hpp" 21 21 22 class Parameter AsString;22 class ParameterInterface; 23 23 24 24 /** This class is an interface to the internal parameters of any FormatParser. … … 41 41 42 42 // accessing parameters in storage 43 void appendParameter(Parameter AsString*instance);43 void appendParameter(ParameterInterface *instance); 44 44 bool haveParameter(const std::string &_name) const; 45 Parameter AsString*getParameter(const std::string &_name) const;45 ParameterInterface *getParameter(const std::string &_name) const; 46 46 47 47 protected: -
src/Parser/Makefile.am
rb11f5e r6440c6 63 63 Parameters/Parameter.hpp \ 64 64 Parameters/Parameter_impl.hpp \ 65 Parameters/ParameterAsString.hpp \66 65 Parameters/ParameterInterface.hpp \ 67 66 Parameters/Validators/DiscreteValidator.hpp \ -
src/Parser/Parameters/ParameterStorage.cpp
rb11f5e r6440c6 52 52 { 53 53 for (const_iterator iter = _storage.getBeginIter(); iter != _storage.getEndIter(); ++iter) { 54 Parameter AsString*instance = (iter->second)->clone();54 ParameterInterface *instance = (iter->second)->clone(); 55 55 registerInstance(instance); 56 56 } … … 64 64 } 65 65 66 CONSTRUCT_REGISTRY(Parameter AsString)66 CONSTRUCT_REGISTRY(ParameterInterface) -
src/Parser/Parameters/ParameterStorage.hpp
rb11f5e r6440c6 16 16 #include "CodePatterns/Registry.hpp" 17 17 18 #include "Parameters/Parameter AsString.hpp"18 #include "Parameters/ParameterInterface.hpp" 19 19 20 20 /** Parameter Registry. … … 23 23 * 24 24 */ 25 class ParameterStorage : public Registry<Parameter AsString>25 class ParameterStorage : public Registry<ParameterInterface> 26 26 { 27 27 public: -
src/Parser/Parameters/unittests/ParameterStorageUnitTest.cpp
rb11f5e r6440c6 67 67 ValidValues.push_back(i); 68 68 range<double> ValidRange(1., 4.); 69 Parameter AsString*intParam = new Parameter<int>("intParam", ValidValues);70 Parameter AsString*doubleParam = new Parameter<double>("doubleParam", ValidRange);69 ParameterInterface *intParam = new Parameter<int>("intParam", ValidValues); 70 ParameterInterface *doubleParam = new Parameter<double>("doubleParam", ValidRange); 71 71 // note: delete is done by registry in tearDown ... 72 72
Note:
See TracChangeset
for help on using the changeset viewer.