sisi4s
Loading...
Searching...
No Matches
FcidumpWriter.hpp
Go to the documentation of this file.
1#ifndef FCIDUMP_WRITER_DEFINED
2#define FCIDUMP_WRITER_DEFINED
3
5
6namespace sisi4s {
7
8class FcidumpWriter : public Algorithm {
9public:
11 FcidumpWriter(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 FcidumpWriter.hpp:8
FcidumpWriter(std::vector< Argument > const &argumentList)
Definition FcidumpWriter.hpp:11
~FcidumpWriter()
Definition FcidumpWriter.hpp:13
virtual void run()
Definition FcidumpWriter.cxx:34
Definition Algorithm.hpp:10