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

Last change on this file since 3416 was 3389, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 7.8 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 *fLog << all << "CHECK: " << runheader->GetRunType() << endl;
123 if (runheader->IsMonteCarloRun())
124 return kTRUE;
125 }
126
127 fPedestals = (MPedPhotCam*)pList->FindCreateObj("MPedPhotCam");
128 if (runheader && !fPedestals)
129 return kFALSE;
130
131 return kTRUE;
132}
133
134// --------------------------------------------------------------------------
135//
136// Calculate the integral of the FADC time slices and store them as a new
137// pixel in the MCerPhotEvt container.
138//
139Int_t MCerPhotAnal2::Process()
140{
141 MRawEvtPixelIter pixel(fRawEvt);
142
143 while (pixel.Next())
144 {
145 Byte_t *ptr = pixel.GetHiGainSamples();
146 Byte_t *max = ptr+pixel.GetIdxMaxHiGainSample();
147 Byte_t *end = ptr+fRawEvt->GetNumHiGainSamples();
148 Byte_t *first = max-fBefore;
149 Byte_t *last = max+fAfter;
150
151 ULong_t sumb = 0; // sum background
152 ULong_t sqb = 0; // sum sqares background
153 ULong_t sumsb = 0; // sum signal+background
154 ULong_t sqsb = 0; // sum sqares signal+background
155
156 Int_t sat = 0; // saturates?
157 Int_t nb = 0;
158 Int_t nsb = 0;
159
160 if (*max==255)
161 sat++;
162
163 while (ptr<end)
164 {
165 if (ptr<first || ptr>last)
166 {
167 sumb += *ptr;
168 sqb += *ptr* *ptr;
169 nb++;
170 }
171 else
172 {
173 sumsb += *ptr;
174 sqsb += *ptr* *ptr;
175 nsb++;
176 }
177 ptr++;
178 }
179
180 if (sat>1)
181 {
182 // Area: x9
183 ptr = pixel.GetLoGainSamples();
184 max = ptr+pixel.GetIdxMaxLoGainSample();
185
186 if (*max>250)
187 {
188 fSkip++;
189 return kCONTINUE;
190 }
191
192 end = ptr+fRawEvt->GetNumLoGainSamples();
193 first = max-fBefore;
194 last = max+fAfter;
195
196 sumsb = 0; // sum signal+background
197 sqsb = 0; // sum sqares signal+background
198 //sumb = 0; // sum background
199 //sqb = 0; // sum sqares background
200
201 //nb = 0;
202 nsb = 0;
203 while (ptr<end)
204 {
205 if (ptr<first || ptr>last)
206 {
207 /*
208 // Background already calced from hi-gains!
209 sumb += ptr[i];
210 sqb += ptr[i]*ptr[i];
211 nb++;*/
212 }
213 else
214 {
215 sumsb += *ptr;
216 sqsb += *ptr* *ptr;
217 nsb++;
218 }
219 ptr++;
220 }
221 }
222
223 Float_t b = (float)sumb/nb; // background
224 Float_t sb = (float)sumsb/nsb; // signal+background
225
226 Float_t msb = (float)sqb/nb; // mean square background
227 //Float_t mssb = (float)sqsb/nsb; // mean square signal+background
228
229 Float_t sigb = sqrt(msb-b*b); // sigma background
230 //Float_t sigsb = sqrt(mssb-sb*sb); // sigma signal+background
231
232 Float_t s = sb-b; // signal
233 Float_t sqs = sqsb-nsb*b; // sum sqaures signal
234
235 Float_t mss = (float)sqs/nsb; // mean quare signal
236 Float_t sigs = sqrt(mss-s*s); // sigma signal
237
238 if (sat>1)
239 s*=10; // tgb has measured 9, but Florian said it's 10.
240
241 Int_t idx = pixel.GetPixelId();
242 fCerPhotEvt->AddPixel(idx, s, sigs);
243
244 // Preliminary: Do not overwrite pedestals calculated by
245 // MMcPedestalCopy and MMcPedestalNSBAdd
246 if (fPedestals)
247 (*fPedestals)[idx].Set(b, sigb);
248 }
249
250 fCerPhotEvt->FixSize();
251 fCerPhotEvt->SetReadyToSave();
252
253 if (fPedestals)
254 fPedestals->SetReadyToSave();
255
256 return kTRUE;
257}
258
259Int_t MCerPhotAnal2::PostProcess()
260{
261 if (GetNumExecutions()==0 || fSkip==0)
262 return kTRUE;
263
264 *fLog << inf << endl;
265 *fLog << GetDescriptor() << " execution statistics:" << endl;
266 *fLog << dec << setfill(' ');
267 *fLog << " " << setw(7) << fSkip << " (" << setw(3) << (int)(fSkip*100/GetNumExecutions()) << "%) Evts skipped due to: lo gain saturated." << endl;
268
269 return kTRUE;
270}
Note: See TracBrowser for help on using the repository browser.