Line | |
---|
1 | #ifndef MARS_MPedPhotCalc
|
---|
2 | #define MARS_MPedPhotCalc
|
---|
3 |
|
---|
4 | #ifndef MARS_MTask
|
---|
5 | #include "MTask.h"
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | #ifndef ROOT_TArrayF
|
---|
9 | #include <TArrayF.h>
|
---|
10 | #endif
|
---|
11 |
|
---|
12 | class MPedPhotCam;
|
---|
13 | class MCerPhotEvt;
|
---|
14 |
|
---|
15 | class MPedPhotCalc : public MTask
|
---|
16 | {
|
---|
17 | MPedPhotCam *fPedestals; // Pedestals of all pixels in the camera
|
---|
18 | MCerPhotEvt *fCerPhot;
|
---|
19 |
|
---|
20 | TArrayF fSumx; // sum of values
|
---|
21 | TArrayF fSumx2; // sum of squared values
|
---|
22 |
|
---|
23 | Bool_t ReInit(MParList *pList);
|
---|
24 |
|
---|
25 | Int_t PreProcess(MParList *pList);
|
---|
26 | Int_t Process();
|
---|
27 | Int_t PostProcess();
|
---|
28 |
|
---|
29 | public:
|
---|
30 | MPedPhotCalc(const char *name=NULL, const char *title=NULL);
|
---|
31 |
|
---|
32 | ClassDef(MPedPhotCalc, 0)//Task to calculate pedestals from the charge computed from pedestal runs (in units of photons)
|
---|
33 | };
|
---|
34 |
|
---|
35 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.