File indexing completed on 2024-04-06 12:02:30
0001
0002
0003
0004
0005
0006
0007
0008
0009 #ifndef RPCObFebmap_h
0010 #define RPCObFebmap_h
0011 #include "CondFormats/Serialization/interface/Serializable.h"
0012
0013 #include <vector>
0014
0015 class RPCObFebmap {
0016 public:
0017 struct Feb_Item {
0018 int dpid;
0019 float thr1;
0020 float thr2;
0021 float thr3;
0022 float thr4;
0023 float vmon1;
0024 float vmon2;
0025 float vmon3;
0026 float vmon4;
0027 float temp1;
0028 float temp2;
0029 int day;
0030 int time;
0031 int noise1;
0032 int noise2;
0033 int noise3;
0034 int noise4;
0035
0036 COND_SERIALIZABLE;
0037 };
0038 RPCObFebmap() {}
0039 virtual ~RPCObFebmap() {}
0040 std::vector<Feb_Item> ObFebMap_rpc;
0041
0042 COND_SERIALIZABLE;
0043 };
0044
0045 #endif