source: src/Actions/MoleculeAction/RotateToPrincipalAxisSystemAction.def@ 6145577

AutomationFragmentation_failures Candidate_v1.6.1 ChemicalSpaceEvaluator Enhanced_StructuralOptimization_continued Exclude_Hydrogens_annealWithBondGraph ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_contraction-expansion Gui_displays_atomic_force_velocity PythonUI_with_named_parameters StoppableMakroAction TremoloParser_IncreasedPrecision
Last change on this file since 6145577 was 536b13, checked in by Frederik Heber <frederik.heber@…>, 8 years ago

RotateToPrincipalAxisSystemAction now has Undo/Redo working.

  • TESTS: Removed XFAIL from these tests.
  • Property mode set to 100644
File size: 1.4 KB
RevLine 
[1fd675]1/*
2 * RotateToPrincipalAxisSystemAction.def
3 *
4 * Created on: Aug 26, 2010
5 * Author: heber
6 */
7
8// all includes and forward declarations necessary for non-integral types below
[536b13]9#include <vector>
10
[24fbf3]11#include "Actions/Values.hpp"
[536b13]12#include "Atom/AtomicInfo.hpp"
[1fd675]13#include "LinearAlgebra/Vector.hpp"
[24fbf3]14
[7a1e7d]15#include "Parameters/Validators/Specific/VectorNotZeroValidator.hpp"
[649aaa]16
[1fd675]17// i.e. there is an integer with variable name Z that can be found in
18// ValueStorage by the token "Z" -> first column: int, Z, "Z"
[6ba9ba]19// "undefine" if no parameters are required, use (NOPARAM_DEFAULT) for each (undefined) default value
[1fd675]20#define paramtypes (Vector)
[967b3c]21#define paramtokens ("rotate-to-principal-axis-system")
[e4afb4]22#define paramdescriptions ("vector to which to align the biggest eigenvector with")
23#undef paramdefaults
[1fd675]24#define paramreferences (Axis)
[23958d]25#define paramvalids \
[7a1e7d]26(VectorNotZeroValidator())
[1fd675]27
[536b13]28#define statetypes (std::vector<AtomicInfo>)
29#define statereferences (undoinfo)
[1fd675]30
31// some defines for all the names, you may use ACTION, STATE and PARAMS
32#define CATEGORY Molecule
[052bfd8]33#define MENUNAME "molecule"
34#define MENUPOSITION 9
[1fd675]35#define ACTIONNAME RotateToPrincipalAxisSystem
[967b3c]36#define TOKEN "rotate-to-principal-axis-system"
[1fd675]37
[24fbf3]38
39// finally the information stored in the ActionTrait specialization
40#define DESCRIPTION "calculate the principal axis system of the specified molecule and rotate specified axis to align with main axis"
41#define SHORTFORM "m"
Note: See TracBrowser for help on using the repository browser.