Hall C ROOT/C++ Analyzer (hcana)
THcAnalyzer.h
Go to the documentation of this file.
1 #ifndef ROOT_THcAnalyzer
2 #define ROOT_THcAnalyzer
3 
5 //
6 // THcAnalyzer
7 //
9 
10 #include "THaAnalyzer.h"
11 
12 class THcAnalyzer : public THaAnalyzer {
13 
14 public:
15 
16  THcAnalyzer();
17  virtual ~THcAnalyzer();
18 
19  void SetPedestalEvtype( Int_t evtype ) { fPedestalEvtype = evtype; }
20 
21  void PrintReport( const char* templatefile, const char* ofile);
22 
23 protected:
24 
26 
27 private:
28  // THcAnalyzer( const THcAnalyzer& );
29  // THcAnalyzer& operator=( const THcAnalyzer& );
30  void LoadInfo();
31 
32  ClassDef(THcAnalyzer,0) //Hall C Analyzer Standard Event Loop
33 
34 };
35 
36 #endif
Int_t fPedestalEvtype
Definition: THcAnalyzer.h:25
Hall C analyzer class.
Definition: THcAnalyzer.h:12
int Int_t
virtual ~THcAnalyzer()
Definition: THcAnalyzer.cxx:46
#define ClassDef(name, id)
void PrintReport(const char *templatefile, const char *ofile)
Definition: THcAnalyzer.cxx:53
void SetPedestalEvtype(Int_t evtype)
Definition: THcAnalyzer.h:19
void LoadInfo()