| 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 |  | 
|---|
| 16 | class MMcEvt; | 
|---|
| 17 | class MSrcPosCam; | 
|---|
| 18 | class MParameterD; | 
|---|
| 19 |  | 
|---|
| 20 | class MPointingCorr : public MTask | 
|---|
| 21 | { | 
|---|
| 22 | private: | 
|---|
| 23 | MMcEvt       *fMcEvt; | 
|---|
| 24 | MSrcPosCam   *fSrcPos; | 
|---|
| 25 | TString       fSrcName; | 
|---|
| 26 | MParameterD  *fHourAngle; | 
|---|
| 27 |  | 
|---|
| 28 | Float_t       fMm2Deg; | 
|---|
| 29 |  | 
|---|
| 30 | public: | 
|---|
| 31 | MPointingCorr(const char *name=NULL, const char *title=NULL, | 
|---|
| 32 | const char *srcname="MSrcPosCam"); | 
|---|
| 33 |  | 
|---|
| 34 | Bool_t PreProcess(MParList *pList); | 
|---|
| 35 | Bool_t Process(); | 
|---|
| 36 | Bool_t PostProcess(); | 
|---|
| 37 |  | 
|---|
| 38 | ClassDef(MPointingCorr, 0)   // Task to do the pointing correction | 
|---|
| 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.