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 |
|
---|
16 | class MMcEvt;
|
---|
17 | class MSrcPosCam;
|
---|
18 | class MParameterD;
|
---|
19 |
|
---|
20 |
|
---|
21 | class MCT1PointingCorrCalc : public MTask
|
---|
22 | {
|
---|
23 | private:
|
---|
24 | MMcEvt *fMcEvt;
|
---|
25 | MSrcPosCam *fSrcPos;
|
---|
26 | TString fSrcName;
|
---|
27 | MParameterD *fHourAngle;
|
---|
28 |
|
---|
29 | Float_t fMm2Deg;
|
---|
30 |
|
---|
31 | public:
|
---|
32 | MCT1PointingCorrCalc(const char *srcname="MSrcPosCam",
|
---|
33 | const char *name=NULL, const char *title=NULL);
|
---|
34 |
|
---|
35 | Bool_t PreProcess(MParList *pList);
|
---|
36 | Bool_t Process();
|
---|
37 |
|
---|
38 | ClassDef(MCT1PointingCorrCalc, 0) // Task to do the CT1 pointing correction for Mkn421 2001 data
|
---|
39 | };
|
---|
40 |
|
---|
41 | #endif
|
---|
42 |
|
---|
43 |
|
---|
44 |
|
---|
45 |
|
---|
46 |
|
---|
47 |
|
---|
48 |
|
---|
49 |
|
---|
50 |
|
---|
51 |
|
---|
52 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.