Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:02:03

0001 #ifndef DataRecord_PixelDCSRcds_h
0002 #define DataRecord_PixelDCSRcds_h
0003 
0004 #include "FWCore/Framework/interface/EventSetupRecordImplementation.h"
0005 
0006 struct CaenChannel;
0007 
0008 template <class>
0009 struct PixelDCSObject;
0010 
0011 struct PixelCaenChannelIsOnRcd : public edm::eventsetup::EventSetupRecordImplementation<PixelCaenChannelIsOnRcd> {
0012   typedef PixelDCSObject<bool> Object;
0013 };
0014 
0015 struct PixelCaenChannelIMonRcd : public edm::eventsetup::EventSetupRecordImplementation<PixelCaenChannelIMonRcd> {
0016   typedef PixelDCSObject<float> Object;
0017 };
0018 
0019 struct PixelCaenChannelRcd : public edm::eventsetup::EventSetupRecordImplementation<PixelCaenChannelRcd> {
0020   typedef PixelDCSObject<CaenChannel> Object;
0021 };
0022 
0023 #endif