source: trunk/MagicSoft/Mars/msignal/MExtractTimeAndChargeSpline.h@ 5498

Last change on this file since 5498 was 5497, checked in by gaug, 21 years ago
*** empty log message ***
File size: 3.5 KB
Line 
1#ifndef MARS_MExtractTimeAndChargeSpline
2#define MARS_MExtractTimeAndChargeSpline
3
4#ifndef MARS_MExtractTimeAndCharge
5#include "MExtractTimeAndCharge.h"
6#endif
7
8class MPedestalPix;
9class MExtractTimeAndChargeSpline : public MExtractTimeAndCharge
10{
11
12private:
13
14 static const Byte_t fgHiGainFirst; //! Default for fHiGainFirst (now set to: 2)
15 static const Byte_t fgHiGainLast; //! Default for fHiGainLast (now set to: 14)
16 static const Byte_t fgLoGainFirst; //! Default for fLoGainFirst (now set to: 2)
17 static const Byte_t fgLoGainLast; //! Default for fLoGainLast (now set to: 14)
18 static const Float_t fgResolution; //! Default for fResolution (now set to: 0.003)
19 static const Float_t fgRiseTime; //! Default for fRiseTime (now set to: 1.5)
20 static const Float_t fgFallTime; //! Default for fFallTime (now set to: 4.5)
21
22 Float_t *fHiGainSignal; //! Need fast access to the signals in a float way
23 Float_t *fLoGainSignal; //! Store them in separate arrays
24 Float_t *fHiGainFirstDeriv; //!
25 Float_t *fLoGainFirstDeriv; //!
26 Float_t *fHiGainSecondDeriv; //!
27 Float_t *fLoGainSecondDeriv; //!
28
29 Float_t fAbMax; //! Current maximum of the spline
30 Float_t fAbMaxPos; //! Current position of the maximum of the spline
31 Float_t fHalfMax; //! Current half maximum of the spline
32
33 Float_t fResolution; // The time resolution in FADC units
34 Float_t fRiseTime; // The usual rise time of the pulse
35 Float_t fFallTime; // The usual fall time of the pulse
36
37 Byte_t fFlags; // Bit-field to hold the time extraction types
38
39 Bool_t ReInit( MParList *pList );
40
41 Int_t ReadEnv(const TEnv &env, TString prefix, Bool_t print);
42
43 void CalcIntegralHiGain(Float_t &sum, Int_t startslice, Int_t lastslice);
44 void CalcIntegralLoGain(Float_t &sum, Int_t startslice, Int_t lastslice);
45
46public:
47
48 enum ExtractionType_t { kMaximum, kHalfMaximum,
49 kAmplitude, kIntegral }; //! Possible time and charge extraction types
50
51private:
52
53 Bool_t IsExtractionType ( ExtractionType_t typ ) { return TESTBIT(fFlags, typ); }
54
55public:
56
57 MExtractTimeAndChargeSpline(const char *name=NULL, const char *title=NULL);
58 ~MExtractTimeAndChargeSpline();
59
60 Float_t GetRiseTime() const { return fRiseTime; }
61 Float_t GetFallTime() const { return fFallTime; }
62
63 void SetRange ( Byte_t hifirst=0, Byte_t hilast=0, Byte_t lofirst=0, Byte_t lolast=0 );
64 void SetResolution ( const Float_t f=fgResolution ) { fResolution = f; }
65 void SetRiseTime ( const Float_t f=fgRiseTime ) { fRiseTime = f; }
66 void SetFallTime ( const Float_t f=fgFallTime ) { fFallTime = f; }
67
68 void SetTimeType ( const ExtractionType_t typ=kMaximum );
69 void SetChargeType ( const ExtractionType_t typ=kAmplitude);
70
71 void FindTimeAndChargeHiGain(Byte_t *first, Byte_t *logain, Float_t &sum, Float_t &dsum,
72 Float_t &time, Float_t &dtime,
73 Byte_t &sat, const MPedestalPix &ped, const Bool_t abflag);
74 void FindTimeAndChargeLoGain(Byte_t *first, Float_t &sum, Float_t &dsum,
75 Float_t &time, Float_t &dtime,
76 Byte_t &sat, const MPedestalPix &ped, const Bool_t abflag);
77
78 ClassDef(MExtractTimeAndChargeSpline, 0) // Task to Extract Arrival Times and Charges using a Fast Cubic Spline
79};
80
81#endif
82
83
84
Note: See TracBrowser for help on using the repository browser.