1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#ifndef CSCDQM_StripClusterFitData_h
#define CSCDQM_StripClusterFitData_h
#include <TObject.h>
namespace cscdqm {
/**
* @class StripClusterFitData
* @brief Strip Cluster Fit Data Object
*/
class StripClusterFitData {
public:
int channel() { return channel_; }
float height(int i) { return height_[i]; }
float bx() { return bx_; }
//private:
int channel_;
float height_[16]; //or 16 for Cosmic Test
float bx_;
StripClusterFitData();
virtual ~StripClusterFitData();
// ClassDef(StripClusterFitData,1) //StripClusterFitData
};
} // namespace cscdqm
#endif
|