/* ======================================================================== *\ ! ! * ! * 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 12/2002 ! ! Copyright: MAGIC Software Development, 2000-2003 ! ! \* ======================================================================== */ ///////////////////////////////////////////////////////////////////////////// // // MHCerPhotEvt // ///////////////////////////////////////////////////////////////////////////// #include "MHCerPhotEvt.h" #include #include "MLog.h" #include "MLogManip.h" #include "MParList.h" #include "MCerPhotEvt.h" #include "MCamDisplay.h" #include "MGeomCam.h" #include "MGeomPix.h" ClassImp(MHCerPhotEvt); // -------------------------------------------------------------------------- // // Reset all pixels to 0 and reset fEntries to 0. // void MHCerPhotEvt::Clear() { fSum.Reset(); fSum.InitSize(577); for (int i=0; i<577; i++) { fSum.AddPixel(i, 0, 0); fSum[i].SetPixelUnused(); } fEntries = 0; } // -------------------------------------------------------------------------- // // Setup four histograms for Width, Length // MHCerPhotEvt::MHCerPhotEvt(const char *name, const char *title) : fEvt(NULL), fCam(NULL), fDispl(NULL) { // // set the name and title of this object // fName = name ? name : "MHCerPhotEvt"; fTitle = title ? title : "Average of MCerPhotEvts"; Clear(); } MHCerPhotEvt::~MHCerPhotEvt() { if (fDispl) delete fDispl; } // -------------------------------------------------------------------------- // // Setup the Binning for the histograms automatically if the correct // instances of MBinning (with the names 'BinningWidth' and 'BinningLength') // are found in the parameter list // Use this function if you want to set the conversion factor which // is used to convert the mm-scale in the camera plain into the deg-scale // used for histogram presentations. The conversion factor is part of // the camera geometry. Please create a corresponding MGeomCam container. // Bool_t MHCerPhotEvt::SetupFill(const MParList *plist) { fEvt = (MCerPhotEvt*)plist->FindObject("MCerPhotEvt"); if (!fEvt) *fLog << warn << GetDescriptor() << ": No MCerPhotEvt available..." << endl; fCam = (MGeomCam*)plist->FindObject("MGeomCam"); if (!fCam) *fLog << warn << GetDescriptor() << ": No MGeomCam found." << endl; Clear(); return kTRUE; } // -------------------------------------------------------------------------- // // Fill the histograms with data from a MHillas-Container. // Be careful: Only call this with an object of type MHillas // Bool_t MHCerPhotEvt::Fill(const MParContainer *par) { const MCerPhotEvt *evt = par ? (MCerPhotEvt*)par : fEvt; if (!evt) { *fLog << err << dbginf << "No MCerPhotEvt found..." << endl; return kFALSE; } const UInt_t n = evt->GetNumPixels(); for (UInt_t i=0; iGetPixRatio(id) : 1; const Double_t val = pix.GetNumPhotons()/ratio; fSum[id].SetPixelUsed(); fSum[id].AddNumPhotons(val); } fEntries++; return kTRUE; } Bool_t MHCerPhotEvt::Finalize() { fSum.Scale(fEntries); return kTRUE; } TObject *MHCerPhotEvt::DrawClone(Option_t *opt) const { return MH::DrawClone(opt, 750, 600); } void MHCerPhotEvt::Draw(Option_t *) { if (!fCam) { *fLog << warn << "WARNING - Cannot draw " << GetDescriptor() << ": No Camera Geometry available." << endl; return; } TVirtualPad *pad = gPad ? gPad : MakeDefCanvas(this, 750, 600); pad->SetBorderMode(0); AppendPad(""); } void MHCerPhotEvt::Paint(Option_t *option="") { if (!fCam) { *fLog << warn << "WARNING - Cannot paint " << GetDescriptor() << ": No Camera Geometry available." << endl; return; } if (!fDispl) fDispl = new MCamDisplay(fCam); fDispl->FillPhotNum(fSum); fDispl->Paint(); }