1 | #ifndef MARS_MJCut
|
---|
2 | #define MARS_MJCut
|
---|
3 |
|
---|
4 | #ifndef MARS_MJob
|
---|
5 | #include "MJob.h"
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | class MTask;
|
---|
9 | class MDataSet;
|
---|
10 | class MParList;
|
---|
11 | class MHAlpha;
|
---|
12 | class MH;
|
---|
13 | class MWriteRootFile;
|
---|
14 | class MPointingPos;
|
---|
15 | class MHSrcPosCam;
|
---|
16 |
|
---|
17 | class MJCut : public MJob
|
---|
18 | {
|
---|
19 | private:
|
---|
20 | Bool_t fStoreSummary;
|
---|
21 | Bool_t fStoreResult;
|
---|
22 | Bool_t fWriteOnly;
|
---|
23 | Bool_t fFullDisplay;
|
---|
24 | Bool_t fRndmSrcPos;
|
---|
25 | //Bool_t fSubstraction;
|
---|
26 |
|
---|
27 | UInt_t fNumOffSourcePos;
|
---|
28 |
|
---|
29 | TString fNameSummary;
|
---|
30 | TString fNameResult;
|
---|
31 | TString fNameOutput;
|
---|
32 |
|
---|
33 | TString fNameHist;
|
---|
34 | TString fNameHistFS;
|
---|
35 |
|
---|
36 | MTask *fCalcHadronness;
|
---|
37 | MTask *fCalcDisp;
|
---|
38 | MTask *fEstimateEnergy;
|
---|
39 |
|
---|
40 | TString GetOutputFile(UInt_t num) const;
|
---|
41 | Bool_t CheckEnvLocal();
|
---|
42 | void SetupWriter(MWriteRootFile *write, const char *name) const;
|
---|
43 | Bool_t WriteTasks(UInt_t num, TObjArray &cont) const;
|
---|
44 | Bool_t WriteResult(const MParList &plist, const MDataSet &set) const;
|
---|
45 | MHAlpha *CreateNewHist(MParList &plist, const char *name="") const;
|
---|
46 | MH *CreateNewHistFS(MParList &plist, const char *name="") const;
|
---|
47 |
|
---|
48 | Bool_t CanStoreSummary() const { return !fPathOut.IsNull() && fStoreSummary; }
|
---|
49 | Bool_t CanStoreResult() const { return !fPathOut.IsNull() && fStoreResult; }
|
---|
50 |
|
---|
51 | Bool_t FillSrcPosCam(const MDataSet &set, MPointingPos &source, MHSrcPosCam &srcpos);
|
---|
52 |
|
---|
53 | public:
|
---|
54 | MJCut(const char *name=NULL, const char *title=NULL);
|
---|
55 | ~MJCut();
|
---|
56 |
|
---|
57 | Int_t Process(const MDataSet &set);
|
---|
58 |
|
---|
59 | void EnableStorageOfSummary(Bool_t b=kTRUE) { fStoreSummary = b; } // See SetNameSummary
|
---|
60 | void EnableStorageOfResult(Bool_t b=kTRUE) { fStoreResult = b; } // See SetNameResult
|
---|
61 | void EnableWriteOnly(Bool_t b=kTRUE) { fWriteOnly = b; }
|
---|
62 | void EnableFullDisplay(Bool_t b=kTRUE) { fFullDisplay = b; }
|
---|
63 | void EnableRandomSrcPos(Bool_t b=kTRUE) { fRndmSrcPos = b; }
|
---|
64 | //void EnableSubstraction(Bool_t b=kTRUE) { fSubstraction = b; }
|
---|
65 |
|
---|
66 | void SetNameSummaryFile(const char *name="");
|
---|
67 | void SetNameResultFile(const char *name="");
|
---|
68 | void SetNameOutFile(const char *name="") { fNameOutput=name; }
|
---|
69 |
|
---|
70 | void SetNameHist(const char *name) { fNameHist=name; }
|
---|
71 | void SetNameHistFS(const char *name) { fNameHistFS=name; }
|
---|
72 |
|
---|
73 | void SetEnergyEstimator(const MTask *task=0);
|
---|
74 | void SetHadronnessCalculator(const MTask *task=0);
|
---|
75 | void SetDispCalculator(const MTask *task=0);
|
---|
76 |
|
---|
77 | ClassDef(MJCut, 0) // Standard program to perform g/h-separation cuts
|
---|
78 | };
|
---|
79 |
|
---|
80 | #endif
|
---|