source: trunk/MagicSoft/Mars/manalysis/MCerPhotAnal2.h@ 2251

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