1 | #ifndef MARS_MHGausEvents
|
---|
2 | #define MARS_MHGausEvents
|
---|
3 |
|
---|
4 | #ifndef ROOT_TH1
|
---|
5 | #include <TH1.h>
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | #ifndef MARS_MH
|
---|
9 | #include "MH.h"
|
---|
10 | #endif
|
---|
11 |
|
---|
12 | class TVirtualPad;
|
---|
13 | class TGraph;
|
---|
14 | class TArrayF;
|
---|
15 | class TH1F;
|
---|
16 | class TH1I;
|
---|
17 | class TF1;
|
---|
18 | class MHGausEvents : public MH
|
---|
19 | {
|
---|
20 | private:
|
---|
21 |
|
---|
22 | const static Int_t fgBinsAfterStripping; //! Default for fBinsAfterStripping (now set to: 40)
|
---|
23 | const static Float_t fgBlackoutLimit; //! Default for fBlackoutLimit (now set to: 5. )
|
---|
24 | const static Int_t fgNDFLimit; //! Default for fNDFLimit (now set to: 2)
|
---|
25 | const static Float_t fgProbLimit; //! Default for fProbLimit (now set to: 0.001)
|
---|
26 | const static Float_t fgPickupLimit; //! Default for fPickupLimit (now set to: 5. )
|
---|
27 | const static Int_t fgPowerProbabilityBins; //! Default for fPowerProbabilityBins (now set to: 20)
|
---|
28 |
|
---|
29 | Int_t fBinsAfterStripping; // Bins for the Gauss Histogram after stripping off the zeros at both ends
|
---|
30 | Int_t fCurrentSize; // Current size of the array fEvents
|
---|
31 | Float_t fEventFrequency; // Event frequency in Hertz (to be set)
|
---|
32 | Byte_t fFlags; // Bit field for the fit result bits
|
---|
33 | Int_t fPowerProbabilityBins; // Bins for the projected power spectrum
|
---|
34 |
|
---|
35 | TH1I *fHPowerProbability; // Fourier transform of fEvents projected on y-axis
|
---|
36 | TArrayF *fPowerSpectrum; // Fourier transform of fEvents
|
---|
37 | TGraph *fGraphEvents; //! TGraph to display the event array (will not be cloned!!)
|
---|
38 | TGraph *fGraphPowerSpectrum; //! TGraph to display the power spectrum array (will not be cloned!!)
|
---|
39 |
|
---|
40 | enum { kGausFitOK, kExpFitOK, kFourierSpectrumOK, kExcluded }; // Bits for information about fit results
|
---|
41 |
|
---|
42 | protected:
|
---|
43 |
|
---|
44 | Float_t fBlackoutLimit; // Lower number sigmas from mean until event is considered blackout
|
---|
45 | TArrayF fEvents; // Array which holds the entries of GausHist
|
---|
46 | TF1 *fFGausFit; // Gauss fit for fHGausHist
|
---|
47 | TF1 *fFExpFit; // Exponential fit for FHPowerProbability
|
---|
48 | Axis_t fFirst; // Lower histogram edge for fHGausHist (used by InitBins())
|
---|
49 | TH1F fHGausHist; // Histogram to hold the Gaussian distribution
|
---|
50 | Axis_t fLast; // Upper histogram edge for fHGausHist (used by InitBins())
|
---|
51 | Double_t fMean; // Mean of the Gauss fit
|
---|
52 | Double_t fMeanErr; // Error of the mean of the Gauss fit
|
---|
53 | Int_t fNbins; // Number histogram bins for fHGausHist (used by InitBins())
|
---|
54 | Int_t fNDFLimit; // NDF limit for judgement if fit is OK
|
---|
55 | Double_t fSigma; // Sigma of the Gauss fit
|
---|
56 | Double_t fSigmaErr; // Error of the sigma of the Gauss fit
|
---|
57 | Float_t fPickupLimit; // Upper number sigmas from mean until event is considered pickup
|
---|
58 | Int_t fPixId; // Pixel ID
|
---|
59 | Double_t fProb; // Probability of the Gauss fit
|
---|
60 | Float_t fProbLimit; // Probability limit for judgement if fit is OK
|
---|
61 |
|
---|
62 | Float_t *CreateEventXaxis(Int_t n); // Create an x-axis for the Event TGraphs
|
---|
63 | Float_t *CreatePSDXaxis(Int_t n); // Create an x-axis for the PSD TGraphs
|
---|
64 |
|
---|
65 | void DrawEvents(); // Draw graph of fEvents
|
---|
66 | void DrawPowerSpectrum(TVirtualPad &pad, Int_t i); // Draw graph of fPowerSpectrum and fHPowerProbability
|
---|
67 |
|
---|
68 | // Setters
|
---|
69 | void SetPowerProbabilityBins ( const Int_t nbins=fgPowerProbabilityBins ) { fPowerProbabilityBins=nbins; }
|
---|
70 | void SetBinsAfterStripping ( const Int_t nbins=fgBinsAfterStripping ) { fBinsAfterStripping =nbins; }
|
---|
71 |
|
---|
72 | public:
|
---|
73 |
|
---|
74 | MHGausEvents(const char* name=NULL, const char* title=NULL);
|
---|
75 | ~MHGausEvents();
|
---|
76 |
|
---|
77 | virtual void Clear(Option_t *o="");
|
---|
78 | virtual void Reset();
|
---|
79 | virtual void InitBins();
|
---|
80 |
|
---|
81 | // Setters
|
---|
82 | void SetBlackoutLimit ( const Float_t lim=fgBlackoutLimit ) { fBlackoutLimit = lim; }
|
---|
83 | void SetEventFrequency ( const Float_t f ) { fEventFrequency = f; }
|
---|
84 | void SetExcluded ( const Bool_t b=kTRUE );
|
---|
85 | void SetExpFitOK ( const Bool_t b=kTRUE );
|
---|
86 | void SetFourierSpectrumOK( const Bool_t b=kTRUE );
|
---|
87 | void SetGausFitOK ( const Bool_t b=kTRUE );
|
---|
88 | void SetLast ( const Double_t d ) { fLast = d; }
|
---|
89 | void SetFirst ( const Double_t d ) { fFirst = d; }
|
---|
90 | void SetMean ( const Double_t d ) { fMean = d; }
|
---|
91 | void SetMeanErr ( const Double_t d ) { fMeanErr = d; }
|
---|
92 | void SetNbins ( const Int_t i ) { fNbins = i; }
|
---|
93 | void SetNDFLimit ( const Int_t lim=fgNDFLimit ) { fNDFLimit = lim; }
|
---|
94 | void SetPickupLimit ( const Float_t lim=fgPickupLimit ) { fPickupLimit = lim; }
|
---|
95 | void SetPixId ( const Int_t i ) { fPixId = i; }
|
---|
96 | void SetProb ( const Double_t d ) { fProb = d; }
|
---|
97 | void SetProbLimit ( const Float_t lim=fgProbLimit ) { fProbLimit = lim; }
|
---|
98 | void SetSigma ( const Double_t d ) { fSigma = d; }
|
---|
99 | void SetSigmaErr ( const Double_t d ) { fSigmaErr = d; }
|
---|
100 |
|
---|
101 | // Getters
|
---|
102 | const Double_t GetBlackout() const;
|
---|
103 | const Double_t GetChiSquare() const;
|
---|
104 | const Double_t GetExpChiSquare() const;
|
---|
105 | const Int_t GetExpNdf() const;
|
---|
106 | const Double_t GetExpProb() const;
|
---|
107 | TArrayF *GetEvents() { return &fEvents; }
|
---|
108 | const TArrayF *GetEvents() const { return &fEvents; }
|
---|
109 | TF1 *GetFExpFit() { return fFExpFit; }
|
---|
110 | const TF1 *GetFExpFit() const { return fFExpFit; }
|
---|
111 | TF1 *GetFGausFit() { return fFGausFit; }
|
---|
112 | const TF1 *GetFGausFit() const { return fFGausFit; }
|
---|
113 | TGraph *GetGraphEvents() { return fGraphEvents; }
|
---|
114 | const TGraph *GetGraphEvents() const { return fGraphEvents; }
|
---|
115 | TGraph *GetGraphPowerSpectrum() { return fGraphPowerSpectrum; }
|
---|
116 | const TGraph *GetGraphPowerSpectrum() const { return fGraphPowerSpectrum; }
|
---|
117 | TH1F *GetHGausHist() { return &fHGausHist; }
|
---|
118 | const TH1F *GetHGausHist() const { return &fHGausHist; }
|
---|
119 | TH1I *GetHPowerProbability() { return fHPowerProbability; }
|
---|
120 | const TH1I *GetHPowerProbability() const { return fHPowerProbability; }
|
---|
121 | const Double_t GetMean() const { return fMean; }
|
---|
122 | const Double_t GetMeanErr() const { return fMeanErr; }
|
---|
123 | const Int_t GetNdf() const;
|
---|
124 | const Double_t GetOffset() const;
|
---|
125 | const Double_t GetPickup() const;
|
---|
126 | const Int_t GetPixId() const { return fPixId; }
|
---|
127 | TArrayF *GetPowerSpectrum() { return fPowerSpectrum; }
|
---|
128 | const TArrayF *GetPowerSpectrum() const { return fPowerSpectrum; }
|
---|
129 | const Double_t GetProb() const { return fProb; }
|
---|
130 | const Double_t GetSigma() const { return fSigma; }
|
---|
131 | const Double_t GetSigmaErr() const { return fSigmaErr; }
|
---|
132 | const Double_t GetSlope() const;
|
---|
133 |
|
---|
134 | const Bool_t IsExcluded() const;
|
---|
135 | const Bool_t IsExpFitOK() const;
|
---|
136 | const Bool_t IsEmpty() const;
|
---|
137 | const Bool_t IsFourierSpectrumOK() const;
|
---|
138 | const Bool_t IsGausFitOK() const;
|
---|
139 |
|
---|
140 | // Fill
|
---|
141 | void FillArray ( const Float_t f ); // Fill only the array fEvents
|
---|
142 | Bool_t FillHist ( const Float_t f ); // Fill only the histogram HGausHist
|
---|
143 | Bool_t FillHistAndArray( const Float_t f ); // Fill bothe the array fEvents and the histogram HGausHist
|
---|
144 |
|
---|
145 | // Fits
|
---|
146 | Bool_t FitGaus( Option_t *option="RQ0",
|
---|
147 | const Double_t xmin=0.,
|
---|
148 | const Double_t xmax=0.); // Fit the histogram HGausHist with a Gaussian
|
---|
149 | Bool_t RepeatFit(const Option_t *option="RQ0"); // Repeat fit within limits defined by fPickupLimit
|
---|
150 | void BypassFit(); // Take mean and RMS from the histogram
|
---|
151 |
|
---|
152 | // Draws
|
---|
153 | virtual void Draw(Option_t *option=""); // Default Draw
|
---|
154 |
|
---|
155 | // Prints
|
---|
156 | virtual void Print(const Option_t *o="") const; // Default Print
|
---|
157 |
|
---|
158 | // Miscelleaneous
|
---|
159 | virtual void ChangeHistId(const Int_t id); // Changes names and titles of the histogram
|
---|
160 | virtual void Renorm(); // Re-normalize the results
|
---|
161 |
|
---|
162 | void CreateFourierSpectrum(); // Create the fourier spectrum out of fEvents
|
---|
163 | void CreateGraphEvents(); // Create the TGraph fGraphEvents of fEvents
|
---|
164 | void CreateGraphPowerSpectrum(); // Create the TGraph fGraphPowerSpectrum out of fPowerSpectrum
|
---|
165 |
|
---|
166 | ClassDef(MHGausEvents, 1) // Base class for events with Gaussian distributed values
|
---|
167 | };
|
---|
168 |
|
---|
169 | #endif
|
---|