00001 #ifndef _ots_FESlowControlsConfiguration_h_
00002 #define _ots_FESlowControlsConfiguration_h_
00003
00004 #include "otsdaq-core/ConfigurationDataFormats/ConfigurationBase.h"
00005 #include "otsdaq-core/ConfigurationInterface/ConfigurationManager.h"
00006
00007 #include <string>
00008
00009 namespace ots
00010 {
00011
00012 class FESlowControlsConfiguration : public ConfigurationBase
00013 {
00014
00015 public:
00016
00017 FESlowControlsConfiguration(void);
00018 virtual ~FESlowControlsConfiguration(void);
00019
00020
00021 void init(ConfigurationManager *configManager);
00022
00023
00024
00025 private:
00026
00027 struct ColSlowControls
00028 {
00029 std::string const colDataType_ = "ChannelDataType";
00030 } colNames_;
00031 };
00032 }
00033 #endif