source: trunk/MagicSoft/Mars/manalysis/MPointingCorr.h@ 1869

Last change on this file since 1869 was 1868, checked in by wittek, 22 years ago
*** empty log message ***
File size: 1.1 KB
Line 
1#ifndef MARS_MPointingCorr
2#define MARS_MPointingCorr
3
4/////////////////////////////////////////////////////////////////////////////
5// //
6// MPointingCorr //
7// //
8// Task to do the pointing correction //
9// //
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef MARS_MTask
13#include "MTask.h"
14#endif
15
16class MMcEvt;
17class MSrcPosCam;
18
19class MPointingCorr : public MTask
20{
21private:
22 MMcEvt *fMcEvt;
23 MSrcPosCam *fSrcPos;
24 TString fSrcName;
25
26 Float_t fMm2Deg;
27
28public:
29 MPointingCorr(const char *name=NULL, const char *title=NULL,
30 const char *srcname="MSrcPosCam");
31
32 Bool_t PreProcess(MParList *pList);
33 Bool_t Process();
34 Bool_t PostProcess();
35
36 ClassDef(MPointingCorr, 0) // Task to do the pointing correction
37};
38
39#endif
40
41
42
43
44
45
46
47
48
49
50
Note: See TracBrowser for help on using the repository browser.