#ifndef MARS_MSrcPosCorrect #define MARS_MSrcPosCorrect #ifndef MARS_MTask #include "MTask.h" #endif class MGeomCam; class TVector2; class MSrcPosCam; class MReportStarguider; class MSrcPosCorrect : public MTask { private: MSrcPosCam *fSrcPosCam; //! MSrcPosCam *fSrcPosAnti; //! MSrcPosCam *fAxis; //! MGeomCam *fGeom; //! UShort_t fRunType; //! Run Type to decide where to get pointing position from UInt_t fRunNumber; // MTask Bool_t ReInit(MParList *pList); Int_t PreProcess(MParList *pList); Int_t Process(); public: MSrcPosCorrect(const char *name=NULL, const char *title=NULL); ClassDef(MSrcPosCorrect, 0) // Corrects MSrcPOsCam for missfocussing }; #endif