Line | |
---|
1 | #ifndef MARS_MSrcPosCorrect
|
---|
2 | #define MARS_MSrcPosCorrect
|
---|
3 |
|
---|
4 | #ifndef MARS_MTask
|
---|
5 | #include "MTask.h"
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | class MSrcPosCam;
|
---|
9 |
|
---|
10 | class MSrcPosCorrect : public MTask
|
---|
11 | {
|
---|
12 | private:
|
---|
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 |
|
---|
25 | public:
|
---|
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.