- Timestamp:
- Sep 19, 2013, 8:24:28 PM (11 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:
- 192397
- Parents:
- d5521e
- git-author:
- Frederik Heber <heber@…> (09/17/13 23:16:06)
- git-committer:
- Frederik Heber <heber@…> (09/19/13 20:24:28)
- Location:
- src
- Files:
-
- 2 added
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/ShapeAction/CombineShapesAction.cpp
rd5521e r87ec81 36 36 37 37 #include "Shapes/BaseShapes.hpp" 38 #include "Shapes/ShapeFactory.hpp" 38 39 #include "Shapes/ShapeRegistry.hpp" 39 40 #include "CodePatterns/Log.hpp" … … 82 83 if (params.shape_name.get() != "") 83 84 s.setName(params.shape_name.get()); 84 else 85 s.setName(ShapeRegistry::getInstance().getDefaultNameForShape(s)); 85 else { 86 const std::string baseName = 87 ShapeFactory::getInstance().getShapeName(s.getType()); 88 s.setName( 89 ShapeRegistry::getInstance().getDefaultNameForShape(baseName) 90 ); 91 } 86 92 std::string old_name = s.getName(); 87 93 std::cout << s.getName() << "\n"; -
src/Actions/ShapeAction/CreateShapeAction.cpp
rd5521e r87ec81 59 59 if (params.shape_name.get() != "") 60 60 s.setName(params.shape_name.get()); 61 else 62 s.setName(ShapeRegistry::getInstance().getDefaultNameForShape(s)); 61 else { 62 const std::string baseName = 63 ShapeFactory::getInstance().getShapeName(s.getType()); 64 s.setName(ShapeRegistry::getInstance().getDefaultNameForShape(baseName)); 65 } 63 66 std::string old_name = s.getName(); 64 67 std::cout << s.getName() << "\n"; … … 87 90 if (state->params.shape_name.get() != "") 88 91 s.setName(state->params.shape_name.get()); 89 else 90 s.setName(ShapeRegistry::getInstance().getDefaultNameForShape(s)); 92 else { 93 const std::string baseName = 94 ShapeFactory::getInstance().getShapeName(s.getType()); 95 s.setName(ShapeRegistry::getInstance().getDefaultNameForShape(baseName)); 96 } 91 97 std::string old_name = s.getName(); 92 98 std::cout << s.getName() << "\n"; -
src/Makefile.am
rd5521e r87ec81 184 184 ${THERMOSTATSOURCE} \ 185 185 ${TESSELATIONSOURCE} \ 186 Shapes/ShapeFactory.cpp \ 186 187 AtomIdSet.cpp \ 187 188 Box.cpp \ … … 206 207 ${THERMOSTATHEADER} \ 207 208 ${TESSELATIONHEADER} \ 209 Shapes/ShapeFactory.hpp \ 208 210 AtomIdSet.hpp \ 209 211 Box.hpp \ -
src/Shapes/Makefile.am
rd5521e r87ec81 5 5 Shapes/BaseShapes.cpp \ 6 6 Shapes/Shape.cpp \ 7 Shapes/ShapeFactory.cpp \8 7 Shapes/ShapeOps.cpp \ 9 8 Shapes/ShapeRegistry.cpp … … 14 13 Shapes/Shape_impl.hpp \ 15 14 Shapes/ShapeExceptions.hpp \ 16 Shapes/ShapeFactory.hpp \17 15 Shapes/ShapeOps.hpp \ 18 16 Shapes/ShapeOps_impl.hpp \ -
src/Shapes/ShapeRegistry.cpp
rd5521e r87ec81 147 147 } 148 148 149 std::string ShapeRegistry::getDefaultNameForShape( Shape s) const149 std::string ShapeRegistry::getDefaultNameForShape(const std::string &baseName) const 150 150 { 151 std::string baseName = ShapeFactory::getInstance().getShapeName(s.getType());152 151 int n = 1; 153 152 while(true){ -
src/Shapes/ShapeRegistry.hpp
rd5521e r87ec81 30 30 void addShape(Shape s); 31 31 void removeShape(const std::string &name); 32 //Shape* getShapeByName(const std::string name); 33 //bool isShapePresentByName(const std::string name) const; 34 std::string getDefaultNameForShape(Shape s) const; 32 std::string getDefaultNameForShape(const std::string &baseName) const; 35 33 36 34 enum NotificationType { -
src/Shapes/unittests/Makefile.am
rd5521e r87ec81 48 48 ../Shapes/unittests/ShapeFactoryUnitTest.hpp \ 49 49 ../Shapes/unittests/stubs/ApproximateShapeAreaStub.cpp \ 50 ../Shapes/unittests/stubs/ApproximateShapeVolumeStub.cpp 50 ../Shapes/unittests/stubs/ApproximateShapeVolumeStub.cpp \ 51 ../Shapes/unittests/stubs/moleculeStub.cpp \ 52 ../Shapes/unittests/stubs/WorldSelectedMoleculesStub.cpp 51 53 nodist_ShapeFactoryUnitTest_SOURCES = \ 52 54 ../Helpers/defs.hpp \ 53 ../Helpers/defs.cpp 54 ShapeFactoryUnitTest_LDADD = $(SHAPELIBS) 55 ../Helpers/defs.cpp \ 56 ../Shapes/ShapeFactory.cpp \ 57 ../Shapes/ShapeFactory.hpp 58 ShapeFactoryUnitTest_LDADD = \ 59 ../libMolecuilderElement.la \ 60 $(SHAPELIBS) 55 61 56 62 ShapeOpsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
Note:
See TracChangeset
for help on using the changeset viewer.