HARPO  5.1.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
HarpoPedsRaw.h
Go to the documentation of this file.
1 #ifndef HARPOPEDSRAW_H
2 #define HARPOPEDSRAW_H
3 //
5 // HarpoPedsRaw
6 //
8 
9 #include "TObject.h"
10 
11 #define NCHIP 4
12 #define NCHAN 76
13 
14 class HarpoPedsRaw : public TObject
15 {
16 public:
18  virtual ~HarpoPedsRaw() {}
20  void clear();
21 
22  Int_t nRun;
23  Int_t Plane;
24  Int_t Pass;
25  Int_t CardNo;
26  Double_t Mean[NCHIP * NCHAN];
27  Double_t Sigma[NCHIP * NCHAN];
28 protected:
29 
30 private:
31  ClassDef(HarpoPedsRaw,1)
32 
33 };
34 
35 #endif // HARPOPEDSRAW_H
36 // Local Variables:
37 // mode: c++
38 // End:
#define NCHIP
Definition: HarpoPedsRaw.h:11
Double_t Mean[NCHIP *NCHAN]
Definition: HarpoPedsRaw.h:26
void clear()
Clear all class data.
#define NCHAN
Definition: HarpoPedsRaw.h:12
Double_t Sigma[NCHIP *NCHAN]
Definition: HarpoPedsRaw.h:27
virtual ~HarpoPedsRaw()
Definition: HarpoPedsRaw.h:18