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 |
|
---|
20 | class MMcFadcHeader;
|
---|
21 | class MPedestalCam;
|
---|
22 |
|
---|
23 | class MMcPedestalCopy : public MTask
|
---|
24 | {
|
---|
25 | const MMcFadcHeader *fMcPedestals; //
|
---|
26 | MPedestalCam *fPedestals; //
|
---|
27 |
|
---|
28 | TString *fSrc;
|
---|
29 |
|
---|
30 | public:
|
---|
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 which copies the pedestals from the MC into the standard container
|
---|
37 | };
|
---|
38 |
|
---|
39 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.