source: trunk/MagicSoft/Mars/mpointing/MSrcPosCorrect.h@ 7178

Last change on this file since 7178 was 7143, checked in by tbretz, 20 years ago
*** empty log message ***
File size: 622 bytes
Line 
1#ifndef MARS_MSrcPosCorrect
2#define MARS_MSrcPosCorrect
3
4#ifndef MARS_MTask
5#include "MTask.h"
6#endif
7
8class MSrcPosCam;
9
10class MSrcPosCorrect : public MTask
11{
12private:
13 MSrcPosCam *fSrcPosCam;
14 MSrcPosCam *fSrcPosAnti;
15
16 UShort_t fRunType; //! Run Type to decide where to get pointing position from
17 UInt_t fRunNumber;
18
19 // MTask
20 Bool_t ReInit(MParList *pList);
21 Int_t PreProcess(MParList *pList);
22 Int_t Process();
23
24public:
25 MSrcPosCorrect(const char *name=NULL, const char *title=NULL);
26
27 ClassDef(MSrcPosCorrect, 0) // Corrects MSrcPOsCam for missfocussing
28};
29
30#endif
Note: See TracBrowser for help on using the repository browser.