Changeset 84e752 for src/Parser
- Timestamp:
- Oct 17, 2011, 2:36:56 PM (13 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:
- 498ddd
- Parents:
- a7d753
- git-author:
- Frederik Heber <heber@…> (09/30/11 09:40:49)
- git-committer:
- Frederik Heber <heber@…> (10/17/11 14:36:56)
- Location:
- src/Parser
- Files:
-
- 1 added
- 2 edited
- 9 moved
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/Makefile.am
ra7d753 r84e752 42 42 Parser/XyzParser.hpp 43 43 44 PARSERPARAMETERSSOURCE = 45 46 PARSERPARAMETERSHEADER = \ 47 Parser/Parameters/ContinuousValue.hpp \ 48 Parser/Parameters/ContinuousValue_impl.hpp \ 49 Parser/Parameters/DiscreteValue.hpp \ 50 Parser/Parameters/DiscreteValue_impl.hpp \ 51 Parser/Parameters/ValueInterface.hpp 44 52 45 53 noinst_LTLIBRARIES += libMolecuilderParser.la 46 54 libMolecuilderParser_la_includedir = $(includedir)/MoleCuilder/Parser/ 47 55 48 nobase_libMolecuilderParser_la_include_HEADERS = ${PARSERHEADER} 56 nobase_libMolecuilderParser_la_include_HEADERS = ${PARSERHEADER} ${PARSERPARAMETERSHEADER} 49 57 50 58 ## Define the source file list for the "libexample-@MOLECUILDER_API_VERSION@.la" … … 56 64 ## from each source file. Note that it is not necessary to list header files 57 65 ## which are already listed elsewhere in a _HEADERS variable assignment. 58 libMolecuilderParser_la_SOURCES = ${PARSERSOURCE} 66 libMolecuilderParser_la_SOURCES = ${PARSERSOURCE} ${PARSERPARAMETERSSOURCE} 59 67 60 68 ## Instruct libtool to include ABI version information in the generated shared -
src/Parser/Parameters/unittests/ContinuousValueUnitTest.cpp
ra7d753 r84e752 24 24 #include <cppunit/ui/text/TestRunner.h> 25 25 26 #include "Parser/ ContinuousValue.hpp"26 #include "Parser/Parameters/ContinuousValue.hpp" 27 27 28 28 #include "CodePatterns/toString.hpp" -
src/Parser/Parameters/unittests/DiscreteValueUnitTest.cpp
ra7d753 r84e752 24 24 #include <cppunit/ui/text/TestRunner.h> 25 25 26 #include "Parser/ DiscreteValue.hpp"26 #include "Parser/Parameters/DiscreteValue.hpp" 27 27 28 28 #include "CodePatterns/toString.hpp" -
src/Parser/unittests/Makefile.am
ra7d753 r84e752 2 2 # Also indentation by a single tab 3 3 4 include ../../src/Parser/Parameters/unittests/Makefile.am 4 5 5 6 PARSERTESTSSOURCES = \ 6 ../Parser/unittests/ContinuousValueUnitTest.cpp \7 ../Parser/unittests/DiscreteValueUnitTest.cpp \8 7 ../Parser/unittests/ParserMpqcUnitTest.cpp \ 9 8 ../Parser/unittests/ParserPcpUnitTest.cpp \ … … 13 12 14 13 PARSERTESTSHEADERS = \ 15 ../Parser/unittests/ContinuousValueUnitTest.hpp \16 ../Parser/unittests/DiscreteValueUnitTest.hpp \17 14 ../Parser/unittests/ParserMpqcUnitTest.hpp \ 18 15 ../Parser/unittests/ParserPcpUnitTest.hpp \ … … 22 19 23 20 PARSERTESTS = \ 24 ContinuousValueUnitTest \25 DiscreteValueUnitTest \26 21 ParserMpqcUnitTest \ 27 22 ParserPcpUnitTest \ … … 41 36 42 37 43 ContinuousValueUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \44 ../Parser/unittests/ContinuousValueUnitTest.cpp \45 ../Parser/unittests/ContinuousValueUnitTest.hpp \46 ../Parser/ContinuousValue.hpp \47 ../Parser/ContinuousValue_impl.hpp48 #ContinuousValueUnitTest_LDADD49 50 DiscreteValueUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \51 ../Parser/unittests/DiscreteValueUnitTest.cpp \52 ../Parser/unittests/DiscreteValueUnitTest.hpp \53 ../Parser/DiscreteValue.hpp \54 ../Parser/DiscreteValue_impl.hpp55 #DiscreteValueUnitTest_LDADD56 57 38 ParserMpqcUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ 58 39 ../Parser/unittests/ParserMpqcUnitTest.cpp \
Note:
See TracChangeset
for help on using the changeset viewer.