source: trunk/MagicSoft/Mars/manalysis/MCT1PointingCorrCalc.h@ 2777

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