source: trunk/MagicSoft/Mars/manalysis/MPedestalWorkaround.h@ 2733

Last change on this file since 2733 was 2733, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 1.2 KB
Line 
1#ifndef MARS_MPedestalWorkaround
2#define MARS_MPedestalWorkaround
3
4/////////////////////////////////////////////////////////////////////////////
5// //
6// MPedestalWorkaround //
7// //
8// Temporary copy of pedestal values and RMS into MPedestalCam from //
9// MPedPhotCam in order to have the pedestal RMS in units of number of //
10// photons //
11// //
12/////////////////////////////////////////////////////////////////////////////
13#ifndef MARS_MTask
14#include "MTask.h"
15#endif
16
17class MPedestalCam;
18class MPedPhotCam;
19class MGeomCam;
20class MParList;
21
22
23class MPedestalWorkaround : public MTask
24{
25private:
26
27 MPedestalCam *fPed; //
28 MPedPhotCam *fPedPhot; //
29 MGeomCam *fCam; //
30
31 Int_t PreProcess(MParList *pList);
32 Int_t Process();
33 Int_t PostProcess();
34
35public:
36 MPedestalWorkaround(const char *name=NULL, const char *title=NULL);
37
38 ClassDef(MPedestalWorkaround, 0) // Task to copy pedestal RMS
39};
40
41#endif
42
43
44
Note: See TracBrowser for help on using the repository browser.