/* ======================================================================== *\ ! $Name: not supported by cvs2svn $:$Id: MBadPixelsCam.cc,v 1.51 2007-06-18 14:35:39 tbretz Exp $ ! -------------------------------------------------------------------------- ! ! * ! * This file is part of MARS, the MAGIC Analysis and Reconstruction ! * Software. It is distributed to you in the hope that it can be a useful ! * and timesaving tool in analysing Data of imaging Cerenkov telescopes. ! * It is distributed WITHOUT ANY WARRANTY. ! * ! * Permission to use, copy, modify and distribute this software and its ! * documentation for any purpose is hereby granted without fee, ! * provided that the above copyright notice appear in all copies and ! * that both that copyright notice and this permission notice appear ! * in supporting documentation. It is provided "as is" without express ! * or implied warranty. ! * ! ! ! Author(s): Thomas Bretz 1/2004 ! Author(s): Markus Gaug 3/2004 ! ! Copyright: MAGIC Software Development, 2000-2004 ! ! \* ======================================================================== */ ///////////////////////////////////////////////////////////////////////////// // // MBadPixelsCam // // // Storage container to store bad pixel of the camera... // ///////////////////////////////////////////////////////////////////////////// #include "MBadPixelsCam.h" #include #include #include #include "MLog.h" #include "MLogManip.h" #include "MBadPixelsPix.h" #include "MGeomCam.h" #include "MGeomPix.h" ClassImp(MBadPixelsCam); using namespace std; // -------------------------------------------------------------------------- // // Default constructor. // MBadPixelsCam::MBadPixelsCam(const char *name, const char *title) { fName = name ? name : "MBadPixelsCam"; fTitle = title ? title : "Storage container to store bad pixel information"; fArray = new TClonesArray("MBadPixelsPix", 1); } MBadPixelsCam::MBadPixelsCam(const MBadPixelsCam &cam) { fName = "MBadPixelsCam"; fTitle = "Storage container to store bad pixel information"; fArray = new TClonesArray("MBadPixelsPix", 1); cam.Copy(*this); } // -------------------------------------------------------------------------- // // Delete the array conatining the bad pixel information // MBadPixelsCam::~MBadPixelsCam() { delete fArray; } // -------------------------------------------------------------------------- // // Set the size of the camera // void MBadPixelsCam::InitSize(const UInt_t i) { fArray->ExpandCreate(i); } // -------------------------------------------------------------------------- // // Get the size of the MBadPixelsCam // Int_t MBadPixelsCam::GetSize() const { return fArray->GetEntriesFast(); } // -------------------------------------------------------------------------- // // Copy 'constructor' // void MBadPixelsCam::Copy(TObject &object) const { MBadPixelsCam &cam = (MBadPixelsCam&)object; const Int_t n = GetSize(); if (n==0) return; cam.InitSize(n); for (int i=0; i(fArray->UncheckedAt(i)); } // -------------------------------------------------------------------------- // // Get i-th pixel (pixel number) // const MBadPixelsPix &MBadPixelsCam::operator[](Int_t i) const { return *static_cast(fArray->UncheckedAt(i)); } // -------------------------------------------------------------------------- // // Merge MBadPixelsCam cam into this, see also MBadPixelsPix::Merge // void MBadPixelsCam::Merge(const MBadPixelsCam &cam) { const Int_t n = cam.GetSize(); if (n==0) { *fLog << inf << "MBadPixelsCam::Merge: Container empty." << endl; return; } if (GetSize()==0) InitSize(n); if (GetSize()R__FOR_EACH(TObject, Clear)(o); } // -------------------------------------------------------------------------- // // Reset event depending bits // void MBadPixelsCam::Reset() { fArray->R__FOR_EACH(MParContainer, Reset)(); } // -------------------------------------------------------------------------- // // Calculate the number of pixels without the given type-flags. // // The second argument aidx is the area index (see MGeomCam, MGeomPix) // The default (or any value less than 0) means: all // // Returns -1 if the geometry doesn't match. // Short_t MBadPixelsCam::GetNumSuitable(MBadPixelsPix::UnsuitableType_t type, const MGeomCam *geom, Int_t aidx) const { const UInt_t n = GetSize(); if (aidx>=0 && (!geom || geom->GetNumPixels()!=n)) { *fLog << err << GetDescriptor() << "ERROR - Geometry (" << geom->ClassName() << ") size mismatch!" << endl; return -1; } Short_t rc = 0; for (UInt_t i=0; i=0 && geom && (*geom)[i].GetAidx()!=aidx) continue; if (!(*this)[i].IsUnsuitable(type)) rc++; } return rc; } // -------------------------------------------------------------------------- // // Calculate the number of pixels with the given type-flags. // // The second argument aidx is the area index (see MGeomCam, MGeomPix) // The default (or any value less than 0) means: all // // Returns -1 if the geometry doesn't match. // Short_t MBadPixelsCam::GetNumUnsuitable(MBadPixelsPix::UnsuitableType_t type, const MGeomCam *geom, Int_t aidx) const { const UInt_t n = GetSize(); if (aidx>=0 && geom && geom->GetNumPixels()!=n) { *fLog << err << GetDescriptor() << "ERROR - Geometry (" << geom->ClassName() << ") size mismatch!" << endl; return -1; } Short_t rc = 0; for (UInt_t i=0; i=0 && geom && (*geom)[i].GetAidx()!=aidx) continue; if ((*this)[i].IsUnsuitable(type)) rc++; } return rc; } // -------------------------------------------------------------------------- // // Count the number of unsuitable pixels. // Short_t MBadPixelsCam::GetNumUnsuitable() const { const UInt_t n = GetSize(); Short_t rc = 0; for (UInt_t i=0; i=0 && pix.GetAidx()!=aidx) continue; if (GetNumSuitableNeighbors(type, pix)<2) rc++; } return rc; } // -------------------------------------------------------------------------- // // This is a helper function which calculates the size of a single cluster // by iterative calling. // // If a pixel matches the criterias the counter is increased by 1 and // the function is called for all its neighbors. If // // The second argument aidx is the area index (see MGeomCam, MGeomPix) // The default (or any value less than 0) means: all // // Returns -1 if the geometry doesn't match. // Short_t MBadPixelsCam::GetNumMaxCluster(MBadPixelsPix::UnsuitableType_t type, TObjArray &list, Int_t idx, Int_t aidx) const { const MGeomPix *pix = (MGeomPix*)list[idx]; if (!pix) return 0; // Check whether more than one neighbor contains useful information, // which mean it can later be interpolated if (GetNumSuitableNeighbors(type, *pix)>1) return 0; // If the requested area-index is valid check whether it is the requested one if (aidx>=0 && pix->GetAidx()!=aidx) return 1; // Remove the pixel from the list of pixels to be checked list.RemoveAt(idx); // Do the same for the neighbor pixels recursively and count the 1-results Short_t cnt = 1; const Int_t n = pix->GetNumNeighbors(); for (int i=0; iGetNeighbor(i), aidx); // return the number of neighbor pixels/clusters which have unsuitable-type type return cnt; } // -------------------------------------------------------------------------- // // Returns the size of the biggest cluster with the given UnsuitableType // type and the given area index. // // The second argument aidx is the area index (see MGeomCam, MGeomPix) // The default (or any value less than 0) means: all // // Returns -1 if the geometry doesn't match. // Short_t MBadPixelsCam::GetNumMaxCluster(MBadPixelsPix::UnsuitableType_t type, const MGeomCam &geom, Int_t aidx) const { const Int_t n = geom.GetNumPixels(); if (n!=GetSize()) { *fLog << err << GetDescriptor() << "ERROR - Geometry (" << geom.ClassName() << ") size mismatch!" << endl; return -1; } TObjArray list(n); for (int i=0; i=GetSize()) InitSize(idx+1); (*this)[idx].SetUnsuitable(MBadPixelsPix::kUnsuitableRun); (*this)[idx].SetUncalibrated(MBadPixelsPix::kPreviouslyExcluded); } } // -------------------------------------------------------------------------- // // Write the information into an ascii file. // Bool_t MBadPixelsCam::AsciiWrite(ostream &fout) const { for (int i=0; i= GetSize()) return kFALSE; switch (type) { case 0: return (*this)[idx].GetInfo()[0]; case 1: if (!(*this)[idx].IsUnsuitable(MBadPixelsPix::kUnsuitableRun)) return kFALSE; val = 1; break; case 2: if (!(*this)[idx].IsUnsuitable(MBadPixelsPix::kUnsuitableEvt)) return kFALSE; val = 1; break; case 3: if (!(*this)[idx].IsUnsuitable(MBadPixelsPix::kUnreliableRun)) return kFALSE; val = 1; break; case 4: if (!(*this)[idx].IsHiGainBad()) return kFALSE; val = 1; break; case 5: if (!(*this)[idx].IsLoGainBad()) return kFALSE; val = 1; break; case 6: if (!(*this)[idx].GetUnsuitableCalLevel()) return kFALSE; val = (*this)[idx].GetUnsuitableCalLevel(); break; case 7: if (!(*this)[idx].GetUnreliableCalLevel()) return kFALSE; val = (*this)[idx].GetUnreliableCalLevel(); break; case 8: if (!(*this)[idx].IsUncalibrated(MBadPixelsPix::kHiGainNotFitted)) return kFALSE; val = 1; break; case 9: if (!(*this)[idx].IsUncalibrated(MBadPixelsPix::kLoGainNotFitted)) return kFALSE; val = 1; break; case 10: if (!(*this)[idx].IsUncalibrated(MBadPixelsPix::kHiGainOscillating)) return kFALSE; val = 1; break; case 11: if (!(*this)[idx].IsUncalibrated(MBadPixelsPix::kLoGainOscillating)) return kFALSE; val = 1; break; case 12: if (!(*this)[idx].IsUncalibrated(MBadPixelsPix::kLoGainSaturation )) return kFALSE; val = 1; break; case 13: if (!(*this)[idx].IsUncalibrated(MBadPixelsPix::kChargeIsPedestal )) return kFALSE; val = 1; break; case 14: if (!(*this)[idx].IsUncalibrated(MBadPixelsPix::kChargeErrNotValid)) return kFALSE; val = 1; break; case 15: if (!(*this)[idx].IsUncalibrated(MBadPixelsPix::kChargeRelErrNotValid)) return kFALSE; val = 1; break; case 16: if (!(*this)[idx].IsUncalibrated(MBadPixelsPix::kChargeSigmaNotValid )) return kFALSE; val = 1; break; case 17: if (!(*this)[idx].IsUncalibrated(MBadPixelsPix::kMeanTimeInFirstBin )) return kFALSE; val = 1; break; case 18: if (!(*this)[idx].IsUncalibrated(MBadPixelsPix::kMeanTimeInLast2Bins )) return kFALSE; val = 1; break; case 19: if (!(*this)[idx].IsUncalibrated(MBadPixelsPix::kDeviatingNumPhes )) return kFALSE; val = 1; break; case 20: if (!(*this)[idx].IsUncalibrated(MBadPixelsPix::kRelTimeNotFitted )) return kFALSE; val = 1; break; case 21: if (!(*this)[idx].IsUncalibrated(MBadPixelsPix::kRelTimeOscillating)) return kFALSE; val = 1; break; case 22: if (!(*this)[idx].IsUncalibrated(MBadPixelsPix::kDeviatingNumPhots)) return kFALSE; val = 1; break; case 23: if (!(*this)[idx].IsUncalibrated(MBadPixelsPix::kHiGainOverFlow )) return kFALSE; val = 1; break; case 24: if (!(*this)[idx].IsUncalibrated(MBadPixelsPix::kLoGainOverFlow )) return kFALSE; val = 1; break; case 102: if (!(*this)[idx].IsUnsuitable()) return kFALSE; val = 1; break; default: return kFALSE; } return kTRUE; } void MBadPixelsCam::DrawPixelContent(Int_t num) const { *fLog << warn << "MBadPixelsCam::DrawPixelContent - not available." << endl; }