source: trunk/MagicSoft/Mars/manalysis/MCerPhotCalc.cc@ 2194

Last change on this file since 2194 was 2178, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 6.6 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): Abelardo Moralejo 7/2002 <mailto:moralejo@pd.infn.it>
19! Author(s): Thomas Bretz 2002 <mailto:tbretz@astro.uni-wuerzburg.de>
20!
21! Copyright: MAGIC Software Development, 2002-2003
22!
23!
24\* ======================================================================== */
25
26//////////////////////////////////////////////////////////////////////////////
27//
28// MCerPhotCalc
29//
30// This is a task which calculates the number of photons from the FADC
31// time slices. It weights the each slice according to the numbers in
32// the array fWeight (default: all slices added up with weight 1).
33//
34// The weights are rescaled, such that sum(weigths)=num slices
35//
36// Input Containers:
37// MRawRunHeader, MRawEvtData, MPedestalCam
38//
39// Output Containers:
40// MCerPhotEvt
41//
42//////////////////////////////////////////////////////////////////////////////
43#include "MCerPhotCalc.h"
44
45#include "MParList.h"
46
47#include "MLog.h"
48#include "MLogManip.h"
49
50#include "MMcRunHeader.hxx"
51
52#include "MRawRunHeader.h"
53#include "MRawEvtData.h" // MRawEvtData::GetNumPixels
54#include "MCerPhotEvt.h"
55#include "MPedestalPix.h"
56#include "MPedestalCam.h"
57#include "MRawEvtPixelIter.h"
58
59ClassImp(MCerPhotCalc);
60
61using namespace std;
62
63// --------------------------------------------------------------------------
64//
65// Default constructor.
66//
67MCerPhotCalc::MCerPhotCalc(const char *name, const char *title)
68{
69 fName = name ? name : "MCerPhotCalc";
70 fTitle = title ? title : "Calculate pixel signal from FADC data";
71
72 AddToBranchList("MRawEvtData.fHiGainPixId");
73 AddToBranchList("MRawEvtData.fLoGainPixId");
74 AddToBranchList("MRawEvtData.fHiGainFadcSamples");
75 AddToBranchList("MRawEvtData.fLoGainFadcSamples");
76
77 SetDefaultWeights();
78}
79
80// --------------------------------------------------------------------------
81//
82// The PreProcess searches for the following input containers:
83// - MRawRunHeader
84// - MRawEvtData
85// - MPedestalCam
86//
87// The following output containers are also searched and created if
88// they were not found:
89// - MCerPhotEvt
90//
91Bool_t MCerPhotCalc::PreProcess(MParList *pList)
92{
93 fRunHeader = (MRawRunHeader*)pList->FindObject("MRawRunHeader");
94 if (!fRunHeader)
95 {
96 *fLog << dbginf << "MRawRunHeader not found... aborting." << endl;
97 return kFALSE;
98 }
99
100 fRawEvt = (MRawEvtData*)pList->FindObject("MRawEvtData");
101 if (!fRawEvt)
102 {
103 *fLog << dbginf << "MRawEvtData not found... aborting." << endl;
104 return kFALSE;
105 }
106
107 fPedestals = (MPedestalCam*)pList->FindCreateObj("MPedestalCam");
108 if (!fPedestals)
109 return kFALSE;
110
111 fCerPhotEvt = (MCerPhotEvt*)pList->FindCreateObj("MCerPhotEvt");
112 if (!fCerPhotEvt)
113 return kFALSE;
114
115 // Calculate quadratic sum of weights:
116 fSumWeights = 0;
117 fSumQuadWeights = 0;
118 for (Int_t i=0; i<fWeight.GetSize(); i++)
119 {
120 fSumWeights += fWeight[i];
121 fSumQuadWeights += fWeight[i]*fWeight[i];
122 }
123
124 fSumQuadWeights = sqrt(fSumQuadWeights);
125
126 return kTRUE;
127}
128
129// --------------------------------------------------------------------------
130//
131// Check for the run type and camera version.
132// If the file is a MC file and the used camera version is <= 40
133// we enable a fix for truncated pedestal means in this version.
134//
135Bool_t MCerPhotCalc::ReInit(MParList *pList)
136{
137 const MRawRunHeader *runheader = (MRawRunHeader*)pList->FindObject("MRawRunHeader");
138 if (!runheader)
139 {
140 *fLog << warn << dbginf << "Warning - cannot check file type, MRawRunHeader not found." << endl;
141 return kTRUE;
142 }
143
144 if (fRunHeader->GetNumSamplesHiGain() != fWeight.GetSize())
145 {
146 *fLog << dbginf << "Number of FADC slices (" << fRunHeader->GetNumSamplesHiGain() <<") is different from assumed one (" << fWeight.GetSize() << ")... aborting." << endl;
147 return kFALSE;
148 }
149
150 if (runheader->GetRunType() != kRTMonteCarlo)
151 return kTRUE;
152
153 MMcRunHeader *mcrunheader = (MMcRunHeader*)pList->FindObject("MMcRunHeader");
154 if (!mcrunheader)
155 {
156 *fLog << warn << dbginf << "Warning - cannot check for camera version, MC run header not found." << endl;
157 return kTRUE;
158 }
159
160 fEnableFix = kFALSE;
161 if (mcrunheader->GetCamVersion() <= 40)
162 fEnableFix = kTRUE;
163
164 return kTRUE;
165}
166
167// --------------------------------------------------------------------------
168//
169// Calculate the integral of the FADC time slices and store them as a new
170// pixel in the MCerPhotEvt container.
171//
172Bool_t MCerPhotCalc::Process()
173{
174 //fCerPhotEvt->InitSize(fRawEvt->GetNumPixels());
175
176 MRawEvtPixelIter pixel(fRawEvt);
177
178 while (pixel.Next())
179 {
180 const UInt_t pixid = pixel.GetPixelId();
181 const MPedestalPix &ped = (*fPedestals)[pixid];
182
183 //
184 // sanity check (old MC files sometimes have pixids>577)
185 //
186 if (!fPedestals->CheckBounds(pixid))
187 {
188 *fLog << inf << "Pixel ID larger than camera... skipping event." << endl;
189 return kCONTINUE;
190 }
191
192 //
193 // Mean pedestal:
194 //
195 const Double_t mean = fEnableFix ? ped.GetMean()-0.5 : ped.GetMean();
196
197 //
198 // Calculate pixel signal unless it has all FADC slices empty:
199 //
200 Byte_t *ptr = pixel.GetHiGainSamples();
201
202 Float_t nphot = 0;
203 for(Int_t i=0; i<fWeight.GetSize(); i++)
204 nphot += ptr[i]*fWeight[i];
205
206 nphot -= mean*fSumWeights;
207
208 const Float_t nphoterr = ped.GetSigma()* fSumQuadWeights;
209
210 fCerPhotEvt->AddPixel(pixid, nphot, nphoterr);
211
212 // FIXME! Handling of Lo Gains is missing!
213 }
214
215 fCerPhotEvt->FixSize();
216 fCerPhotEvt->SetReadyToSave();
217
218 return kTRUE;
219}
220
221// --------------------------------------------------------------------------
222//
223// Set default values for the number of slices and weights:
224//
225void MCerPhotCalc::SetDefaultWeights()
226{
227 const Float_t dummy[15] = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 };
228 fWeight.Set(15, dummy);
229}
Note: See TracBrowser for help on using the repository browser.