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