source: trunk/MagicSoft/Mars/msimcamera/MSimExcessNoise.h@ 9422

Last change on this file since 9422 was 9239, checked in by tbretz, 16 years ago
*** empty log message ***
File size: 528 bytes
Line 
1#ifndef MARS_MSimExcessNoise
2#define MARS_MSimExcessNoise
3
4#ifndef MARS_MTask
5#include "MTask.h"
6#endif
7
8class MParList;
9class MPhotonEvent;
10
11class MSimExcessNoise : public MTask
12{
13private:
14 MPhotonEvent *fEvt; //! Event storing the photons
15
16 // MTask
17 Int_t PreProcess(MParList *pList);
18 Int_t Process();
19
20public:
21 MSimExcessNoise(const char *name=NULL, const char *title=NULL);
22
23 ClassDef(MSimExcessNoise, 0) // Task to simulate the excess dependant noise (conversion photon to signal height)
24};
25
26#endif
Note: See TracBrowser for help on using the repository browser.