source: trunk/MagicSoft/Mars/manalysis/MCerPhotAnal2.cc@ 3485

Last change on this file since 3485 was 3471, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 7.7 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 <mailto:tbretz@uni-sw.gwdg.de>
19!
20! Copyright: MAGIC Software Development, 2000-2001
21!
22!
23\* ======================================================================== */
24
25//////////////////////////////////////////////////////////////////////////////
26//
27// MCerPhotAnal2
28//
29// This is a task which calculates the number of photons from the FADC
30// time slices. At the moment it integrates simply the FADC values.
31//
32// Input Containers:
33// MRawEvtData, MPedPhotCam
34//
35// Output Containers:
36// MCerPhotEvt
37//
38//////////////////////////////////////////////////////////////////////////////
39
40#include "MCerPhotAnal2.h"
41
42#include "MParList.h"
43
44#include "MLog.h"
45#include "MLogManip.h"
46
47#include "MRawRunHeader.h"
48#include "MRawEvtData.h" // MRawEvtData::GetNumPixels
49#include "MCerPhotEvt.h"
50#include "MPedPhotPix.h"
51#include "MPedPhotCam.h"
52#include "MRawEvtPixelIter.h"
53
54ClassImp(MCerPhotAnal2);
55
56using namespace std;
57
58// --------------------------------------------------------------------------
59//
60// Default constructor. b is the number of slices before the maximum slice,
61// a the number of slices behind the maximum slice which is taken as signal.
62//
63MCerPhotAnal2::MCerPhotAnal2(Byte_t b, Byte_t a, const char *name, const char *title)
64 : fBefore(b), fAfter(a)
65{
66 fName = name ? name : "MCerPhotAnal2";
67 fTitle = title ? title : "Task to calculate Cerenkov photons from raw data";
68
69 AddToBranchList("MRawEvtData.fHiGainPixId");
70 AddToBranchList("MRawEvtData.fLoGainPixId");
71 AddToBranchList("MRawEvtData.fHiGainFadcSamples");
72 AddToBranchList("MRawEvtData.fLoGainFadcSamples");
73}
74
75// --------------------------------------------------------------------------
76//
77// The PreProcess searches for the following input containers:
78// - MRawRunHeader
79// - MRawEvtData
80// - MPedPhotCam
81//
82// The following output containers are also searched and created if
83// they were not found:
84// - MCerPhotEvt
85//
86Int_t MCerPhotAnal2::PreProcess(MParList *pList)
87{
88 fSkip = 0;
89
90 fRunHeader = (MRawRunHeader*)pList->FindObject("MRawRunHeader");
91 if (!fRunHeader)
92 {
93 *fLog << dbginf << "MRawRunHeader not found... aborting." << endl;
94 return kFALSE;
95 }
96
97 fRawEvt = (MRawEvtData*)pList->FindObject("MRawEvtData");
98 if (!fRawEvt)
99 {
100 *fLog << dbginf << "MRawEvtData not found... aborting." << endl;
101 return kFALSE;
102 }
103
104 fCerPhotEvt = (MCerPhotEvt*)pList->FindCreateObj("MCerPhotEvt");
105 if (!fCerPhotEvt)
106 return kFALSE;
107
108 return kTRUE;
109}
110
111Bool_t MCerPhotAnal2::ReInit(MParList *pList)
112{
113 fPedestals=NULL;
114
115 // This must be done in ReInit because in PreProcess the
116 // headers are not available
117 const MRawRunHeader *runheader = (MRawRunHeader*)pList->FindObject("MRawRunHeader");
118 if (!runheader)
119 *fLog << warn << dbginf << "Warning - cannot check file type, MRawRunHeader not found." << endl;
120 else
121 {
122 if (runheader->IsMonteCarloRun())
123 return kTRUE;
124 }
125
126 fPedestals = (MPedPhotCam*)pList->FindCreateObj("MPedPhotCam");
127 if (runheader && !fPedestals)
128 return kFALSE;
129
130 return kTRUE;
131}
132
133// --------------------------------------------------------------------------
134//
135// Calculate the integral of the FADC time slices and store them as a new
136// pixel in the MCerPhotEvt container.
137//
138Int_t MCerPhotAnal2::Process()
139{
140 MRawEvtPixelIter pixel(fRawEvt);
141
142 while (pixel.Next())
143 {
144 Byte_t *ptr = pixel.GetHiGainSamples();
145 Byte_t *max = ptr+pixel.GetIdxMaxHiGainSample();
146 Byte_t *end = ptr+fRawEvt->GetNumHiGainSamples();
147 Byte_t *first = max-fBefore;
148 Byte_t *last = max+fAfter;
149
150 ULong_t sumb = 0; // sum background
151 ULong_t sqb = 0; // sum sqares background
152 ULong_t sumsb = 0; // sum signal+background
153 ULong_t sqsb = 0; // sum sqares signal+background
154
155 Int_t sat = 0; // saturates?
156 Int_t nb = 0;
157 Int_t nsb = 0;
158
159 if (*max==255)
160 sat++;
161
162 while (ptr<end)
163 {
164 if (ptr<first || ptr>last)
165 {
166 sumb += *ptr;
167 sqb += *ptr* *ptr;
168 nb++;
169 }
170 else
171 {
172 sumsb += *ptr;
173 sqsb += *ptr* *ptr;
174 nsb++;
175 }
176 ptr++;
177 }
178
179 if (sat>1)
180 {
181 // Area: x9
182 ptr = pixel.GetLoGainSamples();
183 max = ptr+pixel.GetIdxMaxLoGainSample();
184
185 if (*max>250)
186 {
187 fSkip++;
188 return kCONTINUE;
189 }
190
191 end = ptr+fRawEvt->GetNumLoGainSamples();
192 first = max-fBefore;
193 last = max+fAfter;
194
195 sumsb = 0; // sum signal+background
196 sqsb = 0; // sum sqares signal+background
197 //sumb = 0; // sum background
198 //sqb = 0; // sum sqares background
199
200 //nb = 0;
201 nsb = 0;
202 while (ptr<end)
203 {
204 if (ptr<first || ptr>last)
205 {
206 /*
207 // Background already calced from hi-gains!
208 sumb += ptr[i];
209 sqb += ptr[i]*ptr[i];
210 nb++;*/
211 }
212 else
213 {
214 sumsb += *ptr;
215 sqsb += *ptr* *ptr;
216 nsb++;
217 }
218 ptr++;
219 }
220 }
221
222 Float_t b = (float)sumb/nb; // background
223 Float_t sb = (float)sumsb/nsb; // signal+background
224
225 Float_t msb = (float)sqb/nb; // mean square background
226 //Float_t mssb = (float)sqsb/nsb; // mean square signal+background
227
228 Float_t sigb = sqrt(msb-b*b); // sigma background
229 //Float_t sigsb = sqrt(mssb-sb*sb); // sigma signal+background
230
231 Float_t s = sb-b; // signal
232 Float_t sqs = sqsb-nsb*b; // sum sqaures signal
233
234 Float_t mss = (float)sqs/nsb; // mean quare signal
235 Float_t sigs = sqrt(mss-s*s); // sigma signal
236
237 if (sat>1)
238 s*=10; // tgb has measured 9, but Florian said it's 10.
239
240 Int_t idx = pixel.GetPixelId();
241 fCerPhotEvt->AddPixel(idx, s, sigs);
242
243 // Preliminary: Do not overwrite pedestals calculated by
244 // MMcPedestalCopy and MMcPedestalNSBAdd
245 if (fPedestals)
246 (*fPedestals)[idx].Set(b, sigb);
247 }
248
249 fCerPhotEvt->FixSize();
250 fCerPhotEvt->SetReadyToSave();
251
252 if (fPedestals)
253 fPedestals->SetReadyToSave();
254
255 return kTRUE;
256}
257
258Int_t MCerPhotAnal2::PostProcess()
259{
260 if (GetNumExecutions()==0 || fSkip==0)
261 return kTRUE;
262
263 *fLog << inf << endl;
264 *fLog << GetDescriptor() << " execution statistics:" << endl;
265 *fLog << dec << setfill(' ');
266 *fLog << " " << setw(7) << fSkip << " (" << setw(3) << (int)(fSkip*100/GetNumExecutions()) << "%) Evts skipped due to: lo gain saturated." << endl;
267
268 return kTRUE;
269}
Note: See TracBrowser for help on using the repository browser.