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): Markus Gaug, 12/2004 <mailto:markus@ifae.es>
|
---|
19 | !
|
---|
20 | ! Copyright: MAGIC Software Development, 2000-2004
|
---|
21 | !
|
---|
22 | !
|
---|
23 | \* ======================================================================== */
|
---|
24 | //////////////////////////////////////////////////////////////////////////////
|
---|
25 | //
|
---|
26 | // MCalibCalcFromPast
|
---|
27 | //
|
---|
28 | // Steers the occurrance of interlaced calibration events in one data run
|
---|
29 | //
|
---|
30 | // Input Containers:
|
---|
31 | // MParList
|
---|
32 | // MCalibrationIntensityChargeCam
|
---|
33 | // MCalibrationIntensityRelTimeCam
|
---|
34 | // MCalibrationIntensityConstCam
|
---|
35 | // MBadPixelsIntensityCam
|
---|
36 | //
|
---|
37 | // Output Containers:
|
---|
38 | // MCalibrationIntensityChargeCam
|
---|
39 | // MCalibrationIntensityRelTimeCam
|
---|
40 | // MBadPixelsIntensityCam
|
---|
41 | //
|
---|
42 | // Class version 2:
|
---|
43 | // + UInt_t fNumPhesDump; // Number of cams after which the number of phes gets averaged
|
---|
44 | // + Float_t fMeanPhes;
|
---|
45 | // + Float_t fMeanPhesRelVar;
|
---|
46 | // + Bool_t fUpdateNumPhes; // Update the number of photo-electrons only after fNumPhesDump number of Cams
|
---|
47 | // + TArrayF fPhes;
|
---|
48 | // + TArrayF fPhesVar;
|
---|
49 | //
|
---|
50 | //////////////////////////////////////////////////////////////////////////////
|
---|
51 | #include "MCalibCalcFromPast.h"
|
---|
52 |
|
---|
53 | #include "MLog.h"
|
---|
54 | #include "MLogManip.h"
|
---|
55 |
|
---|
56 | #include "MParList.h"
|
---|
57 |
|
---|
58 | #include "MRawRunHeader.h"
|
---|
59 |
|
---|
60 | #include "MHCalibrationCam.h"
|
---|
61 |
|
---|
62 | #include "MCalibrationIntensityChargeCam.h"
|
---|
63 | #include "MCalibrationIntensityBlindCam.h"
|
---|
64 | #include "MCalibrationIntensityQECam.h"
|
---|
65 | #include "MCalibrationIntensityRelTimeCam.h"
|
---|
66 | #include "MCalibrationIntensityConstCam.h"
|
---|
67 |
|
---|
68 | #include "MBadPixelsIntensityCam.h"
|
---|
69 |
|
---|
70 | #include "MCalibrationChargePix.h"
|
---|
71 | #include "MCalibrationChargeCalc.h"
|
---|
72 | #include "MCalibrationRelTimeCalc.h"
|
---|
73 | #include "MCalibrateData.h"
|
---|
74 |
|
---|
75 | ClassImp(MCalibCalcFromPast);
|
---|
76 |
|
---|
77 | using namespace std;
|
---|
78 |
|
---|
79 | const UInt_t MCalibCalcFromPast::fgNumEventsDump = 500;
|
---|
80 | const UInt_t MCalibCalcFromPast::fgNumPhesDump = 10;
|
---|
81 |
|
---|
82 | // --------------------------------------------------------------------------
|
---|
83 | //
|
---|
84 | // Default constructor.
|
---|
85 | //
|
---|
86 | // Sets:
|
---|
87 | // - fNumEventsDump to fgNumEventsDump
|
---|
88 | // - fNumPhesDump to fgNumPhesDump
|
---|
89 | //
|
---|
90 | MCalibCalcFromPast::MCalibCalcFromPast(const char *name, const char *title)
|
---|
91 | : fGeom(NULL), fParList(NULL), fRunHeader(NULL),
|
---|
92 | fIntensCharge(NULL), fIntensBlind(NULL), fIntensRelTime(NULL), fIntensConst(NULL),
|
---|
93 | fIntensBad(NULL),
|
---|
94 | fChargeCalc(NULL), fRelTimeCalc(NULL), fCalibrate(NULL),
|
---|
95 | fNumCam(0), fNumEvents(0), fUpdateWithFFactorMethod(kTRUE), fUpdateNumPhes(kTRUE),
|
---|
96 | fNumFails(0)
|
---|
97 | {
|
---|
98 |
|
---|
99 | fName = name ? name : "MCalibCalcFromPast";
|
---|
100 | fTitle = title ? title : "Task to steer the processing of interlaced calibration events";
|
---|
101 |
|
---|
102 | SetNumEventsDump();
|
---|
103 | SetNumPhesDump ();
|
---|
104 | }
|
---|
105 |
|
---|
106 | // -----------------------------------------------------------------------------------
|
---|
107 | //
|
---|
108 | Int_t MCalibCalcFromPast::PreProcess(MParList *pList)
|
---|
109 | {
|
---|
110 |
|
---|
111 | fGeom = (MGeomCam*)pList->FindObject("MGeomCam");
|
---|
112 | if (!fGeom)
|
---|
113 | {
|
---|
114 | *fLog << err << "MGeomCam not found... abort." << endl;
|
---|
115 | return kFALSE;
|
---|
116 | }
|
---|
117 |
|
---|
118 | fParList = pList;
|
---|
119 | if (!fParList)
|
---|
120 | {
|
---|
121 | *fLog << err << "MParList not found... abort." << endl;
|
---|
122 | return kFALSE;
|
---|
123 | }
|
---|
124 |
|
---|
125 | fRunHeader = (MRawRunHeader*)pList->FindObject("MRawRunHeader");
|
---|
126 | if (!fRunHeader)
|
---|
127 | {
|
---|
128 | *fLog << err << "MRawRunHeader not found... abort." << endl;
|
---|
129 | return kFALSE;
|
---|
130 | }
|
---|
131 |
|
---|
132 | //
|
---|
133 | // Look for the MBadPixels Intensity Cam
|
---|
134 | //
|
---|
135 | fIntensBad = (MBadPixelsIntensityCam*)pList->FindCreateObj("MBadPixelsIntensityCam");
|
---|
136 | if (fIntensBad)
|
---|
137 | *fLog << inf << "Found MBadPixelsIntensityCam ... " << flush;
|
---|
138 | else
|
---|
139 | return kFALSE;
|
---|
140 |
|
---|
141 | //
|
---|
142 | // Look for the MFillH-class "MHCalibrationBlindCam". In case yes, initialize the
|
---|
143 | // corresponding IntensityCam
|
---|
144 | //
|
---|
145 | if (pList->FindObject(AddSerialNumber("MHCalibrationBlindCam")))
|
---|
146 | {
|
---|
147 |
|
---|
148 | *fLog << inf << "Found MHCalibrationBlindCam ... " << flush;
|
---|
149 |
|
---|
150 | fIntensBlind = (MCalibrationIntensityBlindCam*)pList->FindCreateObj("MCalibrationIntensityBlindCam");
|
---|
151 | if (!fIntensBlind)
|
---|
152 | {
|
---|
153 | *fLog << err << "Could not find nor create MCalibrationIntensitBlindCam abort... " << endl;
|
---|
154 | return kFALSE;
|
---|
155 | }
|
---|
156 | }
|
---|
157 |
|
---|
158 | //
|
---|
159 | // Look for the MFillH-class "MHCalibrationChargeCam". In case yes, initialize the
|
---|
160 | // corresponding IntensityCam
|
---|
161 | //
|
---|
162 | if (pList->FindObject(AddSerialNumber("MHCalibrationChargeCam")))
|
---|
163 | {
|
---|
164 |
|
---|
165 | fIntensCharge = (MCalibrationIntensityChargeCam*)pList->FindCreateObj("MCalibrationIntensityChargeCam");
|
---|
166 | fIntensQE = (MCalibrationIntensityQECam*) pList->FindCreateObj("MCalibrationIntensityQECam");
|
---|
167 | fIntensConst = (MCalibrationIntensityConstCam*) pList->FindCreateObj("MCalibrationIntensityConstCam");
|
---|
168 |
|
---|
169 | MCalibrationChargeCam *chargeinit = (MCalibrationChargeCam*)pList->FindObject("MCalibrationChargeCam");
|
---|
170 | MCalibrationQECam *qeinit = (MCalibrationQECam*) pList->FindObject("MCalibrationQECam");
|
---|
171 |
|
---|
172 | if (chargeinit)
|
---|
173 | fIntensCharge->SetCam(chargeinit,0);
|
---|
174 | else
|
---|
175 | *fLog << "Could not find initial MCalibrationChargeCam, cannot initialize intensity cam" << endl;
|
---|
176 |
|
---|
177 | if (qeinit)
|
---|
178 | fIntensQE->SetCam(qeinit,0);
|
---|
179 | else
|
---|
180 | *fLog << "Could not find initial MCalibrationQECam, cannot initialize intensity cam" << endl;
|
---|
181 |
|
---|
182 | fIntensConst->GetCam()->Init(*fGeom);
|
---|
183 |
|
---|
184 | if (!fChargeCalc)
|
---|
185 | fChargeCalc = (MCalibrationChargeCalc*)pList->FindObject("MCalibrationChargeCalc");
|
---|
186 |
|
---|
187 | if (!fCalibrate)
|
---|
188 | fCalibrate = (MCalibrateData*)pList->FindObject("MCalibrateData");
|
---|
189 |
|
---|
190 | *fLog << inf << "Found MHCalibrationChargeCam ... " << flush;
|
---|
191 |
|
---|
192 | if (!fIntensCharge)
|
---|
193 | {
|
---|
194 | *fLog << err << "Could not find nor create MCalibrationIntensityChargeCam abort... " << endl;
|
---|
195 | return kFALSE;
|
---|
196 | }
|
---|
197 |
|
---|
198 | if (!fIntensQE)
|
---|
199 | {
|
---|
200 | *fLog << err << "Could not find nor create MCalibrationIntensityQECam abort... " << endl;
|
---|
201 | return kFALSE;
|
---|
202 | }
|
---|
203 |
|
---|
204 | if (!fChargeCalc)
|
---|
205 | {
|
---|
206 | *fLog << err << "Could not find MCalibrationChargeCalc abort... " << endl;
|
---|
207 | return kFALSE;
|
---|
208 | }
|
---|
209 |
|
---|
210 | if (!fCalibrate)
|
---|
211 | {
|
---|
212 | *fLog << err << "Could not find MCalibrateData abort... " << endl;
|
---|
213 | return kFALSE;
|
---|
214 | }
|
---|
215 | }
|
---|
216 |
|
---|
217 | //
|
---|
218 | // Look for the MFillH name "FillRelTimeCam". In case yes, initialize the
|
---|
219 | // corresponding IntensityCam
|
---|
220 | //
|
---|
221 | if (pList->FindObject(AddSerialNumber("MHCalibrationRelTimeCam")))
|
---|
222 | {
|
---|
223 |
|
---|
224 | fIntensRelTime = (MCalibrationIntensityRelTimeCam*)pList->FindCreateObj("MCalibrationIntensityRelTimeCam");
|
---|
225 | if (!fRelTimeCalc)
|
---|
226 | fRelTimeCalc = (MCalibrationRelTimeCalc*)pList->FindObject(AddSerialNumber("MCalibrationRelTimeCalc"));
|
---|
227 |
|
---|
228 | *fLog << inf << "Found MHCalibrationRelTimeCam ... " << flush;
|
---|
229 |
|
---|
230 | if (!fIntensRelTime)
|
---|
231 | {
|
---|
232 | *fLog << err << "Could not find nor create MCalibrationIntensityRelTimeCam abort... " << endl;
|
---|
233 | return kFALSE;
|
---|
234 | }
|
---|
235 |
|
---|
236 | if (!fRelTimeCalc)
|
---|
237 | {
|
---|
238 | *fLog << err << "Could not find MCalibrationRelTimeCalc abort... " << endl;
|
---|
239 | return kFALSE;
|
---|
240 | }
|
---|
241 | }
|
---|
242 |
|
---|
243 | fNumCam = 0;
|
---|
244 | fNumEvents = 0;
|
---|
245 | fNumPhes = 0;
|
---|
246 |
|
---|
247 | fChargeCalc->SetUseExternalNumPhes(kFALSE);
|
---|
248 |
|
---|
249 | if (fUpdateNumPhes)
|
---|
250 | {
|
---|
251 | fPhes.Set(fNumPhesDump);
|
---|
252 | fPhesVar.Set(fNumPhesDump);
|
---|
253 | }
|
---|
254 |
|
---|
255 | fNumFails = 0;
|
---|
256 |
|
---|
257 | return kTRUE;
|
---|
258 | }
|
---|
259 |
|
---|
260 | // --------------------------------------------------------------------------
|
---|
261 | //
|
---|
262 | // Set fNumEvents=0
|
---|
263 | //
|
---|
264 | // This is necessary because the calibration histograms do reset themself
|
---|
265 | // if ReInit is called, so they are empty. MCalibCalcFromPast errornously
|
---|
266 | // ignores how many events are in the histograms but count the number
|
---|
267 | // itself.
|
---|
268 | //
|
---|
269 | Bool_t MCalibCalcFromPast::ReInit(MParList *pList)
|
---|
270 | {
|
---|
271 | if (fNumEvents>0)
|
---|
272 | *fLog << inf << fNumEvents << " calibration events at the end of the last file have been skipped." << endl;
|
---|
273 |
|
---|
274 | fNumEvents = 0;
|
---|
275 |
|
---|
276 | return kTRUE;
|
---|
277 | }
|
---|
278 |
|
---|
279 | // --------------------------------------------------------------------------
|
---|
280 | //
|
---|
281 | // - Initializes new containers in the
|
---|
282 | // - Intensity Cams, if the number of calibration events has reach fNumEventsDump.
|
---|
283 | // - Executes Finalize() of the MCalibration*Calc classes in that case.
|
---|
284 | // - Sets the latest MCalibrationChargeCam as update class into MCalibrateData
|
---|
285 | // - Initialize new MCalibration*Cams into the intensity cams.
|
---|
286 | //
|
---|
287 | Int_t MCalibCalcFromPast::Process()
|
---|
288 | {
|
---|
289 |
|
---|
290 | if (fNumEvents++ < fNumEventsDump)
|
---|
291 | return kTRUE;
|
---|
292 |
|
---|
293 | fNumEvents = 0;
|
---|
294 | ReInitialize();
|
---|
295 |
|
---|
296 | //
|
---|
297 | // Finalize Possible calibration histogram classes...
|
---|
298 | //
|
---|
299 | *fLog << inf << GetDescriptor() << ": Finalize calibration histograms: " << flush;
|
---|
300 |
|
---|
301 | if (Finalize("MHCalibrationChargeCam")) *fLog << "MHCalibrationChargeCam..." << flush;
|
---|
302 | if (Finalize("MHCalibrationChargeBlindCam")) *fLog << "MHCalibrationChargeBlindCam..." << flush;
|
---|
303 | if (Finalize("MHCalibrationRelTimeCam")) *fLog << "MHCalibrationRelTimeCam..." << flush;
|
---|
304 |
|
---|
305 | //
|
---|
306 | // Finalize possible calibration calculation tasks
|
---|
307 | //
|
---|
308 | *fLog << endl;
|
---|
309 | *fLog << inf << "Finalize calibration calculations..." << endl;
|
---|
310 | if (fChargeCalc)
|
---|
311 | {
|
---|
312 | if (!fChargeCalc->Finalize())
|
---|
313 | {
|
---|
314 | fNumFails++;
|
---|
315 | *fLog << warn << "WARNING - Finalization of charges failed the " << fNumFails << " time..." << endl;
|
---|
316 | }
|
---|
317 |
|
---|
318 | if (fUpdateNumPhes)
|
---|
319 | {
|
---|
320 | MCalibrationChargePix &avpix =(MCalibrationChargePix&)fIntensCharge->GetCam()->GetAverageArea(0);
|
---|
321 | fPhes [fNumPhes] = avpix.GetPheFFactorMethod();
|
---|
322 | fPhesVar[fNumPhes] = avpix.GetPheFFactorMethodVar();
|
---|
323 |
|
---|
324 | fNumPhes++;
|
---|
325 |
|
---|
326 | if (fNumPhes == fNumPhesDump)
|
---|
327 | {
|
---|
328 | fNumPhes = 0;
|
---|
329 | if (!UpdateMeanPhes())
|
---|
330 | {
|
---|
331 | *fLog << warn << "Could not update mean number of photo-electrons. "
|
---|
332 | << "Skip it until next update" << endl;
|
---|
333 | fChargeCalc->SetUseExternalNumPhes(kFALSE);
|
---|
334 | }
|
---|
335 | else
|
---|
336 | {
|
---|
337 | *fLog << inf << "New averaged number photo-electrons: " << fMeanPhes << endl;
|
---|
338 | fChargeCalc->SetExternalNumPhes ( fMeanPhes );
|
---|
339 | fChargeCalc->SetExternalNumPhesRelVar( fMeanPhesRelVar );
|
---|
340 | fChargeCalc->SetUseExternalNumPhes();
|
---|
341 | }
|
---|
342 | }
|
---|
343 | }
|
---|
344 | }
|
---|
345 |
|
---|
346 | if (fRelTimeCalc)
|
---|
347 | fRelTimeCalc->Finalize();
|
---|
348 |
|
---|
349 | if (fCalibrate)
|
---|
350 | fCalibrate->UpdateConversionFactors(fUpdateWithFFactorMethod ? NULL
|
---|
351 | : (MCalibrationChargeCam*)fIntensCharge->GetCam() );
|
---|
352 |
|
---|
353 | return kTRUE;
|
---|
354 | }
|
---|
355 |
|
---|
356 |
|
---|
357 | // --------------------------------------------------------------------------
|
---|
358 | //
|
---|
359 | // Searches for name in the MParList and calls, if existing:
|
---|
360 | // - MHCalibrationCam::Finalize()
|
---|
361 | // - MHCalibrationCam::ResetHists()
|
---|
362 | //
|
---|
363 | Bool_t MCalibCalcFromPast::Finalize(const char* name, Bool_t finalize)
|
---|
364 | {
|
---|
365 | MHCalibrationCam *hist = (MHCalibrationCam*)fParList->FindObject(name, "MHCalibrationCam");
|
---|
366 | if (!hist)
|
---|
367 | return kFALSE;
|
---|
368 |
|
---|
369 | if (finalize)
|
---|
370 | hist->Finalize();
|
---|
371 |
|
---|
372 | hist->ResetHists();
|
---|
373 | return kTRUE;
|
---|
374 | }
|
---|
375 |
|
---|
376 | // --------------------------------------------------------------------------
|
---|
377 | //
|
---|
378 | // Re-Intitializes new containers inside the Intensity Cams.
|
---|
379 | // From now on, a call to the IntensityCam functions returns pointers
|
---|
380 | // to the newly created Containers.
|
---|
381 | //
|
---|
382 | Bool_t MCalibCalcFromPast::ReInitialize()
|
---|
383 | {
|
---|
384 | fNumCam++;
|
---|
385 |
|
---|
386 | *fLog << inf << "MCalibCalcFromPast::ReInitialize #" << fNumCam << ": ";
|
---|
387 |
|
---|
388 | const Int_t runnumber = fRunHeader->GetRunNumber();
|
---|
389 |
|
---|
390 | if (fIntensBad)
|
---|
391 | {
|
---|
392 | fIntensBad->AddToList(Form("MBadPixelsCam%04d",fNumCam),*fGeom);
|
---|
393 | *fLog << "MBadPixelsCam...";
|
---|
394 | }
|
---|
395 |
|
---|
396 | if (fIntensCharge)
|
---|
397 | {
|
---|
398 | fIntensCharge->AddToList(Form("MCalibrationChargeCam%04d",fNumCam),*fGeom);
|
---|
399 | fIntensCharge->GetCam()->SetRunNumber(runnumber);
|
---|
400 | *fLog << "MCalibrationChargeCam...";
|
---|
401 | }
|
---|
402 | if (fIntensQE)
|
---|
403 | {
|
---|
404 | fIntensQE->AddToList(Form("MCalibrationQECam%04d",fNumCam),*fGeom);
|
---|
405 | fIntensQE->GetCam()->SetRunNumber(runnumber);
|
---|
406 | *fLog << "MCalibrationQECam...";
|
---|
407 | }
|
---|
408 | if (fIntensBlind)
|
---|
409 | {
|
---|
410 | fIntensBlind->AddToList(Form("MCalibrationBlindCam%04d",fNumCam),*fGeom);
|
---|
411 | fIntensBlind->GetCam()->SetRunNumber(runnumber);
|
---|
412 | *fLog << "MCalibrationBlindCam...";
|
---|
413 | }
|
---|
414 |
|
---|
415 | *fLog << endl;
|
---|
416 |
|
---|
417 | return kTRUE;
|
---|
418 |
|
---|
419 | }
|
---|
420 |
|
---|
421 | Int_t MCalibCalcFromPast::PostProcess()
|
---|
422 | {
|
---|
423 | if (GetNumExecutions()==0)
|
---|
424 | return kTRUE;
|
---|
425 |
|
---|
426 | // Now we reset all histograms to make sure that the PostProcess
|
---|
427 | // of the following tasks doesn't try to finalize a partly empty
|
---|
428 | // histogram!
|
---|
429 | Finalize("MHCalibrationChargeCam", kFALSE);
|
---|
430 | Finalize("MHCalibrationChargeBlindCam", kFALSE);
|
---|
431 | Finalize("MHCalibrationRelTimeCam", kFALSE);
|
---|
432 |
|
---|
433 | if (fChargeCalc)
|
---|
434 | fChargeCalc->ResetNumProcessed();
|
---|
435 |
|
---|
436 | if (fNumCam==0)
|
---|
437 | return kTRUE;
|
---|
438 |
|
---|
439 | *fLog << inf << endl;
|
---|
440 | *fLog << GetDescriptor() << " execution statistics:" << endl;
|
---|
441 | *fLog << " " << setw(7) << fNumFails << " (" << Form("%5.1f", 100.*fNumFails/fNumCam) << "%) updates failed." << endl;
|
---|
442 | *fLog << endl;
|
---|
443 |
|
---|
444 | return kTRUE;
|
---|
445 | }
|
---|
446 |
|
---|
447 |
|
---|
448 | Bool_t MCalibCalcFromPast::UpdateMeanPhes()
|
---|
449 | {
|
---|
450 | Float_t sumw = 0.;
|
---|
451 | Float_t sum = 0.;
|
---|
452 |
|
---|
453 | for (Int_t i=0; i<fPhes.GetSize(); i++)
|
---|
454 | {
|
---|
455 | const Float_t weight = 1./fPhesVar[i];
|
---|
456 | sum += fPhes[i]*weight;
|
---|
457 | sumw += weight;
|
---|
458 | }
|
---|
459 |
|
---|
460 | if (sumw < 0.000001)
|
---|
461 | return kFALSE;
|
---|
462 |
|
---|
463 | if (sum < 0.000001)
|
---|
464 | return kFALSE;
|
---|
465 |
|
---|
466 | fMeanPhes = sum/sumw;
|
---|
467 | fMeanPhesRelVar = sumw/sum/sum;
|
---|
468 |
|
---|
469 | return kTRUE;
|
---|
470 | }
|
---|
471 |
|
---|
472 | // --------------------------------------------------------------------------
|
---|
473 | //
|
---|
474 | // Read the setup from a TEnv, eg:
|
---|
475 | // MCalibCalcFromPast.UpdateWithFFactorMethod: Off, On
|
---|
476 | // MCalibCalcFromPast.NumEventsDump: 500
|
---|
477 | // MCalibCalcFromPast.UpdateNumPhes: yes/no
|
---|
478 | // MCalibCalcFromPast.NumPhesDump: 10
|
---|
479 | //
|
---|
480 | Int_t MCalibCalcFromPast::ReadEnv(const TEnv &env, TString prefix, Bool_t print)
|
---|
481 | {
|
---|
482 | Bool_t rc = kFALSE;
|
---|
483 | if (IsEnvDefined(env, prefix, "UpdateWithFFactorMethod", print))
|
---|
484 | {
|
---|
485 | rc = kTRUE;
|
---|
486 | SetUpdateWithFFactorMethod(GetEnvValue(env, prefix, "UpdateWithFFactorMethod", fUpdateWithFFactorMethod));
|
---|
487 | }
|
---|
488 |
|
---|
489 | if (IsEnvDefined(env, prefix, "NumEventsDump", print))
|
---|
490 | {
|
---|
491 | SetNumEventsDump(GetEnvValue(env, prefix, "NumEventsDump", (Int_t)fNumEventsDump));
|
---|
492 | rc = kTRUE;
|
---|
493 | }
|
---|
494 |
|
---|
495 | if (IsEnvDefined(env, prefix, "UpdateNumPhes", print))
|
---|
496 | {
|
---|
497 | TString s = GetEnvValue(env, prefix, "UpdateNumPhes", "");
|
---|
498 | s.ToLower();
|
---|
499 | if (s.BeginsWith("no"))
|
---|
500 | SetUpdateNumPhes(kFALSE);
|
---|
501 | if (s.BeginsWith("yes"))
|
---|
502 | SetUpdateNumPhes(kTRUE);
|
---|
503 | rc = kTRUE;
|
---|
504 | }
|
---|
505 |
|
---|
506 | if (IsEnvDefined(env, prefix, "NumPhesDump", print))
|
---|
507 | {
|
---|
508 | SetNumPhesDump(GetEnvValue(env, prefix, "NumPhesDump", (Int_t)fNumPhesDump));
|
---|
509 | rc = kTRUE;
|
---|
510 | }
|
---|
511 |
|
---|
512 | return rc;
|
---|
513 | }
|
---|