source: trunk/MagicSoft/Mars/mfilter/MFCT1SelBasic.h@ 2037

Last change on this file since 2037 was 2037, checked in by tbretz, 22 years ago
*** empty log message ***
File size: 1.6 KB
Line 
1#ifndef MARS_MFCT1SelBasic
2#define MARS_MFCT1SelBasic
3
4/////////////////////////////////////////////////////////////////////////////
5// //
6// MFCT1SelBasic //
7// //
8// Class to evaluate basic cuts //
9// //
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef MARS_MFilter
13#include "MFilter.h"
14#endif
15
16class MMcEvt;
17class MGeomCam;
18class MCerPhotEvt;
19class MPedestalCam;
20//class MRawRunHeader;
21
22class MFCT1SelBasic : public MFilter
23{
24private:
25 const MMcEvt *fMcEvt;
26 const MGeomCam *fCam; // Camera Geometry
27 const MCerPhotEvt *fEvt; // Cerenkov Photon Event
28 //const MPedestalCam *fPed; // Pedestal information
29 //const MRawRunHeader *fRawRun;
30
31 Float_t fMinPhotons;
32 Float_t fThetaMin;
33 Float_t fThetaMax;
34
35 Int_t fCut[4];
36
37 Bool_t fResult;
38
39 Bool_t PreProcess(MParList *pList);
40 Bool_t Process();
41 Bool_t PostProcess();
42
43 Bool_t IsExpressionTrue() const { return fResult; }
44
45 Bool_t SwTrigger();
46
47public:
48 MFCT1SelBasic(const char *name=NULL, const char *title=NULL);
49
50 void SetCuts(Float_t minphotons, Float_t thetamin, Float_t thetamax);
51
52 ClassDef(MFCT1SelBasic, 0) // Class to evaluate basic cuts
53};
54
55#endif
56
57
58
59
60
61
62
63
64
65
66
Note: See TracBrowser for help on using the repository browser.