source: trunk/MagicSoft/Mars/manalysis/MMcPedestalCopy.cc@ 1021

Last change on this file since 1021 was 1017, checked in by tbretz, 23 years ago
*** empty log message ***
File size: 3.2 KB
Line 
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
47ClassImp(MMcPedestalCopy);
48
49MMcPedestalCopy::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 AddToBranchList("fPedestalMean");
55 AddToBranchList("fElecNoise");
56}
57
58Bool_t MMcPedestalCopy::PreProcess(MParList *pList)
59{
60 fMcPedestals = (MMcFadcHeader*)pList->FindObject("MMcFadcHeader");
61 if (!fMcPedestals)
62 {
63 *fLog << dbginf << "MMcFadcHeader not found... aborting." << endl;
64 return kFALSE;
65 }
66
67 fPedestals = (MPedestalCam*)pList->FindCreateObj("MPedestalCam");
68 if (!fPedestals)
69 return kFALSE;
70
71 return kTRUE;
72}
73
74Bool_t MMcPedestalCopy::Process()
75{
76 const int num = fMcPedestals->GetNumPixel();
77
78 fPedestals->InitSize(num);
79
80 for (int i=0; i<num; i++)
81 {
82 MPedestalPix &pix = (*fPedestals)[i];
83
84 const Float_t pedest = fMcPedestals->GetPedestal(i);
85 const Float_t pedrms = fMcPedestals->GetPedestalRms(i);
86
87 const Float_t sigma = pedest*sqrt(num);
88 const Float_t sigrms = sigma/sqrt(2*num);
89
90 pix.SetPedestal(pedest, sigma);
91 pix.SetPedestalRms(pedrms, sigrms);
92
93 *fLog << pedest << " " << sigma << " " << pedrms << " " << sigrms << endl;
94 }
95
96 return kTRUE;
97}
98
Note: See TracBrowser for help on using the repository browser.