00001 #ifndef _ots_FSSRDACsConfiguration_h_
00002 #define _ots_FSSRDACsConfiguration_h_
00003
00004 #include "otsdaq-components/DetectorConfiguration/ROCDACs.h"
00005
00006 namespace ots
00007 {
00008 class ConfigurationTree;
00009
00010 class FSSRDACsConfiguration
00011 {
00012 public:
00013 FSSRDACsConfiguration(void);
00014 virtual ~FSSRDACsConfiguration(void);
00015
00016 const ROCDACs getROCDACs(const ConfigurationTree& dacsConfiguration);
00017
00018 private:
00019 std::map<std::string, unsigned int> dacNameToDACAddress_;
00020 };
00021 }
00022 #endif