94 |
Float_t adc; ///<raw ADC value for this PMT |
Float_t adc; ///<raw ADC value for this PMT |
95 |
Float_t tdc; ///<raw TDC value for this PMT |
Float_t tdc; ///<raw TDC value for this PMT |
96 |
Float_t tdc_tw; ///<time-walk corrected TDC value for this PMT |
Float_t tdc_tw; ///<time-walk corrected TDC value for this PMT |
97 |
|
Float_t l0flag_adc; ///< warning flags from unpacking |
98 |
|
Float_t l0flag_tdc; ///< warning flags from unpacking |
99 |
// |
// |
100 |
ToFPMT(); |
ToFPMT(); |
101 |
ToFPMT(const ToFPMT&); |
ToFPMT(const ToFPMT&); |
103 |
ToFPMT* GetToFPMT(){return this;}; |
ToFPMT* GetToFPMT(){return this;}; |
104 |
void Clear(Option_t *t=""); |
void Clear(Option_t *t=""); |
105 |
|
|
106 |
ClassDef(ToFPMT,2); |
ClassDef(ToFPMT,3); |
107 |
}; |
}; |
108 |
|
|
109 |
/** |
/** |
258 |
TClonesArray *ToFTrk; ///<track related variable class |
TClonesArray *ToFTrk; ///<track related variable class |
259 |
Int_t tof_j_flag[6]; ///<number of hitted paddle(s) for each ToF layer: flag = flag + 2**(paddlenumber-1) |
Int_t tof_j_flag[6]; ///<number of hitted paddle(s) for each ToF layer: flag = flag + 2**(paddlenumber-1) |
260 |
// |
// |
261 |
Int_t unpackError;///< zero if no error presente |
Int_t unpackError;///< zero if no errors |
262 |
|
Int_t unpackWarning;///< zero if no warnings | bitwise: ... 3 2 1 0 --> bit 0 = discharging flag on at least one PMT (adc OR tdc), bit 1 = there is at least one PMT off (no tdc nor adc) which is included in the patterntrig, bit 2 = PMTs hit are not enough to match trigger configuration, bit 3 = pattern trig does not match trigger configuration |
263 |
Int_t default_calib; ///< one if the default calibration has been used to process the data, zero otherwise |
Int_t default_calib; ///< one if the default calibration has been used to process the data, zero otherwise |
264 |
// |
// |
265 |
Float_t GetdEdx(Int_t notrack, Int_t plane, Int_t adcfl); // gf Apr 07 |
Float_t GetdEdx(Int_t notrack, Int_t plane, Int_t adcfl); // gf Apr 07 |
266 |
|
Float_t GetdEdx(ToFTrkVar *trk, Int_t plane, Int_t adcfl); // gf Apr 07 |
267 |
|
|
268 |
Float_t CalcBeta(Int_t notrack, Float_t resmax, Float_t qualitycut, Float_t chi2cut); // wm feb 08 |
Float_t CalcBeta(Int_t notrack, Float_t resmax, Float_t qualitycut, Float_t chi2cut); // wm feb 08 |
269 |
|
|
279 |
void GetLevel2Struct(cToFLevel2 *) const; |
void GetLevel2Struct(cToFLevel2 *) const; |
280 |
// |
// |
281 |
ToFTrkVar *GetToFTrkVar(Int_t notrack); |
ToFTrkVar *GetToFTrkVar(Int_t notrack); |
282 |
|
ToFTrkVar* GetToFStoredTrack(Int_t seqno);///< returns pointer to the track set related to the seqno number |
283 |
ToFPMT *GetToFPMT(Int_t nohit); |
ToFPMT *GetToFPMT(Int_t nohit); |
284 |
Int_t GetPMTid(Int_t gg, Int_t hh); |
Int_t GetPMTid(Int_t gg, Int_t hh); |
285 |
TString GetPMTName(Int_t ind); |
TString GetPMTName(Int_t ind); |
290 |
|
|
291 |
// gf Apr 07 |
// gf Apr 07 |
292 |
void GetdEdxPaddle(Int_t notrack, Int_t paddleid, Int_t adcfl, Float_t &PadEdx, Int_t &SatWarning); // gf Apr 07 |
void GetdEdxPaddle(Int_t notrack, Int_t paddleid, Int_t adcfl, Float_t &PadEdx, Int_t &SatWarning); // gf Apr 07 |
293 |
|
void GetdEdxPaddle(ToFTrkVar *trk, Int_t paddleid, Int_t adcfl, Float_t &PadEdx, Int_t &SatWarning); // gf Apr 07 |
294 |
TString GetPMTName(Int_t ind, Int_t &iplane, Int_t &ipaddle,Int_t &ipmt); |
TString GetPMTName(Int_t ind, Int_t &iplane, Int_t &ipaddle,Int_t &ipmt); |
295 |
Int_t GetPaddleIdOfTrack(Float_t xtr, Float_t ytr, Int_t plane); // gf Apr 07 |
Int_t GetPaddleIdOfTrack(Float_t xtr, Float_t ytr, Int_t plane); // gf Apr 07 //EMXX |
296 |
Int_t GetPaddleIdOfTrack(Float_t xtr, Float_t ytr, Int_t plane, Float_t margin); // wm jun 2008 |
Int_t GetPaddleIdOfTrack(Float_t xtr, Float_t ytr, Int_t plane, Float_t margin); // wm jun 2008 |
297 |
void GetPMTPaddle(Int_t pmt_id, Int_t &plane, Int_t &paddle); // gf Apr 07 |
void GetPMTPaddle(Int_t pmt_id, Int_t &plane, Int_t &paddle); // gf Apr 07 |
298 |
void GetPaddlePMT(Int_t paddle, Int_t &pmtleft, Int_t &pmtright); // gf Apr 07 |
void GetPaddlePMT(Int_t paddle, Int_t &pmtleft, Int_t &pmtright); // gf Apr 07 |
304 |
// |
// |
305 |
// |
// |
306 |
Int_t Process(TrkLevel2 *trk, TrigLevel2 *trg, GL_RUN *run, OrbitalInfo *orb, Bool_t force); // Emiliano |
Int_t Process(TrkLevel2 *trk, TrigLevel2 *trg, GL_RUN *run, OrbitalInfo *orb, Bool_t force); // Emiliano |
307 |
|
|
308 |
|
// |
309 |
|
// |
310 |
|
bool bit(int decimal, char pos); |
311 |
|
bool checkPMT(TString givenpmt); |
312 |
|
bool checkPMTpatternPMThit(TrigLevel2 *trg, int &pmtpattern, int &pmtnosignal); |
313 |
|
bool checkPMTpmttrig(TrigLevel2 *trg); |
314 |
|
void printPMT(); |
315 |
|
|
316 |
// |
// |
317 |
// constructor |
// constructor |
318 |
// |
// |
354 |
|
|
355 |
Int_t GetToFPlaneID(Int_t ip); |
Int_t GetToFPlaneID(Int_t ip); |
356 |
Int_t GetToFPlaneIndex(Int_t plane_id); |
Int_t GetToFPlaneIndex(Int_t plane_id); |
357 |
Bool_t HitPaddle(Int_t ,Int_t); |
Bool_t HitPaddle(Int_t ,Int_t); // EMXX |
358 |
Int_t GetNHitPaddles(Int_t plane); |
Int_t GetNHitPaddles(Int_t plane); |
359 |
|
Int_t GetTrueNHitPaddles(Int_t plane); |
360 |
void Clear(Option_t *t=""); |
void Clear(Option_t *t=""); |
361 |
|
|
362 |
|
// |
363 |
|
TClonesArray *GetTrackArray(){return ToFTrk;} ///< returns a pointer to the track related variables array |
364 |
|
TClonesArray** GetPointerToTrackArray(){return &ToFTrk;}///< returns pointer to pointer to the track array |
365 |
|
void SetTrackArray(TClonesArray *track);///<set pointer to the track array |
366 |
|
|
367 |
|
|
368 |
// |
// |
369 |
ClassDef(ToFLevel2,4); |
ClassDef(ToFLevel2,6); |
370 |
}; |
}; |
371 |
|
|
372 |
#endif |
#endif |