/* ======================================================================== *\ ! ! * ! * 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, 10/2003 ! Author(s): Hendrik Bartko, 08/2004 ! Author(s): Stefan Ruegamer, 03/2006 ! ! Copyright: MAGIC Software Development, 2000-2007 ! ! \* ======================================================================== */ ///////////////////////////////////////////////////////////////////////////// // // MCameraData // // This is a generalized class storing camera data. For example the cleaning // level for the image cleaning is one possibility. // ///////////////////////////////////////////////////////////////////////////// #include "MCameraData.h" #include #include "MMath.h" #include "MLog.h" #include "MLogManip.h" #include "MGeomCam.h" #include "MGeom.h" #include "MPedPhotCam.h" #include "MPedPhotPix.h" #include "MSignalCam.h" #include "MSignalPix.h" ClassImp(MCameraData); using namespace std; // -------------------------------------------------------------------------- // // Creates a MSignalPix object for each pixel in the event // MCameraData::MCameraData(const char *name, const char *title) { fName = name ? name : "MCameraData"; fTitle = title ? title : "Generalized storage container for camera contents"; } /* // -------------------------------------------------------------------------- // // This is not yet implemented like it should. // void MCameraData::Draw(Option_t* option) { // // FIXME!!! Here the Draw function of the CamDisplay // should be called to add the CamDisplay to the Pad. // The drawing should be done in MCamDisplay::Paint // // MGeomCam *geom = fType ? new MGeomCamMagic : new MGeomCamCT1; // MCamDisplay *disp = new MCamDisplay(geom); // delete geom; // disp->DrawPhotNum(this); } */ // -------------------------------------------------------------------------- // // Function to calculate the cleaning level for all pixels in a given event // as the ratio between the measured photons and the pedestal rms. // In order to do the image cleaning on average in the same photon flux // (reconstructed photons per pixel area) for the inner and outer pixels, // a correction factor is applied to the outer pixels (see TDAS 02-14). // The correction factor assumes the ideal case that the pedestal rms // scales with the inverse square root of the pixel area. // // FIXME: Should the check noise<=0 be replaced by MBadPixels? // void MCameraData::CalcCleaningLevel(const MSignalCam &evt, const MPedPhotCam &cam, const MGeomCam &geom) { const Int_t n = geom.GetNumPixels(); // Reset arrays fData.Set(n); fData.Reset(); fValidity.Set(n); fValidity.Reset(); const Int_t entries = evt.GetNumPixels(); // calculate cleaning levels for (Int_t idx=0; idxs1) maxidx = i; } const Double_t timemean = evt[maxidx].GetArrivalTime(); const Double_t timerms = 0.75; //[slices] rms time spread around highest pixel // calculate cleaning levels for (Int_t idx=0; idx1) fData[idx]=1; if (fData[idx]<0) fData[idx]=0; } } // -------------------------------------------------------------------------- // // Function to calculate the cleaning level for all pixels in a given event. // The level is the absolute number of photons times the area-ratio. // void MCameraData::CalcCleaningAbsolute(const MSignalCam &evt, const MGeomCam &geom) { const Int_t n = geom.GetNumPixels(); // Reset arrays fData.Set(n); fData.Reset(); fValidity.Set(n); fValidity.Reset(); const Int_t entries = evt.GetNumPixels(); // calculate cleaning levels for (Int_t idx=0; idx0 && wuz<1e-200) || val>100) val=100; fData[i] = TMath::Log10(val+1)*5; if (TMath::IsNaN(fData[i])) // 0 1e-6 0 NaN *fLog << warn << "WARNING - MCameraData " << sumt << " " << sumw << " " << wuz << " " << val << endl; fValidity[i] = 1; } } // -------------------------------------------------------------------------- // // Returns the contents of the pixel. // Bool_t MCameraData::GetPixelContent(Double_t &val, Int_t idx, const MGeomCam &cam, Int_t type) const { if (idx<0 || idx>=fData.GetSize()) return kFALSE; val = fData[idx]; return fValidity[idx]; } void MCameraData::DrawPixelContent(Int_t num) const { *fLog << warn << "MCameraData::DrawPixelContent - not available." << endl; } void MCameraData::Print(Option_t *o) const { MParContainer::Print(o); *fLog << "Size = " << fData.GetSize() << endl; for (int i=0; i