File indexing completed on 2021-02-14 13:30:06
0001 #ifndef Geometry_HGCalCommonData_FastTimeParameters_h
0002 #define Geometry_HGCalCommonData_FastTimeParameters_h
0003
0004 #include <cstdint>
0005 #include <string>
0006 #include <vector>
0007 #include "CondFormats/Serialization/interface/Serializable.h"
0008
0009 class FastTimeParameters {
0010 public:
0011 FastTimeParameters();
0012 ~FastTimeParameters();
0013
0014 int nZBarrel_;
0015 int nPhiBarrel_;
0016 int nEtaEndcap_;
0017 int nPhiEndcap_;
0018 std::vector<double> geomParBarrel_;
0019 std::vector<double> geomParEndcap_;
0020
0021 COND_SERIALIZABLE;
0022 };
0023
0024 #endif