source: trunk/MagicSoft/Mars/manalysis/MMcCalibrationCalc.h@ 2648

Last change on this file since 2648 was 2648, checked in by moralejo, 21 years ago
*** empty log message ***
File size: 668 bytes
Line 
1#ifndef MARS_MMcCalibrationCalc
2#define MARS_MMcCalibrationCalc
3
4#ifndef MARS_MTask
5#include "MTask.h"
6#endif
7
8class MCalibrationCam;
9class MMcFadcHeader;
10
11class MMcCalibrationCalc : public MTask
12{
13private:
14 Bool_t CheckRunType(MParList *pList) const;
15 Int_t PreProcess(MParList *pList);
16 Int_t Process();
17 Bool_t ReInit(MParList *pList);
18
19 MCalibrationCam *fCalCam;
20 MMcFadcHeader *fHeaderFadc;
21
22public:
23 MMcCalibrationCalc(const char *name=NULL, const char *title=NULL);
24
25 ClassDef(MMcCalibrationCalc, 0) // Task which obtains, for MC files, the pedestal mean and rms, and the calibration factor from ADC counts to photons.
26};
27
28#endif
Note: See TracBrowser for help on using the repository browser.