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 
9 #include <vector>
10 
12 {
13  public:
15  PhysicsPerformancePayload(int stride, std::vector<float> table);
16  int stride(){return stride_;}
17 
18  typedef std::vector<float> Row;
19 
20  Row getRow(int n) const;
21  int nRows() const ;
22 
23  std::vector<float> payload() const {return table_;}
24 
25 
27 
28 
29  protected:
30  int stride_;
31  std::vector<float> table_;
32 };
33 
34 #endif
35 
list table
Definition: asciidump.py:386
std::vector< float > payload() const