Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef CondFormats_EcalObjects_EcalSimComponentShape_hh
0002 #define CondFormats_EcalObjects_EcalSimComponentShape_hh
0003 
0004 #include "CondFormats/Serialization/interface/Serializable.h"
0005 #include <vector>
0006 
0007 class EcalSimComponentShape {
0008 public:
0009   EcalSimComponentShape() = default;
0010 
0011   std::vector<std::vector<float> > barrel_shapes;  // there is no need to getters/setters, just access data directly
0012 
0013   double barrel_thresh;
0014   float time_interval;  // time interval of the shape
0015 
0016   COND_SERIALIZABLE;
0017 };
0018 #endif