Line | |
---|
1 | #ifndef MARS_MSimPointingPos
|
---|
2 | #define MARS_MSimPointingPos
|
---|
3 |
|
---|
4 | #ifndef MARS_MTask
|
---|
5 | #include "MTask.h"
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | class MParList;
|
---|
9 | class MCorsikaEvtHeader;
|
---|
10 | class MCorsikaRunHeader;
|
---|
11 | class MPointingPos;
|
---|
12 |
|
---|
13 | class MSimPointingPos : public MTask
|
---|
14 | {
|
---|
15 | private:
|
---|
16 | MCorsikaRunHeader *fRunHeader; //! Header storing event information
|
---|
17 | MCorsikaEvtHeader *fEvtHeader; //! Header storing event information
|
---|
18 | MPointingPos *fPointing; //! Output storing telescope poiting position
|
---|
19 |
|
---|
20 | // MParContainer
|
---|
21 | //Int_t ReadEnv(const TEnv &env, TString prefix, Bool_t print=kFALSE);
|
---|
22 |
|
---|
23 | // MTask
|
---|
24 | Int_t PreProcess(MParList *pList);
|
---|
25 | Int_t Process();
|
---|
26 |
|
---|
27 |
|
---|
28 | public:
|
---|
29 | MSimPointingPos(const char *name=NULL, const char *title=NULL);
|
---|
30 |
|
---|
31 | // MSimPointingPos
|
---|
32 |
|
---|
33 | // TObject
|
---|
34 |
|
---|
35 | ClassDef(MSimPointingPos, 0) // Task to simulate the pointing position (mirror orientation)
|
---|
36 | };
|
---|
37 |
|
---|
38 | #endif
|
---|
39 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.