Changeset 456341
- Timestamp:
- Jul 1, 2010, 2:57:02 PM (15 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:
- cd82ec
- Parents:
- 4b94bb
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Makefile.am
r4b94bb r456341 30 30 atom_trajectoryparticleinfo.hpp 31 31 32 LINALGSOURCE = \ 33 ${HELPERSOURCE} \ 34 gslmatrix.cpp \ 35 gslvector.cpp \ 36 linearsystemofequations.cpp \ 37 Space.cpp \ 38 vector.cpp 39 40 LINALGHEADER = \ 41 gslmatrix.hpp \ 42 gslvector.hpp \ 43 linearsystemofequations.hpp \ 44 Space.hpp \ 45 vector.hpp 46 47 ANALYSISSOURCE = \ 48 analysis_bonds.cpp \ 49 analysis_correlation.cpp 50 ANALYSISHEADER = \ 51 analysis_bonds.hpp \ 52 analysis_correlation.hpp 53 54 ACTIONSSOURCE = \ 55 Actions/Action.cpp \ 56 Actions/ActionHistory.cpp \ 57 Actions/ActionRegistry.cpp \ 58 Actions/ActionSequence.cpp \ 59 Actions/ErrorAction.cpp \ 60 Actions/MakroAction.cpp \ 61 Actions/ManipulateAtomsProcess.cpp \ 62 Actions/MethodAction.cpp \ 63 Actions/Process.cpp 64 65 ACTIONSHEADER = \ 66 Actions/Action.hpp \ 67 Actions/ActionHistory.hpp \ 68 Actions/ActionRegistry.hpp \ 69 Actions/ActionSequence.hpp \ 70 Actions/Calculation.hpp \ 71 Actions/Calculation_impl.hpp \ 72 Actions/ErrorAction.hpp \ 73 Actions/MakroAction.hpp \ 74 Actions/ManipulateAtomsProcess.hpp \ 75 Actions/MapOfActions.hpp \ 76 Actions/MethodAction.hpp \ 77 Actions/Process.hpp 78 32 79 EXCEPTIONSOURCE = Exceptions/CustomException.cpp \ 33 80 Exceptions/LinearDependenceException.cpp \ … … 43 90 Exceptions/SkewException.hpp \ 44 91 Exceptions/ZeroVectorException.hpp 45 46 # TODO: Move Exceptionsource back down, when transition is done47 LINALGSOURCE = \48 ${EXCEPTIONSOURCE} \49 ${HELPERSOURCE} \50 gslmatrix.cpp \51 gslvector.cpp \52 linearsystemofequations.cpp \53 Matrix.cpp \54 Space.cpp \55 vector.cpp56 57 58 LINALGHEADER = \59 ${EXCEPTIONHEADER} \60 gslmatrix.hpp \61 gslvector.hpp \62 linearsystemofequations.hpp \63 Matrix.hpp \64 Space.hpp \65 vector.hpp66 67 ANALYSISSOURCE = \68 analysis_bonds.cpp \69 analysis_correlation.cpp70 ANALYSISHEADER = \71 analysis_bonds.hpp \72 analysis_correlation.hpp73 74 ACTIONSSOURCE = \75 Actions/Action.cpp \76 Actions/ActionHistory.cpp \77 Actions/ActionRegistry.cpp \78 Actions/ActionSequence.cpp \79 Actions/ErrorAction.cpp \80 Actions/MakroAction.cpp \81 Actions/ManipulateAtomsProcess.cpp \82 Actions/MethodAction.cpp \83 Actions/Process.cpp84 85 ACTIONSHEADER = \86 Actions/Action.hpp \87 Actions/ActionHistory.hpp \88 Actions/ActionRegistry.hpp \89 Actions/ActionSequence.hpp \90 Actions/Calculation.hpp \91 Actions/Calculation_impl.hpp \92 Actions/ErrorAction.hpp \93 Actions/MakroAction.hpp \94 Actions/ManipulateAtomsProcess.hpp \95 Actions/MapOfActions.hpp \96 Actions/MethodAction.hpp \97 Actions/Process.hpp98 99 92 100 93 PARSERSOURCE = \ … … 149 142 Descriptors/MoleculeNameDescriptor.hpp \ 150 143 Descriptors/MoleculePtrDescriptor.hpp 151 152 #TODO: Exceptionsource should go here, when the transisition makes this possible 144 153 145 SOURCE = \ 154 146 ${ANALYSISSOURCE} \ 155 147 ${ACTIONSSOURCE} \ 156 148 ${ATOMSOURCE} \ 149 ${EXCEPTIONSOURCE} \ 157 150 ${PATTERNSOURCE} \ 158 151 ${PARSERSOURCE} \ … … 179 172 log.cpp \ 180 173 logger.cpp \ 174 Matrix.cpp \ 181 175 moleculelist.cpp \ 182 176 molecule.cpp \ … … 203 197 ${ACTIONSHEADER} \ 204 198 ${ATOMHEADER} \ 199 ${EXCEPTIONHEADER} \ 205 200 ${PARSERHEADER} \ 206 201 ${PATTERNHEADER} \ … … 228 223 log.hpp \ 229 224 logger.hpp \ 225 Matrix.hpp \ 230 226 molecule.hpp \ 231 227 molecule_template.hpp \
Note:
See TracChangeset
for help on using the changeset viewer.