source: trunk/MagicSoft/Mars/manalysis/MMcPedestalRead.h@ 2426

Last change on this file since 2426 was 2426, checked in by moralejo, 21 years ago
*** empty log message ***
File size: 640 bytes
Line 
1#ifndef MARS_MMcPedestalRead
2#define MARS_MMcPedestalRead
3
4#ifndef MARS_MTask
5#include "MTask.h"
6#endif
7
8class MMcFadcHeader;
9class MPedestalCam;
10
11class MMcPedestalRead : public MTask
12{
13private:
14 const MMcFadcHeader *fMcPed;
15 MPedestalCam *fPedCam;
16
17 Bool_t CheckRunType(MParList *pList) const;
18
19 Int_t PreProcess(MParList *pList);
20 Bool_t ReInit(MParList *pList);
21
22public:
23 MMcPedestalRead(const char *name=NULL, const char *title=NULL);
24
25 ClassDef(MMcPedestalRead, 0)
26 // Task which copies the pedestals from the MC FADC header
27 // into the standard container (intended for camera >= 0.7 files)
28};
29
30#endif
Note: See TracBrowser for help on using the repository browser.