Ignore:
Timestamp:
Aug 28, 2010, 12:58:44 AM (15 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:
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)
Message:

New Action MoleculeAction/CopyAction.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/MapOfActions.cpp

    r76ff55 r1a7fd2  
    6363#include "Actions/CommandAction/VerboseAction.hpp"
    6464#include "Actions/CommandAction/VersionAction.hpp"
     65#include "Actions/FragmentationAction/ConstructBondGraphAction.hpp"
    6566#include "Actions/FragmentationAction/DepthFirstSearchAction.hpp"
    6667#include "Actions/FragmentationAction/SubgraphDissectionAction.hpp"
     
    6869#include "Actions/MoleculeAction/BondFileAction.hpp"
    6970#include "Actions/MoleculeAction/ChangeNameAction.hpp"
     71#include "Actions/MoleculeAction/CopyAction.hpp"
    7072#include "Actions/MoleculeAction/FillWithMoleculeAction.hpp"
    7173#include "Actions/MoleculeAction/LinearInterpolationofTrajectoriesAction.hpp"
     
    214216  DescriptionMap["construct-bondgraph"] = "construct the bond graph of the selected atoms";
    215217  DescriptionMap["convex-envelope"] = "create the convex envelope for a molecule";
     218  DescriptionMap["copy-molecule"] = "copies a molecule with all atoms and bonds";
    216219  DescriptionMap["default-molname"] = "set the default name of new molecules";
    217220  DescriptionMap["depth-first-search"] = "Depth-First Search analysis of the molecular system";
     
    352355  TypeMap["construct-bondgraph"] = &typeid(void);
    353356  TypeMap["convex-envelope"] = &typeid(void);
     357  TypeMap["copy-molecule"] = &typeid(molecule);
    354358  TypeMap["default-molname"] = &typeid(std::string);
    355359  TypeMap["depth-first-search"] = &typeid(double);
     
    491495
    492496  MenuContainsActionMap.insert( pair<std::string, std::string> ("molecule", "bond-file") );
     497  MenuContainsActionMap.insert( pair<std::string, std::string> ("molecule", "copy-molecule") );
    493498  MenuContainsActionMap.insert( pair<std::string, std::string> ("molecule", "change-molname") );
    494499  MenuContainsActionMap.insert( pair<std::string, std::string> ("molecule", "fill-molecule") );
     
    560565  generic.insert("construct-bondgraph");
    561566  generic.insert("convex-envelope");
     567  generic.insert("copy-molecule");
    562568        generic.insert("default-molname");
    563569        generic.insert("depth-first-search");
     
    939945  new CommandVersionAction();
    940946
     947  new FragmentationConstructBondGraphAction();
    941948  new FragmentationDepthFirstSearchAction();
    942949  new FragmentationFragmentationAction();
     
    945952  new MoleculeBondFileAction();
    946953  new MoleculeChangeNameAction();
     954  new MoleculeCopyAction();
    947955  new MoleculeFillWithMoleculeAction();
    948956  new MoleculeLinearInterpolationofTrajectoriesAction();
Note: See TracChangeset for help on using the changeset viewer.