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

Last change on this file since 1693 was 1180, checked in by tbretz, 23 years ago
*** empty log message ***
File size: 589 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 MPedestalCam;
10
11class MMcPedestalCopy : public MTask
12{
13private:
14 const MMcFadcHeader *fMcPed;
15 MPedestalCam *fPedCam;
16
17 Bool_t CheckRunType(MParList *pList) const;
18
19public:
20 MMcPedestalCopy(const char *name=NULL, const char *title=NULL);
21
22 Bool_t PreProcess(MParList *pList);
23
24 virtual Bool_t ReInit(MParList *pList);
25
26 ClassDef(MMcPedestalCopy, 0) // Task which copies the pedestals from the MC into the standard container
27};
28
29#endif
Note: See TracBrowser for help on using the repository browser.