Changeset 84e752 for src/Parser


Ignore:
Timestamp:
Oct 17, 2011, 2:36:56 PM (13 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:
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)
Message:

Moved Continuous- and DiscreteValue into subfolder Parameters.

  • this folder is to contain all stuff related to internal parameters of the parsers.
Location:
src/Parser
Files:
1 added
2 edited
9 moved

Legend:

Unmodified
Added
Removed
  • src/Parser/Makefile.am

    ra7d753 r84e752  
    4242  Parser/XyzParser.hpp
    4343
     44PARSERPARAMETERSSOURCE =
     45
     46PARSERPARAMETERSHEADER = \
     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
    4452
    4553noinst_LTLIBRARIES += libMolecuilderParser.la
    4654libMolecuilderParser_la_includedir = $(includedir)/MoleCuilder/Parser/
    4755
    48 nobase_libMolecuilderParser_la_include_HEADERS = ${PARSERHEADER}
     56nobase_libMolecuilderParser_la_include_HEADERS = ${PARSERHEADER} ${PARSERPARAMETERSHEADER}
    4957
    5058## Define the source file list for the "libexample-@MOLECUILDER_API_VERSION@.la"
     
    5664## from each source file.  Note that it is not necessary to list header files
    5765## which are already listed elsewhere in a _HEADERS variable assignment.
    58 libMolecuilderParser_la_SOURCES = ${PARSERSOURCE}
     66libMolecuilderParser_la_SOURCES = ${PARSERSOURCE} ${PARSERPARAMETERSSOURCE}
    5967
    6068## Instruct libtool to include ABI version information in the generated shared
  • src/Parser/Parameters/unittests/ContinuousValueUnitTest.cpp

    ra7d753 r84e752  
    2424#include <cppunit/ui/text/TestRunner.h>
    2525
    26 #include "Parser/ContinuousValue.hpp"
     26#include "Parser/Parameters/ContinuousValue.hpp"
    2727
    2828#include "CodePatterns/toString.hpp"
  • src/Parser/Parameters/unittests/DiscreteValueUnitTest.cpp

    ra7d753 r84e752  
    2424#include <cppunit/ui/text/TestRunner.h>
    2525
    26 #include "Parser/DiscreteValue.hpp"
     26#include "Parser/Parameters/DiscreteValue.hpp"
    2727
    2828#include "CodePatterns/toString.hpp"
  • src/Parser/unittests/Makefile.am

    ra7d753 r84e752  
    22# Also indentation by a single tab
    33
     4include ../../src/Parser/Parameters/unittests/Makefile.am
    45
    56PARSERTESTSSOURCES = \
    6   ../Parser/unittests/ContinuousValueUnitTest.cpp \
    7   ../Parser/unittests/DiscreteValueUnitTest.cpp \
    87        ../Parser/unittests/ParserMpqcUnitTest.cpp \
    98        ../Parser/unittests/ParserPcpUnitTest.cpp \
     
    1312
    1413PARSERTESTSHEADERS = \
    15   ../Parser/unittests/ContinuousValueUnitTest.hpp \
    16   ../Parser/unittests/DiscreteValueUnitTest.hpp \
    1714        ../Parser/unittests/ParserMpqcUnitTest.hpp \
    1815        ../Parser/unittests/ParserPcpUnitTest.hpp \
     
    2219
    2320PARSERTESTS = \
    24         ContinuousValueUnitTest \
    25   DiscreteValueUnitTest \
    2621  ParserMpqcUnitTest \
    2722  ParserPcpUnitTest \
     
    4136
    4237
    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.hpp
    48 #ContinuousValueUnitTest_LDADD
    49  
    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.hpp
    55 #DiscreteValueUnitTest_LDADD
    56  
    5738ParserMpqcUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
    5839        ../Parser/unittests/ParserMpqcUnitTest.cpp \
Note: See TracChangeset for help on using the changeset viewer.