CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
RPCDQMObject.h
Go to the documentation of this file.
1 #ifndef RPCDQMObject_h
2 #define RPCDQMObject_h
3 
4 #include<vector>
5 #include<map>
6 #include<iostream>
7 #include<boost/cstdint.hpp>
8 
9 class RPCDQMObject {
10 
11  public:
12 
13  int dqmv;
14  int run;
15 
16  //structure suitable for cluster size
17  struct DQMObjectItem {
18  int dpid;
19  float clusterSize;
20  float bx;
21  float bxrms;
22  float efficiency;
23  float numdigi;
24  float numcluster;
25  int status;
26  float weight;
27  };
28 
31 
33 
34  std::vector<DQMObjectItem> const & getCls() const {return v_cls;}
35  std::vector<DQMObjectItem> v_cls;
36 
37  private:
38 
39 };
40 
41 #endif //RPCDQMObject_h
std::vector< DQMObjectItem > const & getCls() const
Definition: RPCDQMObject.h:34
std::vector< DQMObjectItem > v_cls
Definition: RPCDQMObject.h:35
RPCDQMObject * Fake_RPCDQMObject()
Definition: RPCDQMObject.cc:4