sisi4s
Loading...
Searching...
No Matches
TensorGetMax.hpp
Go to the documentation of this file.
1#ifndef TENSOR_GET_MAX_DEFINED
2#define TENSOR_GET_MAX_DEFINED
3
5
6namespace sisi4s {
7class TensorGetMax : public Algorithm {
8public:
10 TensorGetMax(std::vector<Argument> const &argumentList)
11 : Algorithm(argumentList) {}
16 virtual void run();
17};
18} // namespace sisi4s
19
20#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 TensorGetMax.hpp:7
~TensorGetMax()
Definition TensorGetMax.hpp:12
virtual void run()
Writes the real tensor data given as Data argument to a file.
Definition TensorGetMax.cxx:9
TensorGetMax(std::vector< Argument > const &argumentList)
Definition TensorGetMax.hpp:10
Definition Algorithm.hpp:10