| Line | |
|---|
| 1 | #ifndef MARS_MMcPedestalCopy
|
|---|
| 2 | #define MARS_MMcPedestalCopy
|
|---|
| 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 MARS_MTask
|
|---|
| 17 | #include "MTask.h"
|
|---|
| 18 | #endif
|
|---|
| 19 |
|
|---|
| 20 | class MMcFadcHeader;
|
|---|
| 21 | class MPedestalCam;
|
|---|
| 22 |
|
|---|
| 23 | class MMcPedestalCopy : public MTask
|
|---|
| 24 | {
|
|---|
| 25 | TString *fSrc;
|
|---|
| 26 |
|
|---|
| 27 | public:
|
|---|
| 28 | MMcPedestalCopy(const char *name=NULL, const char *title=NULL);
|
|---|
| 29 |
|
|---|
| 30 | Bool_t PreProcess(MParList *pList);
|
|---|
| 31 |
|
|---|
| 32 | ClassDef(MMcPedestalCopy, 0) // Task which copies the pedestals from the MC into the standard container
|
|---|
| 33 | };
|
|---|
| 34 |
|
|---|
| 35 | #endif
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.