CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
PhysicsPerformancePayload.h
Go to the documentation of this file.
1 #ifndef PhysicsPerformancePayload_h
2 #define PhysicsPerformancePayload_h
3 //
4 // File: CondFormats/PhysicsPerformancePayload/interface/PhysicsPerformancePayload.h
5 //
6 // Zongru Wan, Kansas State University
7 //
8 
10 
11 #include <vector>
12 
14 {
15  public:
17  PhysicsPerformancePayload(int stride, const std::vector<float>& table);
18  int stride(){return stride_;}
19 
20  typedef std::vector<float> Row;
21 
22  Row getRow(int n) const;
23  int nRows() const ;
24 
25  std::vector<float> payload() const {return table_;}
26 
27 
29 
30 
31  protected:
32  int stride_;
33  std::vector<float> table_;
34 
36 };
37 
38 #endif
39 
#define table(NAME)
Definition: DbCore.h:49
std::vector< float > payload() const
#define COND_SERIALIZABLE
Definition: Serializable.h:37