source: trunk/MagicSoft/Mars/msim/MSimPointingPos.h@ 9312

Last change on this file since 9312 was 9232, checked in by tbretz, 16 years ago
*** empty log message ***
File size: 870 bytes
Line 
1#ifndef MARS_MSimPointingPos
2#define MARS_MSimPointingPos
3
4#ifndef MARS_MTask
5#include "MTask.h"
6#endif
7
8class MParList;
9class MCorsikaEvtHeader;
10class MCorsikaRunHeader;
11class MPointingPos;
12
13class MSimPointingPos : public MTask
14{
15private:
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
28public:
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.