Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 10:46:57

0001 #ifndef HcalChannelQuality_h
0002 #define HcalChannelQuality_h
0003 
0004 /** 
0005 \class HcalChannelQuality
0006 \author Radek Ofierzynski
0007 POOL object to store HcalChannelStatus
0008 */
0009 
0010 #include "CondFormats/Serialization/interface/Serializable.h"
0011 
0012 #include "CondFormats/HcalObjects/interface/HcalCondObjectContainer.h"
0013 #include "CondFormats/HcalObjects/interface/HcalChannelStatus.h"
0014 
0015 //typedef HcalCondObjectContainer<HcalChannelStatus> HcalChannelQuality;
0016 
0017 class HcalChannelQuality : public HcalCondObjectContainer<HcalChannelStatus> {
0018 public:
0019 #ifndef HCAL_COND_SUPPRESS_DEFAULT
0020   HcalChannelQuality() : HcalCondObjectContainer<HcalChannelStatus>(nullptr) {}
0021 #endif
0022   HcalChannelQuality(const HcalTopology* topo) : HcalCondObjectContainer<HcalChannelStatus>(topo) {}
0023 
0024   std::string myname() const override { return (std::string) "HcalChannelQuality"; }
0025 
0026 private:
0027   COND_SERIALIZABLE;
0028 };
0029 
0030 #endif