Newer
Older
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#ifndef ROOT_THcHodoEff
#define ROOT_THcHodoEff
///////////////////////////////////////////////////////////////////////////////
// //
// THcHodoEff //
// //
///////////////////////////////////////////////////////////////////////////////
#include "THaPhysicsModule.h"
#include "THcHodoscope.h"
#include "THaSpectrometer.h"
#include "THaTrack.h"
class THcHodoEff : public THaPhysicsModule {
public:
THcHodoEff( const char* name, const char* description, const char* hodname);
virtual ~THcHodoEff();
virtual Int_t Begin( THaRunBase* r=0 );
virtual Int_t End( THaRunBase* r=0 );
virtual EStatus Init( const TDatime& run_time );
virtual Int_t Process( const THaEvData& );
void Reset( Option_t* opt="" );
protected:
virtual Int_t ReadDatabase( const TDatime& date);
// Data needed for efficiency calculation for one Hodoscope paddle
Double_t* fZPos; //
TString fName; // Name of hodoscope
THcHodoscope* fHod; // Hodscope object
THaSpectrometer* fSpectro; // Spectrometer object
Long64_t fNevt;
// Information about the hodoscopes that we get from the
// THcHodoscope object
Int_t fNPlanes;
THcScintillatorPlane** fPlanes;
Double_t* fPosZ;
Double_t* fSpacing;
Double_t* fCenterFirst;
Int_t* fNCounters;
// Int_t fMaxNcounters;
Double_t fStatSlop;
Double_t fMaxChisq;
Double_t* fHodoSlop;
// Arrays for accumulating statistics
vector<vector<vector<Int_t> > > fHitShould;
vector<vector<vector<Int_t> > > fStatAndHitDel;
vector<vector<vector<Int_t> > > fStatTrkDel;
vector<vector<Int_t> > fStatPosHit;
vector<vector<Int_t> > fStatNegHit;
vector<vector<Int_t> > fStatAndHit;
vector<vector<Int_t> > fStatOrHit;
vector<vector<Int_t> > fBothGood;
vector<vector<Int_t> > fNegGood;
vector<vector<Int_t> > fPosGood;
Int_t* fHitPlane;
ClassDef(THcHodoEff,0) // Hodoscope efficiency module
};
#endif