Line | |
---|
1 | #ifndef MARS_MCalibrate
|
---|
2 | #define MARS_MCalibrate
|
---|
3 |
|
---|
4 | /////////////////////////////////////////////////////////////////////////////
|
---|
5 | // //
|
---|
6 | // MCalibrate //
|
---|
7 | // //
|
---|
8 | // Integrates the desired ADC time slices of one pixel and apply //
|
---|
9 | // calibration constants //
|
---|
10 | // //
|
---|
11 | /////////////////////////////////////////////////////////////////////////////
|
---|
12 | #ifndef ROOT_TArrayF
|
---|
13 | #include <TArrayF.h>
|
---|
14 | #endif
|
---|
15 |
|
---|
16 | #ifndef MARS_MTask
|
---|
17 | #include "MTask.h"
|
---|
18 | #endif
|
---|
19 |
|
---|
20 | class MCalibrationCam;
|
---|
21 | class MExtractedSignalCam;
|
---|
22 | class MCerPhotEvt;
|
---|
23 |
|
---|
24 | class MCalibrate : public MTask
|
---|
25 | {
|
---|
26 |
|
---|
27 | MCalibrationCam *fCalibrations;
|
---|
28 | MExtractedSignalCam *fSignals;
|
---|
29 | MCerPhotEvt *fCerPhotEvt; // Cerenkov Photon Event used for calculation
|
---|
30 |
|
---|
31 | Int_t PreProcess(MParList *pList);
|
---|
32 | Int_t Process();
|
---|
33 |
|
---|
34 | public:
|
---|
35 |
|
---|
36 | MCalibrate(const char *name=NULL, const char *title=NULL);
|
---|
37 |
|
---|
38 | ClassDef(MCalibrate, 0) // Task to calculate cerenkov photons from raw data
|
---|
39 | };
|
---|
40 |
|
---|
41 |
|
---|
42 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.