Changes in src/Actions/MapOfActions.cpp [eaf4ae:4e4c4d]
- File:
-
- 1 edited
-
src/Actions/MapOfActions.cpp (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/MapOfActions.cpp
reaf4ae r4e4c4d 26 26 #include "CommandLineParser.hpp" 27 27 #include "element.hpp" 28 #include " Helpers/Log.hpp"29 #include " LinearAlgebra/Matrix.hpp"28 #include "log.hpp" 29 #include "Matrix.hpp" 30 30 #include "molecule.hpp" 31 31 #include "periodentafel.hpp" 32 #include " LinearAlgebra/Vector.hpp"33 #include " Helpers/Verbose.hpp"32 #include "vector.hpp" 33 #include "verbose.hpp" 34 34 35 35 #include "Actions/ActionRegistry.hpp" … … 55 55 #include "Actions/MoleculeAction/FillWithMoleculeAction.hpp" 56 56 #include "Actions/MoleculeAction/LinearInterpolationofTrajectoriesAction.hpp" 57 #include "Actions/MoleculeAction/RotateAroundOriginByAngleAction.hpp"58 #include "Actions/MoleculeAction/RotateAroundSelfByAngleAction.hpp"59 57 #include "Actions/MoleculeAction/RotateToPrincipalAxisSystemAction.hpp" 60 58 #include "Actions/MoleculeAction/SaveAdjacencyAction.hpp" … … 205 203 DescriptionMap["remove-sphere"] = "remove sphere of atoms of around a specified atom"; 206 204 DescriptionMap["repeat-box"] = "create periodic copies of the simulation box per axis"; 207 DescriptionMap["rotate-origin"] = "rotates molecules by a specific angle around origin";208 DescriptionMap["rotate-self"] = "rotates molecules by a specific angle around own center of gravity";209 205 DescriptionMap["rotate-to-pas"] = "calculate the principal axis system of the specified molecule and rotate specified axis to align with main axis"; 210 206 DescriptionMap["save-adjacency"] = "name of the adjacency file to write to"; … … 323 319 TypeMap["remove-sphere"] = &typeid(double); 324 320 TypeMap["repeat-box"] = &typeid(VectorValue); 325 TypeMap["rotate-origin"] = &typeid(double); 326 TypeMap["rotate-self"] = &typeid(double); 327 TypeMap["rotate-to-pas"] = &typeid(VectorValue); 321 TypeMap["rotate-to-pas"] = &typeid(molecule); 328 322 TypeMap["save-adjacency"] = &typeid(std::string); 329 323 TypeMap["save-bonds"] = &typeid(std::string); … … 429 423 MenuContainsActionMap.insert( pair<std::string, std::string> ("molecule", "fill-molecule") ); 430 424 MenuContainsActionMap.insert( pair<std::string, std::string> ("molecule", "linear-interpolate") ); 431 MenuContainsActionMap.insert( pair<std::string, std::string> ("molecule", "rotate-origin") );432 MenuContainsActionMap.insert( pair<std::string, std::string> ("molecule", "rotate-self") );433 425 MenuContainsActionMap.insert( pair<std::string, std::string> ("molecule", "rotate-to-pas") ); 434 426 MenuContainsActionMap.insert( pair<std::string, std::string> ("molecule", "save-adjacency") ); … … 495 487 generic.insert("remove-sphere"); 496 488 generic.insert("repeat-box"); 497 generic.insert("rotate-origin");498 generic.insert("rotate-self");499 489 generic.insert("rotate-to-pas"); 500 490 generic.insert("save-adjacency"); … … 817 807 new MoleculeFillWithMoleculeAction(); 818 808 new MoleculeLinearInterpolationofTrajectoriesAction(); 819 new MoleculeRotateAroundOriginByAngleAction();820 new MoleculeRotateAroundSelfByAngleAction();821 809 new MoleculeRotateToPrincipalAxisSystemAction(); 822 810 new MoleculeSaveAdjacencyAction();
Note:
See TracChangeset
for help on using the changeset viewer.
