Changeset 1a7fd2 for src/Actions/MapOfActions.cpp
- Timestamp:
- Aug 28, 2010, 12:58:44 AM (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:
- dc1d9e
- Parents:
- 76ff55
- git-author:
- Frederik Heber <heber@…> (08/27/10 21:44:59)
- git-committer:
- Frederik Heber <heber@…> (08/28/10 00:58:44)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/MapOfActions.cpp
r76ff55 r1a7fd2 63 63 #include "Actions/CommandAction/VerboseAction.hpp" 64 64 #include "Actions/CommandAction/VersionAction.hpp" 65 #include "Actions/FragmentationAction/ConstructBondGraphAction.hpp" 65 66 #include "Actions/FragmentationAction/DepthFirstSearchAction.hpp" 66 67 #include "Actions/FragmentationAction/SubgraphDissectionAction.hpp" … … 68 69 #include "Actions/MoleculeAction/BondFileAction.hpp" 69 70 #include "Actions/MoleculeAction/ChangeNameAction.hpp" 71 #include "Actions/MoleculeAction/CopyAction.hpp" 70 72 #include "Actions/MoleculeAction/FillWithMoleculeAction.hpp" 71 73 #include "Actions/MoleculeAction/LinearInterpolationofTrajectoriesAction.hpp" … … 214 216 DescriptionMap["construct-bondgraph"] = "construct the bond graph of the selected atoms"; 215 217 DescriptionMap["convex-envelope"] = "create the convex envelope for a molecule"; 218 DescriptionMap["copy-molecule"] = "copies a molecule with all atoms and bonds"; 216 219 DescriptionMap["default-molname"] = "set the default name of new molecules"; 217 220 DescriptionMap["depth-first-search"] = "Depth-First Search analysis of the molecular system"; … … 352 355 TypeMap["construct-bondgraph"] = &typeid(void); 353 356 TypeMap["convex-envelope"] = &typeid(void); 357 TypeMap["copy-molecule"] = &typeid(molecule); 354 358 TypeMap["default-molname"] = &typeid(std::string); 355 359 TypeMap["depth-first-search"] = &typeid(double); … … 491 495 492 496 MenuContainsActionMap.insert( pair<std::string, std::string> ("molecule", "bond-file") ); 497 MenuContainsActionMap.insert( pair<std::string, std::string> ("molecule", "copy-molecule") ); 493 498 MenuContainsActionMap.insert( pair<std::string, std::string> ("molecule", "change-molname") ); 494 499 MenuContainsActionMap.insert( pair<std::string, std::string> ("molecule", "fill-molecule") ); … … 560 565 generic.insert("construct-bondgraph"); 561 566 generic.insert("convex-envelope"); 567 generic.insert("copy-molecule"); 562 568 generic.insert("default-molname"); 563 569 generic.insert("depth-first-search"); … … 939 945 new CommandVersionAction(); 940 946 947 new FragmentationConstructBondGraphAction(); 941 948 new FragmentationDepthFirstSearchAction(); 942 949 new FragmentationFragmentationAction(); … … 945 952 new MoleculeBondFileAction(); 946 953 new MoleculeChangeNameAction(); 954 new MoleculeCopyAction(); 947 955 new MoleculeFillWithMoleculeAction(); 948 956 new MoleculeLinearInterpolationofTrajectoriesAction();
Note:
See TracChangeset
for help on using the changeset viewer.