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
#ifndef ROOT_THcDC
#define ROOT_THcDC
///////////////////////////////////////////////////////////////////////////////
// //
// THcDC //
// //
///////////////////////////////////////////////////////////////////////////////
#include "THaTrackingDetector.h"
#include "THcHitList.h"
#include "THcRawDCHit.h"
#include "THcDriftChamberPlane.h"
#include "THcDriftChamber.h"
#include "TMath.h"
//class THaScCalib;
class TClonesArray;
class THcDC : public THaTrackingDetector, public THcHitList {
public:
THcDC( const char* name, const char* description = "",
THaApparatus* a = NULL );
virtual ~THcDC();
virtual Int_t Decode( const THaEvData& );
virtual EStatus Init( const TDatime& run_time );
virtual Int_t CoarseTrack( TClonesArray& tracks );
virtual Int_t FineTrack( TClonesArray& tracks );
virtual Int_t ApplyCorrections( void );
// Int_t GetNHits() const { return fNhit; }
Int_t GetNTracks() const { return fTrackProj->GetLast()+1; }
const TClonesArray* GetTrackHits() const { return fTrackProj; }
Int_t GetNWires(Int_t plane) const { return fNWires[plane-1];}
Int_t GetNChamber(Int_t plane) const { return fNChamber[plane-1];}
Int_t GetWireOrder(Int_t plane) const { return fWireOrder[plane-1];}
Int_t GetPitch(Int_t plane) const { return fPitch[plane-1];}
Int_t GetCentralWire(Int_t plane) const { return fCentralWire[plane-1];}
Int_t GetTdcWinMin(Int_t plane) const { return fTdcWinMin[plane-1];}
Int_t GetTdcWinMax(Int_t plane) const { return fTdcWinMax[plane-1];}
Double_t GetAlphaAngle(Int_t plane) const { return fAlphaAngle[plane-1];}
Double_t GetBetaAngle(Int_t plane) const { return fBetaAngle[plane-1];}
Double_t GetGammaAngle(Int_t plane) const { return fGammaAngle[plane-1];}
Int_t GetMinHits(Int_t chamber) const { return fMinHits[chamber-1];}
Int_t GetMaxHits(Int_t chamber) const { return fMaxHits[chamber-1];}
Int_t GetMinCombos(Int_t chamber) const { return fMinCombos[chamber-1];}
Double_t GetSpacePointCriterion(Int_t chamber) const { return TMath::Sqrt(fSpace_Point_Criterion2[chamber-1]);}
Stephen A. Wood
committed
Double_t GetCentralTime(Int_t plane) const { return fCentralTime[plane-1];}
Int_t GetDriftTimeSign(Int_t plane) const { return fDriftTimeSign[plane-1];}
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
Double_t GetPlaneTimeZero(Int_t plane) const { return fPlaneTimeZero[plane-1];}
Double_t GetNSperChan() const { return fNSperChan;}
Double_t GetCenter(Int_t plane) const {
Int_t chamber = GetNChamber(plane)-1;
return
fXCenter[chamber]*sin(fAlphaAngle[plane-1]) +
fYCenter[chamber]*cos(fAlphaAngle[plane-1]);
}
// friend class THaScCalib;
THcDC(); // for ROOT I/O
protected:
// Calibration
// Per-event data
Int_t fNhits;
// Potential Hall C parameters. Mostly here for demonstration
Int_t fNPlanes;
char** fPlaneNames;
Int_t fNChambers;
Double_t fNSperChan; /* TDC bin size */
Double_t fWireVelocity;
// Each of these will be dimensioned with the number of chambers
Double_t* fXCenter;
Double_t* fYCenter;
Int_t* fMinHits;
Int_t* fMaxHits;
Int_t* fMinCombos;
Double_t* fSpace_Point_Criterion2;
// Each of these will be dimensioned with the number of planes
// A THcDCPlane class object will need to access the value for
// its plane number. Should we have a Get method for each or
Int_t* fTdcWinMin;
Int_t* fTdcWinMax;
Int_t* fCentralTime;
Int_t* fNWires; // Number of wires per plane
Int_t* fNChamber;
Int_t* fWireOrder;
Int_t* fDriftTimeSign;
Double_t* fZPos;
Double_t* fAlphaAngle;
Double_t* fBetaAngle;
Double_t* fGammaAngle;
Double_t* fPitch;
Double_t* fCentralWire;
Double_t* fPlaneTimeZero;
THcDriftChamberPlane** fPlanes; // List of plane objects
THcDriftChamber** fChambers; // List of chamber objects
TClonesArray* fTrackProj; // projection of track onto scintillator plane
// and estimated match to TOF paddle
// Useful derived quantities
// double tan_angle, sin_angle, cos_angle;
// static const char NDEST = 2;
// struct DataDest {
// Int_t* nthit;
// Int_t* nahit;
// Double_t* tdc;
// Double_t* tdc_c;
// Double_t* adc;
// Double_t* adc_p;
// Double_t* adc_c;
// Double_t* offset;
// Double_t* ped;
// Double_t* gain;
// } fDataDest[NDEST]; // Lookup table for decoder
void ClearEvent();
void DeleteArrays();
virtual Int_t ReadDatabase( const TDatime& date );
virtual Int_t DefineVariables( EMode mode = kDefine );
void Setup(const char* name, const char* description);
ClassDef(THcDC,0) // Drift Chamber class
};
////////////////////////////////////////////////////////////////////////////////
#endif