source: trunk/MagicSoft/Mars/manalysis/MSelStandard.h@ 1762

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