| Line | |
|---|
| 1 | #ifndef MARS_MSimGeomCam
|
|---|
| 2 | #define MARS_MSimGeomCam
|
|---|
| 3 |
|
|---|
| 4 | #ifndef MARS_MTask
|
|---|
| 5 | #include "MTask.h"
|
|---|
| 6 | #endif
|
|---|
| 7 |
|
|---|
| 8 | class MGeomCam;
|
|---|
| 9 | class MParList;
|
|---|
| 10 | class MPhotonEvent;
|
|---|
| 11 | class MPhotonStatistics;
|
|---|
| 12 | class MSignalCam;
|
|---|
| 13 | class MParameterD;
|
|---|
| 14 | class MRawRunHeader;
|
|---|
| 15 | class MPulseShape;
|
|---|
| 16 |
|
|---|
| 17 | class MSimGeomCam : public MTask
|
|---|
| 18 | {
|
|---|
| 19 | private:
|
|---|
| 20 | MGeomCam *fGeom; //!
|
|---|
| 21 | MPhotonEvent *fEvt; //! Event stroing the photons
|
|---|
| 22 | MPhotonStatistics *fStat; //!
|
|---|
| 23 | MParameterD *fPulsePos; //! Intended pulse position in digitization window [ns]
|
|---|
| 24 | MRawRunHeader *fHeader; //! Length of digitization window
|
|---|
| 25 | MPulseShape *fPulse; //!
|
|---|
| 26 |
|
|---|
| 27 | TString fNameGeomCam;
|
|---|
| 28 |
|
|---|
| 29 | // MParContainer
|
|---|
| 30 | Int_t ReadEnv(const TEnv &env, TString prefix, Bool_t print=kFALSE);
|
|---|
| 31 |
|
|---|
| 32 | // MTask
|
|---|
| 33 | Int_t PreProcess(MParList *pList);
|
|---|
| 34 | Int_t Process();
|
|---|
| 35 |
|
|---|
| 36 | public:
|
|---|
| 37 | MSimGeomCam(const char *name=NULL, const char *title=NULL);
|
|---|
| 38 |
|
|---|
| 39 | void SetNameGeomCam(const char *name="MGeomCam") { fNameGeomCam=name; }
|
|---|
| 40 |
|
|---|
| 41 | ClassDef(MSimGeomCam, 0) // Task to tag each photon in a MPhotonEvent with a pixel index from a MGeomCam
|
|---|
| 42 | };
|
|---|
| 43 |
|
|---|
| 44 | #endif
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.