| 1 | /* ======================================================================== *\
|
|---|
| 2 | ! $Name: not supported by cvs2svn $:$Id: MBadPixelsTreat.cc,v 1.40 2007-06-28 20:13:17 tbretz Exp $
|
|---|
| 3 | ! --------------------------------------------------------------------------
|
|---|
| 4 | !
|
|---|
| 5 | ! *
|
|---|
| 6 | ! * This file is part of MARS, the MAGIC Analysis and Reconstruction
|
|---|
| 7 | ! * Software. It is distributed to you in the hope that it can be a useful
|
|---|
| 8 | ! * and timesaving tool in analysing Data of imaging Cerenkov telescopes.
|
|---|
| 9 | ! * It is distributed WITHOUT ANY WARRANTY.
|
|---|
| 10 | ! *
|
|---|
| 11 | ! * Permission to use, copy, modify and distribute this software and its
|
|---|
| 12 | ! * documentation for any purpose is hereby granted without fee,
|
|---|
| 13 | ! * provided that the above copyright notice appear in all copies and
|
|---|
| 14 | ! * that both that copyright notice and this permission notice appear
|
|---|
| 15 | ! * in supporting documentation. It is provided "as is" without express
|
|---|
| 16 | ! * or implied warranty.
|
|---|
| 17 | ! *
|
|---|
| 18 | !
|
|---|
| 19 | !
|
|---|
| 20 | ! Author(s): Oscar Blanch 12/2001 <mailto:blanch@ifae.es>
|
|---|
| 21 | ! Author(s): Thomas Bretz 08/2002 <mailto:tbretz@astro.uni-wuerzburg.de>
|
|---|
| 22 | ! Author(s): Stefan Ruegamer <mailto:snruegam@astro.uni-wuerzburg.de>
|
|---|
| 23 | !
|
|---|
| 24 | ! Copyright: MAGIC Software Development, 2000-2006
|
|---|
| 25 | !
|
|---|
| 26 | !
|
|---|
| 27 | \* ======================================================================== */
|
|---|
| 28 |
|
|---|
| 29 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| 30 | //
|
|---|
| 31 | // MBadPixelsTreat
|
|---|
| 32 | //
|
|---|
| 33 | // You can use MBadPixelsTreat::SetUseInterpolation to replaced the
|
|---|
| 34 | // bad pixels by the average of its neighbors instead of unmapping
|
|---|
| 35 | // them. If you want to include the central pixel use
|
|---|
| 36 | // MBadPixelsTreat::SetUseCentralPixel. The bad pixels are taken from
|
|---|
| 37 | // an existing MBadPixelsCam.
|
|---|
| 38 | //
|
|---|
| 39 | // It check if there are enough neighbors to calculate the mean
|
|---|
| 40 | // If not, unmap the pixel. The minimum number of good neighbors
|
|---|
| 41 | // should be set using SetNumMinNeighbors
|
|---|
| 42 | //
|
|---|
| 43 | // If you want to interpolate unreliable pixels and unsuitable
|
|---|
| 44 | // (broken) pixels use SetHardTreatment().
|
|---|
| 45 | //
|
|---|
| 46 | //
|
|---|
| 47 | // Options:
|
|---|
| 48 | // --------
|
|---|
| 49 | // SetHardTreatment: Also interpolate unreliable pixels not only unsuitable
|
|---|
| 50 | // SetUseInterpolation: Interpolate pixels instead of unmapping them
|
|---|
| 51 | // SetUseCentralPixel: also use the pixel itself for interpolation
|
|---|
| 52 | // SetProcessPedestalRun: process the pedestals once per run/file
|
|---|
| 53 | // SetProcessPedestalEvt: process the pedestal once per event
|
|---|
| 54 | // SetProcessTimes: do interpolation of the arrival time
|
|---|
| 55 | //
|
|---|
| 56 | // If the arrival time treatment is switched on and "MPedPhotFromExtractor"
|
|---|
| 57 | // and "MPedPhotFromExtractorRndm" are found the pixel is filled with
|
|---|
| 58 | // a random gaus calculated from these two MPedPhotCams in the case
|
|---|
| 59 | // the pixels is detected as background.
|
|---|
| 60 | //
|
|---|
| 61 | //
|
|---|
| 62 | // Input Containers:
|
|---|
| 63 | // MSignalCam
|
|---|
| 64 | // MPedPhotCam
|
|---|
| 65 | // MBadPixelsCam
|
|---|
| 66 | // MRawRunHeader
|
|---|
| 67 | // [MGeomCam]
|
|---|
| 68 | //
|
|---|
| 69 | // Output Containers:
|
|---|
| 70 | // MSignalCam
|
|---|
| 71 | //
|
|---|
| 72 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| 73 | #include "MBadPixelsTreat.h"
|
|---|
| 74 |
|
|---|
| 75 | #include <fstream>
|
|---|
| 76 |
|
|---|
| 77 | #include <TEnv.h>
|
|---|
| 78 | #include <TRandom.h>
|
|---|
| 79 | #include <TObjString.h>
|
|---|
| 80 |
|
|---|
| 81 | //#include "MArrayD.h" // Used instead of TArrayD because operator[] has no range check
|
|---|
| 82 |
|
|---|
| 83 | #include "MLog.h"
|
|---|
| 84 | #include "MLogManip.h"
|
|---|
| 85 |
|
|---|
| 86 | #include "MParList.h"
|
|---|
| 87 |
|
|---|
| 88 | #include "MGeomPix.h"
|
|---|
| 89 | #include "MGeomCam.h"
|
|---|
| 90 |
|
|---|
| 91 | #include "MSignalPix.h"
|
|---|
| 92 | #include "MSignalCam.h"
|
|---|
| 93 |
|
|---|
| 94 | #include "MPedPhotPix.h"
|
|---|
| 95 | #include "MPedPhotCam.h"
|
|---|
| 96 |
|
|---|
| 97 | #include "MBadPixelsPix.h"
|
|---|
| 98 | #include "MBadPixelsCam.h"
|
|---|
| 99 |
|
|---|
| 100 | #include "MRawRunHeader.h"
|
|---|
| 101 |
|
|---|
| 102 | ClassImp(MBadPixelsTreat);
|
|---|
| 103 |
|
|---|
| 104 | using namespace std;
|
|---|
| 105 |
|
|---|
| 106 | static const TString gsDefName = "MBadPixelsTreat";
|
|---|
| 107 | static const TString gsDefTitle = "Task to treat bad pixels (interpolation, unmapping)";
|
|---|
| 108 |
|
|---|
| 109 | // --------------------------------------------------------------------------
|
|---|
| 110 | //
|
|---|
| 111 | // Default constructor.
|
|---|
| 112 | //
|
|---|
| 113 | MBadPixelsTreat::MBadPixelsTreat(const char *name, const char *title)
|
|---|
| 114 | : fGeomCam(0), fEvt(0), fBadPixels(0), fRawRunHeader(0),
|
|---|
| 115 | fPedPhot1(0), fPedPhot2(0),fFlags(0), fNumMinNeighbors(3),
|
|---|
| 116 | fMaxArrivalTimeDiff(3.)
|
|---|
| 117 | {
|
|---|
| 118 | fName = name ? name : gsDefName.Data();
|
|---|
| 119 | fTitle = title ? title : gsDefTitle.Data();
|
|---|
| 120 |
|
|---|
| 121 | SetUseInterpolation();
|
|---|
| 122 | SetProcessPedestal();
|
|---|
| 123 | SetProcessTimes();
|
|---|
| 124 | }
|
|---|
| 125 |
|
|---|
| 126 | // --------------------------------------------------------------------------
|
|---|
| 127 | //
|
|---|
| 128 | // Returns the status of a pixel. If kHardTreatment is set a pixel must
|
|---|
| 129 | // be unsuitable or uriliable to be treated. If not it is treated only if
|
|---|
| 130 | // it is unsuitable
|
|---|
| 131 | // (IsBad() checks for any flag)
|
|---|
| 132 | //
|
|---|
| 133 | Bool_t MBadPixelsTreat::IsPixelBad(Int_t idx) const
|
|---|
| 134 | {
|
|---|
| 135 | return TESTBIT(fFlags, kHardTreatment) ? (*fBadPixels)[idx].IsBad():(*fBadPixels)[idx].IsUnsuitable();
|
|---|
| 136 | }
|
|---|
| 137 |
|
|---|
| 138 | void MBadPixelsTreat::AddNamePedPhotCam(const char *name)
|
|---|
| 139 | {
|
|---|
| 140 | fNamePedPhotCams.Add(new TObjString(name));
|
|---|
| 141 | }
|
|---|
| 142 |
|
|---|
| 143 | // --------------------------------------------------------------------------
|
|---|
| 144 | //
|
|---|
| 145 | // - Try to find or create MBlindPixels in parameter list.
|
|---|
| 146 | // - get the MSignalCam from the parlist (abort if missing)
|
|---|
| 147 | // - if no pixels are given by the user try to determin the starfield
|
|---|
| 148 | // from the monte carlo run header.
|
|---|
| 149 | //
|
|---|
| 150 | Int_t MBadPixelsTreat::PreProcess (MParList *pList)
|
|---|
| 151 | {
|
|---|
| 152 | fRawRunHeader = (MRawRunHeader*)pList->FindObject(AddSerialNumber("MRawRunHeader"));
|
|---|
| 153 | if (!fRawRunHeader)
|
|---|
| 154 | {
|
|---|
| 155 | *fLog << err << AddSerialNumber("MRawRunHeader") << " not found... aborting." << endl;
|
|---|
| 156 | return kFALSE;
|
|---|
| 157 | }
|
|---|
| 158 |
|
|---|
| 159 | fBadPixels = (MBadPixelsCam*)pList->FindObject(AddSerialNumber("MBadPixelsCam"));
|
|---|
| 160 | if (!fBadPixels)
|
|---|
| 161 | {
|
|---|
| 162 | *fLog << err << AddSerialNumber("MBadPixelsCam") << " not found... aborting." << endl;
|
|---|
| 163 | return kFALSE;
|
|---|
| 164 | }
|
|---|
| 165 |
|
|---|
| 166 | fEvt = (MSignalCam*)pList->FindObject(AddSerialNumber("MSignalCam"));
|
|---|
| 167 | if (!fEvt)
|
|---|
| 168 | {
|
|---|
| 169 | *fLog << err << AddSerialNumber("MSignalCam") << " not found... aborting." << endl;
|
|---|
| 170 | return kFALSE;
|
|---|
| 171 | }
|
|---|
| 172 |
|
|---|
| 173 | fGeomCam = 0;
|
|---|
| 174 | if (!IsUseInterpolation())
|
|---|
| 175 | return kTRUE;
|
|---|
| 176 |
|
|---|
| 177 | fGeomCam = (MGeomCam*)pList->FindObject(AddSerialNumber("MGeomCam"));
|
|---|
| 178 | if (!fGeomCam)
|
|---|
| 179 | {
|
|---|
| 180 | *fLog << err << AddSerialNumber("MGeomCam") << " not found - can't use interpolation... abort." << endl;
|
|---|
| 181 | *fLog << " Use MBadPixelsTreat::SetUseInterpolation(kFALSE) to switch interpolation" << endl;
|
|---|
| 182 | *fLog << " off and use unmapping instead." << endl;
|
|---|
| 183 | return kFALSE;
|
|---|
| 184 | }
|
|---|
| 185 |
|
|---|
| 186 | const Bool_t proc = IsProcessPedestalEvt() || IsProcessPedestalRun();
|
|---|
| 187 |
|
|---|
| 188 | if (fNamePedPhotCams.GetSize()>0 && !proc)
|
|---|
| 189 | {
|
|---|
| 190 | *fLog << err << "Pedestal list contains entries, but pedestal treatment is switched off... abort." << endl;
|
|---|
| 191 | return kFALSE;
|
|---|
| 192 | }
|
|---|
| 193 |
|
|---|
| 194 | if (proc)
|
|---|
| 195 | {
|
|---|
| 196 | if (fNamePedPhotCams.GetSize()==0)
|
|---|
| 197 | {
|
|---|
| 198 | *fLog << inf << "No container names specified... using default: MPedPhotCam." << endl;
|
|---|
| 199 | AddNamePedPhotCam();
|
|---|
| 200 | }
|
|---|
| 201 |
|
|---|
| 202 | fPedPhotCams.Clear();
|
|---|
| 203 |
|
|---|
| 204 | TIter Next(&fNamePedPhotCams);
|
|---|
| 205 | TObject *o=0;
|
|---|
| 206 | while ((o=Next()))
|
|---|
| 207 | {
|
|---|
| 208 | TObject *p = pList->FindObject(AddSerialNumber(o->GetName()), "MPedPhotCam");
|
|---|
| 209 | if (!p)
|
|---|
| 210 | {
|
|---|
| 211 | *fLog << err << AddSerialNumber(o->GetName()) << " [MPedPhotCam] not found... aborting." << endl;
|
|---|
| 212 | return kFALSE;
|
|---|
| 213 | }
|
|---|
| 214 |
|
|---|
| 215 | fPedPhotCams.Add(p);
|
|---|
| 216 | }
|
|---|
| 217 | }
|
|---|
| 218 |
|
|---|
| 219 | if (IsProcessTimes())
|
|---|
| 220 | {
|
|---|
| 221 | fPedPhot1 = (MPedPhotCam*)pList->FindObject("MPedPhotFromExtractor", "MPedPhotCam");
|
|---|
| 222 | fPedPhot2 = (MPedPhotCam*)pList->FindObject("MPedPhotFromExtractorRndm", "MPedPhotCam");
|
|---|
| 223 |
|
|---|
| 224 | *fLog << inf << "Additional no-signal-interpolation switched ";
|
|---|
| 225 | *fLog << (fPedPhot1 && fPedPhot2 ? "on" : "off");
|
|---|
| 226 | *fLog << "." << endl;
|
|---|
| 227 |
|
|---|
| 228 | if (fPedPhot1 && fPedPhot2)
|
|---|
| 229 | *fLog << "Maximum arrival time difference: " << fMaxArrivalTimeDiff << "ns" << endl;
|
|---|
| 230 |
|
|---|
| 231 | }
|
|---|
| 232 |
|
|---|
| 233 | *fLog << inf << "Minimum number of neighbor pixels: " << (int)fNumMinNeighbors << endl;
|
|---|
| 234 |
|
|---|
| 235 | if (IsProcessPedestalEvt())
|
|---|
| 236 | *fLog << "Processing Pedestals once per event..." << endl;
|
|---|
| 237 | if (IsProcessPedestalRun())
|
|---|
| 238 | *fLog << "Processing Pedestals once per run..." << endl;
|
|---|
| 239 | if (IsProcessTimes())
|
|---|
| 240 | *fLog << "Processing Arrival Times once per event..." << endl;
|
|---|
| 241 |
|
|---|
| 242 | return kTRUE;
|
|---|
| 243 | }
|
|---|
| 244 |
|
|---|
| 245 | // --------------------------------------------------------------------------
|
|---|
| 246 | //
|
|---|
| 247 | // Replaces each pixel (signal, signal error, pedestal, pedestal rms)
|
|---|
| 248 | // by the average of its surrounding pixels.
|
|---|
| 249 | // If TESTBIT(fFlags, kUseCentralPixel) is set the central pixel is also
|
|---|
| 250 | // included.
|
|---|
| 251 | //
|
|---|
| 252 | void MBadPixelsTreat::InterpolateSignal() const
|
|---|
| 253 | {
|
|---|
| 254 | const UShort_t entries = fGeomCam->GetNumPixels();
|
|---|
| 255 |
|
|---|
| 256 | //
|
|---|
| 257 | // Loop over all pixels
|
|---|
| 258 | //
|
|---|
| 259 | for (UShort_t i=0; i<entries; i++)
|
|---|
| 260 | {
|
|---|
| 261 | //
|
|---|
| 262 | // Check whether pixel with idx i is blind
|
|---|
| 263 | //
|
|---|
| 264 | if (!IsPixelBad(i))
|
|---|
| 265 | continue;
|
|---|
| 266 |
|
|---|
| 267 | //
|
|---|
| 268 | // Get the corresponding geometry and pedestal
|
|---|
| 269 | //
|
|---|
| 270 | MSignalPix &pix = (*fEvt)[i];
|
|---|
| 271 | const MGeomPix &gpix = (*fGeomCam)[i];
|
|---|
| 272 |
|
|---|
| 273 | // Do Not-Use-Central-Pixel
|
|---|
| 274 | const Bool_t nucp = !TESTBIT(fFlags, kUseCentralPixel);
|
|---|
| 275 |
|
|---|
| 276 | Int_t num = nucp ? 0 : 1;
|
|---|
| 277 |
|
|---|
| 278 | Double_t nphot = nucp ? 0 : pix.GetNumPhotons();
|
|---|
| 279 | Double_t perr = nucp ? 0 : Pow2(pix.GetErrorPhot());
|
|---|
| 280 |
|
|---|
| 281 | //
|
|---|
| 282 | // The values are rescaled to the small pixels area for the right comparison
|
|---|
| 283 | //
|
|---|
| 284 | const Double_t ratio = fGeomCam->GetPixRatio(i);
|
|---|
| 285 |
|
|---|
| 286 | nphot *= ratio;
|
|---|
| 287 | perr *= ratio;
|
|---|
| 288 |
|
|---|
| 289 | //
|
|---|
| 290 | // Loop over all its neighbors
|
|---|
| 291 | //
|
|---|
| 292 | const Int_t n = gpix.GetNumNeighbors();
|
|---|
| 293 | for (int j=0; j<n; j++)
|
|---|
| 294 | {
|
|---|
| 295 | const UShort_t nidx = gpix.GetNeighbor(j);
|
|---|
| 296 |
|
|---|
| 297 | //
|
|---|
| 298 | // Do not use blind neighbors
|
|---|
| 299 | //
|
|---|
| 300 | if (IsPixelBad(nidx))
|
|---|
| 301 | continue;
|
|---|
| 302 |
|
|---|
| 303 | //
|
|---|
| 304 | // Get the geometry for the neighbor
|
|---|
| 305 | //
|
|---|
| 306 | const Double_t nratio = fGeomCam->GetPixRatio(nidx);
|
|---|
| 307 |
|
|---|
| 308 | //
|
|---|
| 309 | //The error is calculated as the quadratic sum of the errors
|
|---|
| 310 | //
|
|---|
| 311 | const MSignalPix &evtpix = (*fEvt)[nidx];
|
|---|
| 312 |
|
|---|
| 313 | nphot += nratio*evtpix.GetNumPhotons();
|
|---|
| 314 | perr += nratio*Pow2(evtpix.GetErrorPhot());
|
|---|
| 315 |
|
|---|
| 316 | num++;
|
|---|
| 317 | }
|
|---|
| 318 |
|
|---|
| 319 | // Check if there are enough neighbors to calculate the mean
|
|---|
| 320 | // If not, unmap the pixel. The maximum number of blind neighbors
|
|---|
| 321 | // should be 2
|
|---|
| 322 | if (num<fNumMinNeighbors)
|
|---|
| 323 | {
|
|---|
| 324 | pix.SetPixelUnmapped();
|
|---|
| 325 | continue;
|
|---|
| 326 | }
|
|---|
| 327 |
|
|---|
| 328 | //
|
|---|
| 329 | // Now the mean is calculated and the values rescaled back
|
|---|
| 330 | // to the pixel area
|
|---|
| 331 | //
|
|---|
| 332 | nphot /= num*ratio;
|
|---|
| 333 | perr = TMath::Sqrt(perr/(num*ratio));
|
|---|
| 334 |
|
|---|
| 335 | pix.Set(nphot, perr);
|
|---|
| 336 | }
|
|---|
| 337 | }
|
|---|
| 338 |
|
|---|
| 339 | // --------------------------------------------------------------------------
|
|---|
| 340 | //
|
|---|
| 341 | void MBadPixelsTreat::InterpolatePedestals(MPedPhotCam &pedphot) const
|
|---|
| 342 | {
|
|---|
| 343 | const Int_t entries = pedphot.GetSize();
|
|---|
| 344 |
|
|---|
| 345 | //
|
|---|
| 346 | // Loop over all pixels
|
|---|
| 347 | //
|
|---|
| 348 | for (UShort_t i=0; i<entries; i++)
|
|---|
| 349 | {
|
|---|
| 350 | //
|
|---|
| 351 | // Check whether pixel with idx i is blind
|
|---|
| 352 | //
|
|---|
| 353 | if (!IsPixelBad(i))
|
|---|
| 354 | continue;
|
|---|
| 355 |
|
|---|
| 356 | //
|
|---|
| 357 | // Get the corresponding geometry and pedestal
|
|---|
| 358 | //
|
|---|
| 359 | const MGeomPix &gpix = (*fGeomCam)[i];
|
|---|
| 360 | const MPedPhotPix &ppix = pedphot[i];
|
|---|
| 361 |
|
|---|
| 362 | // Do Not-Use-Central-Pixel
|
|---|
| 363 | const Bool_t nucp = !TESTBIT(fFlags, kUseCentralPixel);
|
|---|
| 364 |
|
|---|
| 365 | Int_t num = nucp ? 0 : 1;
|
|---|
| 366 |
|
|---|
| 367 | Double_t ped = nucp ? 0 : ppix.GetMean();
|
|---|
| 368 | Double_t rms = nucp ? 0 : Pow2(ppix.GetRms());
|
|---|
| 369 |
|
|---|
| 370 | //
|
|---|
| 371 | // The values are rescaled to the small pixels area for the right comparison
|
|---|
| 372 | //
|
|---|
| 373 | const Double_t ratio = fGeomCam->GetPixRatio(i);
|
|---|
| 374 |
|
|---|
| 375 | ped *= ratio;
|
|---|
| 376 | rms *= ratio;
|
|---|
| 377 |
|
|---|
| 378 | //
|
|---|
| 379 | // Loop over all its neighbors
|
|---|
| 380 | //
|
|---|
| 381 | const Int_t n = gpix.GetNumNeighbors();
|
|---|
| 382 | for (int j=0; j<n; j++)
|
|---|
| 383 | {
|
|---|
| 384 | const UShort_t nidx = gpix.GetNeighbor(j);
|
|---|
| 385 |
|
|---|
| 386 | //
|
|---|
| 387 | // Do not use blind neighbors
|
|---|
| 388 | //
|
|---|
| 389 | if (IsPixelBad(nidx))
|
|---|
| 390 | continue;
|
|---|
| 391 |
|
|---|
| 392 | //
|
|---|
| 393 | // Get the geometry for the neighbor
|
|---|
| 394 | //
|
|---|
| 395 | const Double_t nratio = fGeomCam->GetPixRatio(nidx);
|
|---|
| 396 | const MPedPhotPix &nppix = pedphot[nidx];
|
|---|
| 397 |
|
|---|
| 398 | //
|
|---|
| 399 | //The error is calculated as the quadratic sum of the errors
|
|---|
| 400 | //
|
|---|
| 401 | ped += nratio*nppix.GetMean();
|
|---|
| 402 | rms += nratio*Pow2(nppix.GetRms());
|
|---|
| 403 |
|
|---|
| 404 | num++;
|
|---|
| 405 | }
|
|---|
| 406 |
|
|---|
| 407 | // Check if there are enough neighbors to calculate the mean
|
|---|
| 408 | // If not, unmap the pixel. The minimum number of good neighbors
|
|---|
| 409 | // should be fNumMinNeighbors
|
|---|
| 410 | if (num<fNumMinNeighbors)
|
|---|
| 411 | {
|
|---|
| 412 | (*fEvt)[i].SetPixelUnmapped();
|
|---|
| 413 | continue;
|
|---|
| 414 | }
|
|---|
| 415 |
|
|---|
| 416 | //
|
|---|
| 417 | // Now the mean is calculated and the values rescaled back
|
|---|
| 418 | // to the pixel area
|
|---|
| 419 | //
|
|---|
| 420 | ped /= num*ratio;
|
|---|
| 421 | rms = TMath::Sqrt(rms/(num*ratio));
|
|---|
| 422 |
|
|---|
| 423 | pedphot[i].Set(ped, rms);
|
|---|
| 424 | }
|
|---|
| 425 | pedphot.SetReadyToSave();
|
|---|
| 426 | }
|
|---|
| 427 |
|
|---|
| 428 | // --------------------------------------------------------------------------
|
|---|
| 429 | //
|
|---|
| 430 | // loop over all MPedPhotCam and interpolate them
|
|---|
| 431 | //
|
|---|
| 432 | void MBadPixelsTreat::InterpolatePedestals() const
|
|---|
| 433 | {
|
|---|
| 434 | TIter Next(&fPedPhotCams);
|
|---|
| 435 | MPedPhotCam *cam=0;
|
|---|
| 436 | while ((cam=(MPedPhotCam*)Next()))
|
|---|
| 437 | {
|
|---|
| 438 | InterpolatePedestals(*cam);
|
|---|
| 439 | cam->ReCalc(*fGeomCam, fBadPixels);
|
|---|
| 440 | }
|
|---|
| 441 | }
|
|---|
| 442 |
|
|---|
| 443 | // --------------------------------------------------------------------------
|
|---|
| 444 | //
|
|---|
| 445 | void MBadPixelsTreat::InterpolateTimes() const
|
|---|
| 446 | {
|
|---|
| 447 | const Int_t n = fEvt->GetNumPixels();
|
|---|
| 448 | for (int i=0; i<n; i++)
|
|---|
| 449 | {
|
|---|
| 450 | // Check whether pixel with idx i is bad
|
|---|
| 451 | if (!IsPixelBad(i))
|
|---|
| 452 | continue;
|
|---|
| 453 |
|
|---|
| 454 | // Geometry of bad pixel
|
|---|
| 455 | const MGeomPix &gpix = (*fGeomCam)[i];
|
|---|
| 456 |
|
|---|
| 457 | // Number of neighbor pixels
|
|---|
| 458 | const Int_t n2 = gpix.GetNumNeighbors();
|
|---|
| 459 |
|
|---|
| 460 | // Copy the arrival time of all neighboring bad pixels
|
|---|
| 461 | // to a new array for simplicity
|
|---|
| 462 | Double_t time[6];
|
|---|
| 463 | Int_t cnt = 0;
|
|---|
| 464 | for (Int_t j=0; j<n2; j++)
|
|---|
| 465 | {
|
|---|
| 466 | const Int_t idx = gpix.GetNeighbor(j);
|
|---|
| 467 | if (!IsPixelBad(idx))
|
|---|
| 468 | time[cnt++] = (*fEvt)[idx].GetArrivalTime();
|
|---|
| 469 | }
|
|---|
| 470 |
|
|---|
| 471 | // if there are too few neighbours, don't interpolate the pixel
|
|---|
| 472 | //if ((cnt < 3 && n2 > 3) || (cnt < 2 && n2 == 3))
|
|---|
| 473 | if (cnt<fNumMinNeighbors)
|
|---|
| 474 | {
|
|---|
| 475 | (*fEvt)[i].SetPixelUnmapped();
|
|---|
| 476 | continue;
|
|---|
| 477 | }
|
|---|
| 478 |
|
|---|
| 479 | Double_t min = FLT_MAX; // Find minimum arrival time
|
|---|
| 480 | Double_t max = -FLT_MAX; // Find maximum arrival time
|
|---|
| 481 |
|
|---|
| 482 | Double_t sum2 = 0; // Sum of arrival times of the pixels
|
|---|
| 483 | Int_t cnt2 = 0; // Number of pixels summed in sum2
|
|---|
| 484 |
|
|---|
| 485 | for (Int_t j=0; j<cnt; j++)
|
|---|
| 486 | {
|
|---|
| 487 | const Double_t tm1 = time[j]; // time of one neighbor pixel
|
|---|
| 488 | const Double_t tm2 = time[(j+1)%cnt]; // time of its neighbor pixel
|
|---|
| 489 |
|
|---|
| 490 | // Calculate mean arrival time of pixel probably inside the shower
|
|---|
| 491 | if (TMath::Abs(tm1 - tm2)<fMaxArrivalTimeDiff)
|
|---|
| 492 | {
|
|---|
| 493 | sum2 += tm1+tm2;
|
|---|
| 494 | cnt2++;
|
|---|
| 495 | }
|
|---|
| 496 |
|
|---|
| 497 | // Find minimum arrival time
|
|---|
| 498 | if (tm1<min)
|
|---|
| 499 | min = tm1;
|
|---|
| 500 |
|
|---|
| 501 | // Find maximum arrival time
|
|---|
| 502 | if (tm1>max)
|
|---|
| 503 | max = tm1;
|
|---|
| 504 | }
|
|---|
| 505 |
|
|---|
| 506 | // If less than two nbeighbors belong to a shower the pixel doesn't
|
|---|
| 507 | // belong to the shower, too. Set the arrival time to a uniform
|
|---|
| 508 | // random value, otherwise use the mean value of the pixels belonging
|
|---|
| 509 | // to the shower.
|
|---|
| 510 | if (cnt2<=2)
|
|---|
| 511 | {
|
|---|
| 512 | sum2 = gRandom->Uniform(max-min)+min; // FIXME? Set Seed value?
|
|---|
| 513 |
|
|---|
| 514 | // Proceed with a treatment of the signal of empty pixels
|
|---|
| 515 | // better than the interpolation. (FIXME: Maybe a function
|
|---|
| 516 | // different from a gaussian could be a better choice...)
|
|---|
| 517 | if (fPedPhot1 && fPedPhot2)
|
|---|
| 518 | {
|
|---|
| 519 | const Int_t aidx = gpix.GetAidx();
|
|---|
| 520 | // This is to which bias level the signal fluctuates
|
|---|
| 521 | const Double_t mean = fPedPhot1->GetArea(aidx).GetMean();
|
|---|
| 522 | // This is how the signal fluctuates
|
|---|
| 523 | const Double_t rms = fPedPhot2->GetArea(aidx).GetRms();
|
|---|
| 524 | const Double_t phe = gRandom->Gaus(mean, rms);
|
|---|
| 525 |
|
|---|
| 526 | (*fEvt)[i].SetNumPhotons(phe);
|
|---|
| 527 | }
|
|---|
| 528 | }
|
|---|
| 529 | else
|
|---|
| 530 | sum2 /= cnt2*2;
|
|---|
| 531 |
|
|---|
| 532 | (*fEvt)[i].SetArrivalTime(sum2);
|
|---|
| 533 | }
|
|---|
| 534 | }
|
|---|
| 535 |
|
|---|
| 536 | // --------------------------------------------------------------------------
|
|---|
| 537 | //
|
|---|
| 538 | // Removes all blind pixels from the analysis by setting their state
|
|---|
| 539 | // to unused.
|
|---|
| 540 | //
|
|---|
| 541 | void MBadPixelsTreat::Unmap() const
|
|---|
| 542 | {
|
|---|
| 543 | const UShort_t entries = fEvt->GetNumPixels();
|
|---|
| 544 |
|
|---|
| 545 | //
|
|---|
| 546 | // remove the pixels in fPixelsIdx if they are set to be used,
|
|---|
| 547 | // (set them to 'unused' state)
|
|---|
| 548 | //
|
|---|
| 549 | for (UShort_t i=0; i<entries; i++)
|
|---|
| 550 | {
|
|---|
| 551 | if (IsPixelBad(i))
|
|---|
| 552 | (*fEvt)[i].SetPixelUnmapped();
|
|---|
| 553 | }
|
|---|
| 554 | }
|
|---|
| 555 |
|
|---|
| 556 | // --------------------------------------------------------------------------
|
|---|
| 557 | //
|
|---|
| 558 | // Interpolate Pedestals if kProcessPedestal not set
|
|---|
| 559 | //
|
|---|
| 560 | Bool_t MBadPixelsTreat::ReInit(MParList *pList)
|
|---|
| 561 | {
|
|---|
| 562 | if (IsUseInterpolation() && IsProcessPedestalRun())
|
|---|
| 563 | InterpolatePedestals();
|
|---|
| 564 | return kTRUE;
|
|---|
| 565 | }
|
|---|
| 566 |
|
|---|
| 567 | // --------------------------------------------------------------------------
|
|---|
| 568 | //
|
|---|
| 569 | // Treat the blind pixels
|
|---|
| 570 | //
|
|---|
| 571 | Int_t MBadPixelsTreat::Process()
|
|---|
| 572 | {
|
|---|
| 573 | if (IsUseInterpolation())
|
|---|
| 574 | {
|
|---|
| 575 | InterpolateSignal();
|
|---|
| 576 | if (IsProcessPedestalEvt())
|
|---|
| 577 | InterpolatePedestals();
|
|---|
| 578 | if (IsProcessTimes())
|
|---|
| 579 | InterpolateTimes();
|
|---|
| 580 | }
|
|---|
| 581 | else
|
|---|
| 582 | Unmap();
|
|---|
| 583 |
|
|---|
| 584 | return kTRUE;
|
|---|
| 585 | }
|
|---|
| 586 |
|
|---|
| 587 | void MBadPixelsTreat::StreamPrimitive(ostream &out) const
|
|---|
| 588 | {
|
|---|
| 589 | out << " MBadPixelsTreat " << GetUniqueName();
|
|---|
| 590 | if (fName!=gsDefName || fTitle!=gsDefTitle)
|
|---|
| 591 | {
|
|---|
| 592 | out << "(\"" << fName << "\"";
|
|---|
| 593 | if (fTitle!=gsDefTitle)
|
|---|
| 594 | out << ", \"" << fTitle << "\"";
|
|---|
| 595 | out <<")";
|
|---|
| 596 | }
|
|---|
| 597 | out << ";" << endl;
|
|---|
| 598 |
|
|---|
| 599 | if (IsUseInterpolation())
|
|---|
| 600 | out << " " << GetUniqueName() << ".SetUseInterpolation();" << endl;
|
|---|
| 601 | if (IsUseCentralPixel())
|
|---|
| 602 | out << " " << GetUniqueName() << ".SetUseCentralPixel();" << endl;
|
|---|
| 603 | if (IsProcessPedestalRun())
|
|---|
| 604 | out << " " << GetUniqueName() << ".SetProcessPedestalRun();" << endl;
|
|---|
| 605 | if (IsProcessPedestalEvt())
|
|---|
| 606 | out << " " << GetUniqueName() << ".SetProcessPedestalEvt();" << endl;
|
|---|
| 607 | if (IsProcessTimes())
|
|---|
| 608 | out << " " << GetUniqueName() << ".SetProcessTimes();" << endl;
|
|---|
| 609 | if (IsHardTreatment())
|
|---|
| 610 | out << " " << GetUniqueName() << ".SetHardTreatment();" << endl;
|
|---|
| 611 | if (fNumMinNeighbors!=3)
|
|---|
| 612 | out << " " << GetUniqueName() << ".SetNumMinNeighbors(" << (int)fNumMinNeighbors << ");" << endl;
|
|---|
| 613 | }
|
|---|
| 614 |
|
|---|
| 615 | // --------------------------------------------------------------------------
|
|---|
| 616 | //
|
|---|
| 617 | // Read the setup from a TEnv, eg:
|
|---|
| 618 | // MBadPixelsTreat.UseInterpolation: no
|
|---|
| 619 | // MBadPixelsTreat.UseCentralPixel: no
|
|---|
| 620 | // MBadPixelsTreat.HardTreatment: no
|
|---|
| 621 | // MBadPixelsTreat.ProcessPedestalRun: no
|
|---|
| 622 | // MBadPixelsTreat.ProcessPedestalEvt: no
|
|---|
| 623 | // MBadPixelsTreat.NumMinNeighbors: 3
|
|---|
| 624 | // MBadPixelsTreat.MaxArrivalTimeDiff: 0.9
|
|---|
| 625 | //
|
|---|
| 626 | Int_t MBadPixelsTreat::ReadEnv(const TEnv &env, TString prefix, Bool_t print)
|
|---|
| 627 | {
|
|---|
| 628 | Bool_t rc = kFALSE;
|
|---|
| 629 | if (IsEnvDefined(env, prefix, "UseInterpolation", print))
|
|---|
| 630 | {
|
|---|
| 631 | rc = kTRUE;
|
|---|
| 632 | SetUseInterpolation(GetEnvValue(env, prefix, "UseInterpolation", IsUseInterpolation()));
|
|---|
| 633 | }
|
|---|
| 634 | if (IsEnvDefined(env, prefix, "UseCentralPixel", print))
|
|---|
| 635 | {
|
|---|
| 636 | rc = kTRUE;
|
|---|
| 637 | SetUseCentralPixel(GetEnvValue(env, prefix, "UseCentralPixel", IsUseCentralPixel()));
|
|---|
| 638 | }
|
|---|
| 639 | if (IsEnvDefined(env, prefix, "HardTreatment", print))
|
|---|
| 640 | {
|
|---|
| 641 | rc = kTRUE;
|
|---|
| 642 | SetHardTreatment(GetEnvValue(env, prefix, "HardTreatment", IsHardTreatment()));
|
|---|
| 643 | }
|
|---|
| 644 | if (IsEnvDefined(env, prefix, "ProcessPedestalRun", print))
|
|---|
| 645 | {
|
|---|
| 646 | rc = kTRUE;
|
|---|
| 647 | SetProcessPedestalRun(GetEnvValue(env, prefix, "ProcessPedestalRun", IsProcessPedestalRun()));
|
|---|
| 648 | }
|
|---|
| 649 | if (IsEnvDefined(env, prefix, "ProcessPedestalEvt", print))
|
|---|
| 650 | {
|
|---|
| 651 | rc = kTRUE;
|
|---|
| 652 | SetProcessPedestalEvt(GetEnvValue(env, prefix, "ProcessPedestalEvt", IsProcessPedestalEvt()));
|
|---|
| 653 | }
|
|---|
| 654 | if (IsEnvDefined(env, prefix, "ProcessTimes", print))
|
|---|
| 655 | {
|
|---|
| 656 | rc = kTRUE;
|
|---|
| 657 | SetProcessTimes(GetEnvValue(env, prefix, "ProcessTimes", IsProcessTimes()));
|
|---|
| 658 | }
|
|---|
| 659 | if (IsEnvDefined(env, prefix, "NumMinNeighbors", print))
|
|---|
| 660 | {
|
|---|
| 661 | rc = kTRUE;
|
|---|
| 662 | SetNumMinNeighbors(GetEnvValue(env, prefix, "NumMinNeighbors", fNumMinNeighbors));
|
|---|
| 663 | }
|
|---|
| 664 | if (IsEnvDefined(env, prefix, "MaxArrivalTimeDiff", print))
|
|---|
| 665 | {
|
|---|
| 666 | rc = kTRUE;
|
|---|
| 667 | SetMaxArrivalTimeDiff(GetEnvValue(env, prefix, "MaxArrivalTimeDiff", fMaxArrivalTimeDiff));
|
|---|
| 668 | }
|
|---|
| 669 | return rc;
|
|---|
| 670 | }
|
|---|