source: trunk/MagicSoft/Mars/manalysis/MCerPhotCalc.h@ 701

Last change on this file since 701 was 698, checked in by tbretz, 24 years ago
*** empty log message ***
File size: 1.2 KB
Line 
1#ifndef MCERPHOTCALC_H
2#define MCERPHOTCALC_H
3
4/////////////////////////////////////////////////////////////////////////////
5// //
6// MCerPhotCalc //
7// //
8// Integrates the time slices of one pixel and substracts the pedestal //
9// (offset) value //
10// //
11/////////////////////////////////////////////////////////////////////////////
12
13#ifndef MTASK_H
14#include "MTask.h"
15#endif
16
17class MRawEvtData;
18class MPedestalCam;
19class MCerPhotEvt;
20
21class MCerPhotCalc : public MTask
22{
23 MRawEvtData *fRawEvt; // raw event data (time slices)
24 MPedestalCam *fPedestals; // Pedestals of all pixels in the camera
25 MCerPhotEvt *fCerPhotEvt; // Cerenkov Photon Event used for calculation
26
27public:
28 MCerPhotCalc(const char *name=NULL, const char *title=NULL);
29
30 Bool_t PreProcess(MParList *pList);
31 Bool_t Process();
32
33 ClassDef(MCerPhotCalc, 0) // Task to calculate cerenkov photons from raw data
34};
35
36#endif
Note: See TracBrowser for help on using the repository browser.