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

Last change on this file since 701 was 698, checked in by tbretz, 24 years ago
*** empty log message ***
File size: 1.3 KB
Line 
1#ifndef MMCPEDESTALCOPY_H
2#define MMCPEDESTALCOPY_H
3
4/////////////////////////////////////////////////////////////////////////////
5// //
6// MMcPedestalCopy //
7// //
8// This task copies the pedestals from the MC data into the corresponding //
9// MARS Container (MPedestals). This seems to be overdone, but at this //
10// point you have a standard interface to access the pedestals //
11// (MPedestals), which makes it possible that from now on all pedestals //
12// can be treated in the same way //
13// //
14/////////////////////////////////////////////////////////////////////////////
15
16#ifndef MTASK_H
17#include "MTask.h"
18#endif
19
20class MMcFadcHeader;
21class MPedestalCam;
22
23class MMcPedestalCopy : public MTask
24{
25 MMcFadcHeader *fMcPedestals; //
26 MPedestalCam *fPedestals; //
27
28 TString *fSrc;
29
30public:
31 MMcPedestalCopy(const char *name=NULL, const char *title=NULL);
32
33 Bool_t PreProcess(MParList *pList);
34 Bool_t Process();
35
36 ClassDef(MMcPedestalCopy, 0) // Task to calculate Hillas parameters
37};
38
39#endif
Note: See TracBrowser for help on using the repository browser.