1 | #ifndef MARS_MJSpectrum
|
---|
2 | #define MARS_MJSpectrum
|
---|
3 |
|
---|
4 | #ifndef MARS_MJob
|
---|
5 | #include <MJob.h>
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | class TF1;
|
---|
9 | class TH1;
|
---|
10 | class TH1D;
|
---|
11 | class TH2D;
|
---|
12 |
|
---|
13 | class MH3;
|
---|
14 | class MHn;
|
---|
15 | class MTask;
|
---|
16 | class MParList;
|
---|
17 | class MDataSet;
|
---|
18 | class MHEnergyEst;
|
---|
19 | class MAlphaFitter;
|
---|
20 | class MStatusArray;
|
---|
21 | class MHCollectionArea;
|
---|
22 | class MMcSpectrumWeight;
|
---|
23 |
|
---|
24 | class MJSpectrum : public MJob
|
---|
25 | {
|
---|
26 | private:
|
---|
27 | MTask *fCutQ;
|
---|
28 | MTask *fCut0;
|
---|
29 | MTask *fCut1;
|
---|
30 | MTask *fCut2;
|
---|
31 | MTask *fCut3;
|
---|
32 | MTask *fCutS;
|
---|
33 | MTask *fEstimateEnergy;
|
---|
34 | MTask *fCalcHadronness;
|
---|
35 | MTask *fCalcDisp;
|
---|
36 |
|
---|
37 | Bool_t fForceTheta;
|
---|
38 |
|
---|
39 | // Setup Histograms
|
---|
40 | void SetupHistEvtDist(MHn &hist) const;
|
---|
41 | void SetupHistEnergyEst(MHn &hist) const;
|
---|
42 | void SetupHistDisp(MHn &hist) const;
|
---|
43 |
|
---|
44 | // Read Input
|
---|
45 | Bool_t ReadTask(MTask* &task, const char *name, Bool_t mustexist=kTRUE) const;
|
---|
46 | Float_t ReadInput(MParList &plist, TH1D &h1, TH1D &size);
|
---|
47 | Bool_t AnalyzeMC(const MDataSet &set, Float_t &impactmax, Float_t &emin/*, Float_t emax*/) const;
|
---|
48 | Bool_t ReadOrigMCDistribution(const MDataSet &set, TH1 &h, MMcSpectrumWeight &w) const;
|
---|
49 | void GetThetaDistribution(TH1D &temp1, TH2D &temp2) const;
|
---|
50 | Bool_t Refill(MParList &plist, TH1D &h) /*const*/;
|
---|
51 | Bool_t InitWeighting(const MDataSet &set, MMcSpectrumWeight &w) const;
|
---|
52 |
|
---|
53 | // Display Output
|
---|
54 | void PrintSetup(const MAlphaFitter &fit) const;
|
---|
55 | Bool_t DisplayResult(const TH2D &mh1) const;
|
---|
56 | //Bool_t IntermediateLoop(MParList &plist, MH3 &h1, TH1D &temp1, const MDataSet &set, MMcSpectrumWeight &w) const;
|
---|
57 | TArrayD FitSpectrum(TH1D &spectrum) const;
|
---|
58 | TArrayD DisplaySpectrum(MHCollectionArea &area, TH1D &excess, MHEnergyEst &hest, Double_t ontime) const;
|
---|
59 | Bool_t DisplaySize(MParList &plist, Double_t scale) const;
|
---|
60 | void DisplayCutEfficiency(const MHCollectionArea &area0, const MHCollectionArea &area1) const;
|
---|
61 | Bool_t PlotSame(MStatusArray &arr, MParList &plist, const char *name, const char *tab, const char *plot, Double_t scale) const;
|
---|
62 |
|
---|
63 | public:
|
---|
64 | MJSpectrum(const char *name=NULL, const char *title=NULL);
|
---|
65 | ~MJSpectrum();
|
---|
66 |
|
---|
67 | Bool_t Process(const MDataSet &set);
|
---|
68 |
|
---|
69 | void ForceTheta(Bool_t b=kTRUE) { fForceTheta=b; }
|
---|
70 |
|
---|
71 | void SetEnergyEstimator(const MTask *task);
|
---|
72 |
|
---|
73 | static TString FormString(const TF1 &f, Byte_t type=0);
|
---|
74 |
|
---|
75 | ClassDef(MJSpectrum, 0) // Proh'gram to calculate spectrum
|
---|
76 | };
|
---|
77 |
|
---|
78 | #endif
|
---|