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

Last change on this file since 2692 was 2691, checked in by blanch, 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 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 Int_t PreProcess(MParList *pList);
34 Int_t Process();
35
36public:
37
38 MCalibrate(const char *name=NULL, const char *title=NULL);
39
40 ClassDef(MCalibrate, 0) // Task to calculate cerenkov photons using calibration constants
41};
42
43
44#endif
Note: See TracBrowser for help on using the repository browser.