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;
0012
0013 double barrel_thresh;
0014 float time_interval;
0015
0016 COND_SERIALIZABLE;
0017 };
0018 #endif