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

Last change on this file since 7199 was 7199, checked in by tbretz, 19 years ago
*** empty log message ***
File size: 647 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 MSrcPosCam *fAxis;
16
17 UShort_t fRunType; //! Run Type to decide where to get pointing position from
18 UInt_t fRunNumber;
19
20 // MTask
21 Bool_t ReInit(MParList *pList);
22 Int_t PreProcess(MParList *pList);
23 Int_t Process();
24
25public:
26 MSrcPosCorrect(const char *name=NULL, const char *title=NULL);
27
28 ClassDef(MSrcPosCorrect, 0) // Corrects MSrcPOsCam for missfocussing
29};
30
31#endif
Note: See TracBrowser for help on using the repository browser.