otsdaq  v1_01_04
 All Classes Namespaces Functions
FESlowControlsConfiguration.h
1 #ifndef _ots_FESlowControlsConfiguration_h_
2 #define _ots_FESlowControlsConfiguration_h_
3 
4 #include "otsdaq-core/ConfigurationDataFormats/ConfigurationBase.h"
5 #include "otsdaq-core/ConfigurationInterface/ConfigurationManager.h"
6 
7 #include <string>
8 
9 namespace ots
10 {
11 
13 {
14 
15 public:
16 
18  virtual ~FESlowControlsConfiguration(void);
19 
20  //Methods
21  void init(ConfigurationManager *configManager);
22 
23  //Getters
24 
25 private:
26  //Column names
27  struct ColSlowControls
28  {
29  std::string const colDataType_ = "ChannelDataType";
30  } colNames_;
31 };
32 }
33 #endif