source: trunk/MagicSoft/Mars/mpointing/MPointingPosCalc.h@ 5293

Last change on this file since 5293 was 2602, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 877 bytes
Line 
1#ifndef MARS_MPointingPositionCalc
2#define MARS_MPointingPositionCalc
3
4#ifndef MARS_MTask
5#include "MTask.h"
6#endif
7
8class MMcEvt;
9class MReportDrive;
10class MPointingPos;
11
12class MPointingPosCalc : public MTask
13{
14private:
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
25public:
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.