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

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