source: trunk/MagicSoft/Mars/manalysis/MCalibrate.h@ 2726

Last change on this file since 2726 was 2725, checked in by gaug, 23 years ago
*** empty log message ***
File size: 1.5 KB
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
20class MGeomCam;
21class MCalibrationCam;
22class MExtractedSignalCam;
23class MCerPhotEvt;
24
25class MCalibrate : public MTask
26{
27
28 MGeomCam *fGeomCam; // Geometry of the camera
29 MCalibrationCam *fCalibrations; // Calibration constants
30 MExtractedSignalCam *fSignals; // Integrated charge in FADCs counts
31 MCerPhotEvt *fCerPhotEvt; // Cerenkov Photon Event used for calculation
32
33 Float_t fConversionHiLo;
34
35 Int_t PreProcess(MParList *pList);
36 Int_t Process();
37
38public:
39
40 MCalibrate(const char *name=NULL, const char *title=NULL);
41
42 void SetConversionHiLo(Float_t conv) { fConversionHiLo = conv; }
43
44 ClassDef(MCalibrate, 0) // Task to calculate cerenkov photons using calibration constants
45};
46
47
48#endif
Note: See TracBrowser for help on using the repository browser.