Line | |
---|
1 | #ifndef MARS_MCerPhotCalc2
|
---|
2 | #define MARS_MCerPhotCalc2
|
---|
3 |
|
---|
4 | /////////////////////////////////////////////////////////////////////////////
|
---|
5 | // //
|
---|
6 | // MCerPhotCalc2 //
|
---|
7 | // //
|
---|
8 | // Integrates certain time slices of one pixel and substracts the pedestal //
|
---|
9 | // (offset) value //
|
---|
10 | // //
|
---|
11 | /////////////////////////////////////////////////////////////////////////////
|
---|
12 |
|
---|
13 | #ifndef MARS_MTask
|
---|
14 | #include "MTask.h"
|
---|
15 | #endif
|
---|
16 |
|
---|
17 | class MRawEvtData;
|
---|
18 | class MPedestalCam;
|
---|
19 | class MCerPhotEvt;
|
---|
20 | class MRawRunHeader;
|
---|
21 |
|
---|
22 | class MCerPhotCalc2 : public MTask
|
---|
23 | {
|
---|
24 | MPedestalCam *fPedestals; // Pedestals of all pixels in the camera
|
---|
25 | MRawEvtData *fRawEvt; // raw event data (time slices)
|
---|
26 | MCerPhotEvt *fCerPhotEvt; // Cerenkov Photon Event used for calculation
|
---|
27 | MRawRunHeader *fRunHeader; // RunHeader information
|
---|
28 |
|
---|
29 | Bool_t fEnableFix; // fix for a bug in files from older camera versions (<=40)
|
---|
30 |
|
---|
31 |
|
---|
32 | public:
|
---|
33 | MCerPhotCalc2(const char *name=NULL, const char *title=NULL);
|
---|
34 |
|
---|
35 | Bool_t PreProcess(MParList *pList);
|
---|
36 | Bool_t Process();
|
---|
37 |
|
---|
38 | Bool_t ReInit(MParList *pList);
|
---|
39 |
|
---|
40 | ClassDef(MCerPhotCalc2, 0) // Task to calculate cerenkov photons from raw data
|
---|
41 | };
|
---|
42 |
|
---|
43 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.