ToolDAQFramework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros
DummyTool.h
Go to the documentation of this file.
1 #ifndef DummyTool_H
2 #define DummyTool_H
3 
4 #include <string>
5 #include <iostream>
6 
7 #include "Tool.h"
8 
18 class DummyTool: public Tool {
19 
20 
21  public:
22 
23  DummyTool();
24  bool Initialise(std::string configfile,DataModel &data);
25  bool Execute();
26  bool Finalise();
27 
28 
29  private:
30 
31 };
32 
33 
34 #endif
bool Initialise(std::string configfile, DataModel &data)
Assigns verbosity from config file and creates a log message.
Definition: DummyTool.cpp:6
bool Execute()
Creates a log message.
Definition: DummyTool.cpp:22
DummyTool()
Constructor.
Definition: DummyTool.cpp:3
bool Finalise()
Does nothing.
Definition: DummyTool.cpp:38