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 | /////////////////////////////////////////////////////////////////////////////
|
---|
30 |
|
---|
31 | #include "MMcPedestalCopy.h"
|
---|
32 |
|
---|
33 | #include "MParList.h"
|
---|
34 |
|
---|
35 | #include "MLog.h"
|
---|
36 | #include "MLogManip.h"
|
---|
37 |
|
---|
38 | #include "MPedestalCam.h"
|
---|
39 | #include "MMcFadcHeader.hxx"
|
---|
40 |
|
---|
41 | ClassImp(MMcPedestalCopy)
|
---|
42 |
|
---|
43 | MMcPedestalCopy::MMcPedestalCopy(const char *name, const char *title)
|
---|
44 | {
|
---|
45 | *fName = name ? name : "MMcPedestalCopy";
|
---|
46 | *fTitle = title ? title : "Task to copy monte carlo pedestals into MPedestal Container";
|
---|
47 | }
|
---|
48 |
|
---|
49 | Bool_t MMcPedestalCopy::PreProcess( MParList *pList )
|
---|
50 | {
|
---|
51 | fMcPedestals = (MMcFadcHeader*)pList->FindObject("MMcFadcHeader");
|
---|
52 | if (!fMcPedestals)
|
---|
53 | {
|
---|
54 | *fLog << dbginf << "MMcFadcHeader not found... aborting." << endl;
|
---|
55 | return kFALSE;
|
---|
56 | }
|
---|
57 |
|
---|
58 | fPedestals = (MPedestalCam*)pList->FindCreateObj("MPedestalCam");
|
---|
59 | if (!fPedestals)
|
---|
60 | return kFALSE;
|
---|
61 |
|
---|
62 | return kTRUE;
|
---|
63 | }
|
---|
64 |
|
---|
65 | Bool_t MMcPedestalCopy::Process()
|
---|
66 | {
|
---|
67 | const int num = fMcPedestals->GetNumPixel();
|
---|
68 |
|
---|
69 | fPedestals->InitSize(num);
|
---|
70 |
|
---|
71 | for (int i=0; i<num; i++)
|
---|
72 | {
|
---|
73 | MPedestalPix &pix = (*fPedestals)[i];
|
---|
74 |
|
---|
75 | const Float_t pedest = fMcPedestals->GetPedestal(i);
|
---|
76 | const Float_t pedrms = fMcPedestals->GetPedestalRms(i);
|
---|
77 |
|
---|
78 | const Float_t sigma = pedest*sqrt(num);
|
---|
79 | const Float_t sigrms = sigma/sqrt(2*num);
|
---|
80 |
|
---|
81 | pix.SetPedestal(pedest, sigma);
|
---|
82 | pix.SetPedestalRms(pedrms, sigrms);
|
---|
83 |
|
---|
84 | *fLog << pedest << " " << sigma << " " << pedrms << " " << sigrms << endl;
|
---|
85 | }
|
---|
86 |
|
---|
87 | return kTRUE;
|
---|
88 | }
|
---|
89 |
|
---|