source: trunk/MagicSoft/Mars/mfilter/MFCT1SelFinal.h@ 2097

Last change on this file since 2097 was 2037, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 1.6 KB
Line 
1#ifndef MARS_MFCT1SelFinal
2#define MARS_MFCT1SelFinal
3
4/////////////////////////////////////////////////////////////////////////////
5// //
6// MSelFinal //
7// //
8// Class to evaluate final cuts //
9// //
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef MARS_MFilter
13#include "MFilter.h"
14#endif
15
16class MHillas;
17class MHillasSrc;
18class MHadronness;
19
20class MFCT1SelFinal : public MFilter
21{
22private:
23 MHillasSrc *fHilSrc;
24 MHadronness *fHadronness;
25
26 TString fHilName;
27 TString fHilSrcName;
28 TString fHadronnessName;
29
30 Float_t fHadronnessMax;
31 Float_t fAlphaMax;
32 Float_t fDistMax;
33
34 Double_t fMm2Deg; // conversion mm to degrees in camera
35
36 Int_t fCut[4];
37
38 Bool_t fResult;
39
40 Bool_t PreProcess(MParList *pList);
41 Bool_t Process();
42 Bool_t PostProcess();
43
44 Bool_t IsExpressionTrue() const { return fResult; }
45
46public:
47 MFCT1SelFinal(const char *HilSrcName="MHillasSrc",
48 const char *name=NULL, const char *title=NULL);
49
50 void SetHadronnessName(const TString name) { fHadronnessName = name; }
51
52 void SetCuts(Float_t hadmax, Float_t alphamax, Float_t distmax);
53
54 ClassDef(MFCT1SelFinal, 0) // Class to evaluate final cuts
55};
56
57#endif
58
59
60
61
62
63
64
65
66
67
68
Note: See TracBrowser for help on using the repository browser.