sisi4s
Loading...
Searching...
No Matches
OneBodyRotation.hpp
Go to the documentation of this file.
1#ifndef _ONE_BODYROTATIONDEFINED
2#define _ONE_BODYROTATIONDEFINED
3
5
6namespace sisi4s {
7
8class OneBodyRotation : public Algorithm {
9public:
11 OneBodyRotation(std::vector<Argument> const &argumentList)
12 : Algorithm(argumentList) {}
14 virtual void run();
15};
16} // namespace sisi4s
17
18#endif
#define ALGORITHM_REGISTRAR_DECLARATION(NAME)
Auxiliary macro declaring the algorithm registrar for the algorithm type of the given name....
Definition Algorithm.hpp:169
Definition Algorithm.hpp:26
Definition OneBodyRotation.hpp:8
~OneBodyRotation()
Definition OneBodyRotation.hpp:13
virtual void run()
Definition OneBodyRotation.cxx:13
OneBodyRotation(std::vector< Argument > const &argumentList)
Definition OneBodyRotation.hpp:11
Definition Algorithm.hpp:10