/* ======================================================================== *\ ! ! * ! * 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): Markus Gaug 12/2003 ! Author(s): Thomas Bretz 12/2003 ! Author(s): Hendrik Bartko 02/2004 ! ! Copyright: MAGIC Software Development, 2000-2004 ! ! \* ======================================================================== */ ///////////////////////////////////////////////////////////////////////////// // // MArrivalTimeCam // // Hold the ArrivalTime information for all pixels in the camera // ///////////////////////////////////////////////////////////////////////////// #include "MArrivalTimeCam.h" #include #include "MLog.h" #include "MLogManip.h" #include "MArrivalTimePix.h" ClassImp(MArrivalTimeCam); using namespace std; // -------------------------------------------------------------------------- // // Default constructor. Creates a MArrivalTimePix object for each pixel // MArrivalTimeCam::MArrivalTimeCam(const char *name, const char *title) { fName = name ? name : "MArrivalTimeCam"; fTitle = title ? title : "Storage container for all Extracted Signal Information in the camera"; fArray = new TClonesArray("MArrivalTimePix", 1); } // -------------------------------------------------------------------------- // // Delete the array conatining the pixel pedest information // MArrivalTimeCam::~MArrivalTimeCam() { delete fArray; } // -------------------------------------------------------------------------- // // Distribute logging stream to all childs // void MArrivalTimeCam::SetLogStream(MLog *lg) { fArray->ForEach(MParContainer, SetLogStream)(lg); MParContainer::SetLogStream(lg); } // -------------------------------------------------------------------------- // // Set the size of the camera // void MArrivalTimeCam::InitSize(const UInt_t i) { fArray->ExpandCreate(i); } // -------------------------------------------------------------------------- // // Get the size of the MArrivalTimeCam // Int_t MArrivalTimeCam::GetSize() const { return fArray->GetEntriesFast(); } // -------------------------------------------------------------------------- // // Get i-th pixel (pixel index) // MArrivalTimePix &MArrivalTimeCam::operator[](Int_t i) { return *static_cast(fArray->UncheckedAt(i)); } // -------------------------------------------------------------------------- // // Get i-th pixel (pixel index) // const MArrivalTimePix &MArrivalTimeCam::operator[](Int_t i) const { return *static_cast(fArray->UncheckedAt(i)); } void MArrivalTimeCam::Clear(Option_t *o) { fArray->ForEach(TObject, Clear)(); } void MArrivalTimeCam::Print(Option_t *o) const { *fLog << all << GetDescriptor() << ":" << endl; int idx = -1; TIter Next(fArray); MArrivalTimePix *pix; while ((pix=(MArrivalTimePix*)Next())) { idx++; if (!pix->IsValid()) continue; *fLog << idx << ": "; pix->Print(); } } Bool_t MArrivalTimeCam::GetPixelContent(Double_t &val, Int_t idx, const MGeomCam &cam, Int_t type) const { switch (type) { case 0: val = (*this)[idx].GetArrivalTimeHiGain(); break; case 1: val = (*this)[idx].GetArrivalTimeHiGainError(); break; case 2: val = (*this)[idx].GetArrivalTimeLoGain(); break; case 3: val = (*this)[idx].GetArrivalTimeLoGainError(); break; case 4: if ((*this)[idx].GetNumHiGainSaturated() > 0) val = (*this)[idx].GetArrivalTimeLoGain(); else val = (*this)[idx].GetArrivalTimeHiGain(); break; default: return kFALSE; } return val>=0; } void MArrivalTimeCam::DrawPixelContent(Int_t num) const { *fLog << warn << "MArrivalTimeCam::DrawPixelContent - not available." << endl; }