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