Line | |
---|
1 | #ifndef MARS_MSimExcessNoise
|
---|
2 | #define MARS_MSimExcessNoise
|
---|
3 |
|
---|
4 | #ifndef MARS_MTask
|
---|
5 | #include "MTask.h"
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | class MParList;
|
---|
9 | class MPhotonEvent;
|
---|
10 |
|
---|
11 | class MSimExcessNoise : public MTask
|
---|
12 | {
|
---|
13 | private:
|
---|
14 | MPhotonEvent *fEvt; //! Event storing the photons
|
---|
15 |
|
---|
16 | Double_t fExcessNoise;
|
---|
17 |
|
---|
18 | // MParContainer
|
---|
19 | Int_t ReadEnv(const TEnv &env, TString prefix, Bool_t print=kFALSE);
|
---|
20 |
|
---|
21 | // MTask
|
---|
22 | Int_t PreProcess(MParList *pList);
|
---|
23 | Int_t Process();
|
---|
24 |
|
---|
25 | public:
|
---|
26 | MSimExcessNoise(const char *name=NULL, const char *title=NULL);
|
---|
27 |
|
---|
28 | ClassDef(MSimExcessNoise, 0) // Task to simulate the excess dependant noise (conversion photon to signal height)
|
---|
29 | };
|
---|
30 |
|
---|
31 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.