| 1 | /* ======================================================================== *\
|
|---|
| 2 | !
|
|---|
| 3 | ! *
|
|---|
| 4 | ! * This file is part of MARS, the MAGIC Analysis and Reconstruction
|
|---|
| 5 | ! * Software. It is distributed to you in the hope that it can be a useful
|
|---|
| 6 | ! * and timesaving tool in analysing Data of imaging Cerenkov telescopes.
|
|---|
| 7 | ! * It is distributed WITHOUT ANY WARRANTY.
|
|---|
| 8 | ! *
|
|---|
| 9 | ! * Permission to use, copy, modify and distribute this software and its
|
|---|
| 10 | ! * documentation for any purpose is hereby granted without fee,
|
|---|
| 11 | ! * provided that the above copyright notice appear in all copies and
|
|---|
| 12 | ! * that both that copyright notice and this permission notice appear
|
|---|
| 13 | ! * in supporting documentation. It is provided "as is" without express
|
|---|
| 14 | ! * or implied warranty.
|
|---|
| 15 | ! *
|
|---|
| 16 | !
|
|---|
| 17 | !
|
|---|
| 18 | ! Author(s): Thomas Bretz 12/2000 (tbretz@uni-sw.gwdg.de)
|
|---|
| 19 | !
|
|---|
| 20 | ! Copyright: MAGIC Software Development, 2000-2001
|
|---|
| 21 | !
|
|---|
| 22 | !
|
|---|
| 23 | \* ======================================================================== */
|
|---|
| 24 |
|
|---|
| 25 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| 26 | // //
|
|---|
| 27 | // MMcPedestalCopy //
|
|---|
| 28 | // //
|
|---|
| 29 | // Input Containers: //
|
|---|
| 30 | // MMcFadcHeader //
|
|---|
| 31 | // //
|
|---|
| 32 | // Output Containers: //
|
|---|
| 33 | // MPedestalCam //
|
|---|
| 34 | // //
|
|---|
| 35 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| 36 |
|
|---|
| 37 | #include "MMcPedestalCopy.h"
|
|---|
| 38 |
|
|---|
| 39 | #include "MParList.h"
|
|---|
| 40 |
|
|---|
| 41 | #include "MLog.h"
|
|---|
| 42 | #include "MLogManip.h"
|
|---|
| 43 |
|
|---|
| 44 | #include "MPedestalCam.h"
|
|---|
| 45 | #include "MMcFadcHeader.hxx"
|
|---|
| 46 |
|
|---|
| 47 | ClassImp(MMcPedestalCopy);
|
|---|
| 48 |
|
|---|
| 49 | MMcPedestalCopy::MMcPedestalCopy(const char *name, const char *title)
|
|---|
| 50 | {
|
|---|
| 51 | *fName = name ? name : "MMcPedestalCopy";
|
|---|
| 52 | *fTitle = title ? title : "Task to copy monte carlo pedestals into MPedestal Container";
|
|---|
| 53 | }
|
|---|
| 54 |
|
|---|
| 55 | Bool_t MMcPedestalCopy::PreProcess( MParList *pList )
|
|---|
| 56 | {
|
|---|
| 57 | fMcPedestals = (MMcFadcHeader*)pList->FindObject("MMcFadcHeader");
|
|---|
| 58 | if (!fMcPedestals)
|
|---|
| 59 | {
|
|---|
| 60 | *fLog << dbginf << "MMcFadcHeader not found... aborting." << endl;
|
|---|
| 61 | return kFALSE;
|
|---|
| 62 | }
|
|---|
| 63 |
|
|---|
| 64 | fPedestals = (MPedestalCam*)pList->FindCreateObj("MPedestalCam");
|
|---|
| 65 | if (!fPedestals)
|
|---|
| 66 | return kFALSE;
|
|---|
| 67 |
|
|---|
| 68 | return kTRUE;
|
|---|
| 69 | }
|
|---|
| 70 |
|
|---|
| 71 | Bool_t MMcPedestalCopy::Process()
|
|---|
| 72 | {
|
|---|
| 73 | const int num = fMcPedestals->GetNumPixel();
|
|---|
| 74 |
|
|---|
| 75 | fPedestals->InitSize(num);
|
|---|
| 76 |
|
|---|
| 77 | for (int i=0; i<num; i++)
|
|---|
| 78 | {
|
|---|
| 79 | MPedestalPix &pix = (*fPedestals)[i];
|
|---|
| 80 |
|
|---|
| 81 | const Float_t pedest = fMcPedestals->GetPedestal(i);
|
|---|
| 82 | const Float_t pedrms = fMcPedestals->GetPedestalRms(i);
|
|---|
| 83 |
|
|---|
| 84 | const Float_t sigma = pedest*sqrt(num);
|
|---|
| 85 | const Float_t sigrms = sigma/sqrt(2*num);
|
|---|
| 86 |
|
|---|
| 87 | pix.SetPedestal(pedest, sigma);
|
|---|
| 88 | pix.SetPedestalRms(pedrms, sigrms);
|
|---|
| 89 |
|
|---|
| 90 | *fLog << pedest << " " << sigma << " " << pedrms << " " << sigrms << endl;
|
|---|
| 91 | }
|
|---|
| 92 |
|
|---|
| 93 | return kTRUE;
|
|---|
| 94 | }
|
|---|
| 95 |
|
|---|