source: trunk/MagicSoft/Mars/manalysis/MSelBasic.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.3 KB
Line 
1#ifndef MARS_MSelBasic
2#define MARS_MSelBasic
3
4/////////////////////////////////////////////////////////////////////////////
5// //
6// MSelBasic //
7// //
8// Task to evaluate basic cuts //
9// //
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef MARS_MTask
13#include "MTask.h"
14#endif
15
16class MGeomCam;
17class MPedestalCam;
18class MCerPhotEvt;
19class MHillas;
20class MMcEvt;
21class MRawRunHeader;
22
23class MSelBasic : public MTask
24{
25private:
26 const MPedestalCam *fPed; // Pedestal information
27 const MGeomCam *fCam; // Camera Geometry
28 const MCerPhotEvt *fEvt; // Cerenkov Photon Event
29 const MMcEvt *fMcEvt;
30 const MRawRunHeader *fRawRun;
31
32 Int_t fErrors[2];
33
34public:
35 MSelBasic(const char *name=NULL, const char *title=NULL);
36
37 Bool_t PreProcess(MParList *pList);
38 Bool_t Process();
39 Bool_t PostProcess();
40
41 Bool_t SwTrigger();
42
43 ClassDef(MSelBasic, 0) // Task to evaluate basic 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.