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

Last change on this file since 2409 was 2206, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 579 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
19 Int_t PreProcess(MParList *pList);
20 Bool_t ReInit(MParList *pList);
21
22public:
23 MMcPedestalCopy(const char *name=NULL, const char *title=NULL);
24
25 ClassDef(MMcPedestalCopy, 0) // Task which copies the pedestals from the MC into the standard container
26};
27
28#endif
Note: See TracBrowser for help on using the repository browser.