source: trunk/MagicSoft/Mars/manalysis/MSelFinal.h@ 1781

Last change on this file since 1781 was 1781, checked in by wittek, 22 years ago
*** empty log message ***
  • Property svn:executable set to *
File size: 1.4 KB
Line 
1#ifndef MARS_MSelFinal
2#define MARS_MSelFinal
3
4/////////////////////////////////////////////////////////////////////////////
5// //
6// MSelFinal //
7// //
8// Task to evaluate final cuts //
9// //
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef MARS_MTask
13#include "MTask.h"
14#endif
15
16class MGeomCam;
17class MCerPhotEvt;
18class MHillas;
19class MHillasSrc;
20class MMcEvt;
21class MHadronness;
22
23class MSelFinal : public MTask
24{
25private:
26 MGeomCam *fCam; // Camera Geometry
27 MCerPhotEvt *fEvt; // Cerenkov Photon Event
28 MMcEvt *fMcEvt;
29 MHillas *fHil;
30 MHillasSrc *fHilsrc;
31 MHadronness *fHadronness;
32
33 Double_t fMm2Deg; // conversion mm to degrees in camera
34 Int_t fErrors[2];
35
36public:
37 MSelFinal(MHillas *fHil, MHillasSrc *fHilsrc,
38 const char *name=NULL, const char *title=NULL);
39
40 Bool_t PreProcess(MParList *pList);
41 Bool_t Process();
42 Bool_t PostProcess();
43
44
45 ClassDef(MSelFinal, 0) // Task to evaluate final cuts
46};
47
48#endif
49
50
51
52
53
54
55
56
57
58
59
Note: See TracBrowser for help on using the repository browser.