| 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 "MRawRunHeader.h"
|
|---|
| 46 | #include "MMcFadcHeader.hxx"
|
|---|
| 47 |
|
|---|
| 48 | ClassImp(MMcPedestalCopy);
|
|---|
| 49 |
|
|---|
| 50 | MMcPedestalCopy::MMcPedestalCopy(const char *name, const char *title)
|
|---|
| 51 | {
|
|---|
| 52 | fName = name ? name : "MMcPedestalCopy";
|
|---|
| 53 | fTitle = title ? title : "Task to copy monte carlo pedestals into MPedestal Container";
|
|---|
| 54 |
|
|---|
| 55 | AddToBranchList("fPedestalMean");
|
|---|
| 56 | AddToBranchList("fElecNoise");
|
|---|
| 57 | }
|
|---|
| 58 |
|
|---|
| 59 | Bool_t MMcPedestalCopy::PreProcess(MParList *pList)
|
|---|
| 60 | {
|
|---|
| 61 | MRawRunHeader *run = (MRawRunHeader*)pList->FindObject("MRawRunHeader");
|
|---|
| 62 | if (run)
|
|---|
| 63 | {
|
|---|
| 64 | if (run->GetRunType() != kRTMonteCarlo)
|
|---|
| 65 | {
|
|---|
| 66 | *fLog << "No Monte Carlo File - MMcPedestalCopy skipped." << endl;
|
|---|
| 67 | return kTRUE;
|
|---|
| 68 | }
|
|---|
| 69 | }
|
|---|
| 70 |
|
|---|
| 71 | const MMcFadcHeader *mcped = (MMcFadcHeader*)pList->FindObject("MMcFadcHeader");
|
|---|
| 72 | if (!mcped)
|
|---|
| 73 | {
|
|---|
| 74 | *fLog << dbginf << "MMcFadcHeader not found... aborting." << endl;
|
|---|
| 75 | return kFALSE;
|
|---|
| 76 | }
|
|---|
| 77 |
|
|---|
| 78 | MPedestalCam *pedcam = (MPedestalCam*)pList->FindCreateObj("MPedestalCam");
|
|---|
| 79 | if (!pedcam)
|
|---|
| 80 | return kFALSE;
|
|---|
| 81 |
|
|---|
| 82 | const int num = mcped->GetNumPixel();
|
|---|
| 83 |
|
|---|
| 84 | pedcam->InitSize(num);
|
|---|
| 85 |
|
|---|
| 86 | for (int i=0; i<num; i++)
|
|---|
| 87 | {
|
|---|
| 88 | MPedestalPix &pix = (*pedcam)[i];
|
|---|
| 89 |
|
|---|
| 90 | const Float_t pedest = mcped->GetPedestal(i);
|
|---|
| 91 | const Float_t pedrms = mcped->GetPedestalRms(i);
|
|---|
| 92 |
|
|---|
| 93 | const Float_t sigma = pedest*sqrt(num);
|
|---|
| 94 | const Float_t sigrms = sigma/sqrt(num*2);
|
|---|
| 95 |
|
|---|
| 96 | pix.SetPedestal(pedest, sigma);
|
|---|
| 97 | pix.SetPedestalRms(pedrms, sigrms);
|
|---|
| 98 | }
|
|---|
| 99 |
|
|---|
| 100 | return kTRUE;
|
|---|
| 101 | }
|
|---|
| 102 |
|
|---|