| Line |  | 
|---|
| 1 | #ifndef MARS_MPointingPositionCalc | 
|---|
| 2 | #define MARS_MPointingPositionCalc | 
|---|
| 3 |  | 
|---|
| 4 | #ifndef MARS_MTask | 
|---|
| 5 | #include "MTask.h" | 
|---|
| 6 | #endif | 
|---|
| 7 |  | 
|---|
| 8 | class MMcEvt; | 
|---|
| 9 | class MReportDrive; | 
|---|
| 10 | class MPointingPos; | 
|---|
| 11 |  | 
|---|
| 12 | class MPointingPosCalc : public MTask | 
|---|
| 13 | { | 
|---|
| 14 | private: | 
|---|
| 15 | MMcEvt       *fMcEvt;    //! MMcEvt to get simulated poiting position from | 
|---|
| 16 | MReportDrive *fReport;   //! MReportDrive to get real poiting position from | 
|---|
| 17 | MPointingPos *fPosition; //! Output container to store pointing position | 
|---|
| 18 |  | 
|---|
| 19 | UShort_t fRunType;            //! Run Type to decide where to get pointing position from | 
|---|
| 20 |  | 
|---|
| 21 | Bool_t ReInit(MParList *plist); | 
|---|
| 22 | Int_t  PreProcess(MParList *plist); | 
|---|
| 23 | Int_t  Process(); | 
|---|
| 24 |  | 
|---|
| 25 | public: | 
|---|
| 26 | MPointingPosCalc() | 
|---|
| 27 | { | 
|---|
| 28 | fName  = "MPointingPosCalc"; | 
|---|
| 29 | fTitle = "Task calculating the pointing position"; | 
|---|
| 30 | } | 
|---|
| 31 |  | 
|---|
| 32 | ClassDef(MPointingPosCalc, 0) //Task calculating the pointing position | 
|---|
| 33 | }; | 
|---|
| 34 |  | 
|---|
| 35 | #endif | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.