File indexing completed on 2024-04-06 12:02:17
0001 #ifndef __RPFlatParams_h__
0002 #define __RPFlatParams_h__
0003
0004 #include "CondFormats/Serialization/interface/Serializable.h"
0005
0006 #include <vector>
0007 class RPFlatParams {
0008 public:
0009 struct EP {
0010 float x[50];
0011 float y[50];
0012 float xSub1[50];
0013 float ySub1[50];
0014 float xSub2[50];
0015 float ySub2[50];
0016 int RPNameIndx[50];
0017
0018 COND_SERIALIZABLE;
0019 };
0020 RPFlatParams() {}
0021 virtual ~RPFlatParams() {}
0022 std::vector<EP> m_table;
0023
0024 COND_SERIALIZABLE;
0025 };
0026
0027 #endif