source: trunk/MagicSoft/Mars/manalysis/MMcPedestalCopy.h@ 2445

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