Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef EcalTPGPedestals_h
0002 #define EcalTPGPedestals_h
0003 
0004 #include "CondFormats/Serialization/interface/Serializable.h"
0005 
0006 #include "CondFormats/EcalObjects/interface/EcalCondObjectContainer.h"
0007 
0008 struct EcalTPGPedestal {
0009   EcalTPGPedestal() : mean_x12(0), mean_x6(0), mean_x1(0) {}
0010   uint32_t mean_x12;
0011   uint32_t mean_x6;
0012   uint32_t mean_x1;
0013 
0014   COND_SERIALIZABLE;
0015 };
0016 
0017 typedef EcalCondObjectContainer<EcalTPGPedestal> EcalTPGPedestalsMap;
0018 typedef EcalTPGPedestalsMap::const_iterator EcalTPGPedestalsMapIterator;
0019 typedef EcalTPGPedestalsMap EcalTPGPedestals;
0020 
0021 #endif