source: trunk/MagicSoft/Mars/mcalib/MCalibrate.h@ 2899

Last change on this file since 2899 was 2885, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 1.4 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 MARS_MTask
13#include "MTask.h"
14#endif
15
16class MGeomCam;
17class MCalibrationCam;
18class MExtractedSignalCam;
19class MCerPhotEvt;
20
21class MCalibrate : public MTask
22{
23private:
24 MCalibrationCam *fCalibrations; // Calibration constants
25 MExtractedSignalCam *fSignals; // Integrated charge in FADCs counts
26 MCerPhotEvt *fCerPhotEvt; // Cerenkov Photon Event used for calculation
27
28 Float_t fConversionHiLo;
29
30 Int_t PreProcess(MParList *pList);
31 Int_t Process();
32
33public:
34
35 MCalibrate(const char *name=NULL, const char *title=NULL);
36
37 void SetConversionHiLo(Float_t conv) { fConversionHiLo = conv; }
38
39 ClassDef(MCalibrate, 0) // Task to calculate cerenkov photons using calibration constants
40};
41
42
43#endif
Note: See TracBrowser for help on using the repository browser.