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

Last change on this file since 2685 was 2684, checked in by blanch, 22 years ago
*** empty log message ***
File size: 1.2 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 MCalibrationCam;
21class MExtractedSignalCam;
22class MCerPhotEvt;
23
24class 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
34public:
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.