/* ======================================================================== *\ ! ! * ! * 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, 2001 ! ! Copyright: MAGIC Software Development, 2000-2007 ! ! \* ======================================================================== */ ///////////////////////////////////////////////////////////////////////////// // // MHHillasExt // // This class contains histograms for every Hillas parameter // // Class Version 2: // ---------------- // - fHMaxDist // + fHSlopeL // ///////////////////////////////////////////////////////////////////////////// #include "MHHillasExt.h" #include #include #include #include #include "MLog.h" #include "MLogManip.h" #include "MGeomCam.h" #include "MParList.h" #include "MBinning.h" #include "MHillas.h" #include "MHillasExt.h" #include "MHillasSrc.h" ClassImp(MHHillasExt); using namespace std; // -------------------------------------------------------------------------- // // Setup four histograms for Width, Length // MHHillasExt::MHHillasExt(const char *name, const char *title) : fHillas(0), fHillasExt(0), fMm2Deg(1), fUseMmScale(kTRUE), fHilName("MHillasExt") { // // set the name and title of this object // fName = name ? name : "MHHillasExt"; fTitle = title ? title : "Container for extended Hillas histograms"; // // loop over all Pixels and create two histograms // one for the Low and one for the High gain // connect all the histogram with the container fHist // fHAsym.UseCurrentStyle(); fHM3Long.UseCurrentStyle(); fHM3Trans.UseCurrentStyle(); fHSlopeL.UseCurrentStyle(); fHAsym.SetName("Asymmetry"); fHM3Long.SetName("M3l"); fHM3Trans.SetName("M3t"); fHSlopeL.SetName("SlopeL"); fHAsym.SetTitle("Asymmetry"); fHM3Long.SetTitle("3^{rd} Moment Longitudinal"); fHM3Trans.SetTitle("3^{rd} Moment Transverse"); fHSlopeL.SetTitle("Longitudinal time-slope vs. Dist"); fHAsym.SetXTitle("Asym [mm]"); fHM3Long.SetXTitle("3^{rd} M_{l} [mm]"); fHM3Trans.SetXTitle("3^{rd} M_{t} [mm]"); fHSlopeL.SetXTitle("D [mm]"); fHAsym.SetYTitle("Counts"); fHM3Long.SetYTitle("Counts"); fHM3Trans.SetYTitle("Counts"); fHSlopeL.SetYTitle("S_{l} [ns/mm]"); fHAsym.SetFillStyle(4000); fHM3Long.SetFillStyle(4000); fHM3Trans.SetFillStyle(4000); //fHSlopeL.SetFillStyle(4000); fHAsym.SetDirectory(NULL); fHM3Long.SetDirectory(NULL); fHM3Trans.SetDirectory(NULL); fHSlopeL.SetDirectory(NULL); fHM3Trans.SetLineColor(kBlue); MBinning binsx, binsy; binsx.SetEdges(51, -326, 326); binsx.Apply(fHM3Long); binsx.Apply(fHM3Trans); binsx.SetEdges(51, -593, 593); binsx.Apply(fHAsym); binsx.SetEdges(100, 0, 445); binsy.SetEdges(100, -0.04, 0.04); MH::SetBinning(&fHSlopeL, &binsx, &binsy); } // -------------------------------------------------------------------------- // // 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 MHHillasExt::SetupFill(const MParList *plist) { fHillasExt = (MHillasExt*)plist->FindObject(fHilName, "MHillasExt"); if (!fHillasExt) { *fLog << err << fHilName << "[MHillasExt] not found in parameter list... aborting." << endl; return kFALSE; } fHillas = (MHillas*)plist->FindObject("MHillas"); if (!fHillas) { *fLog << err << "MHillas not found in parameter list... aborting." << endl; return kFALSE; } const MGeomCam *geom = (MGeomCam*)plist->FindObject("MGeomCam"); if (!geom) *fLog << warn << GetDescriptor() << ": No Camera Geometry available. Using mm-scale for histograms." << endl; else { fMm2Deg = geom->GetConvMm2Deg(); SetMmScale(kFALSE); } ApplyBinning(*plist, "Asym", &fHAsym); ApplyBinning(*plist, "M3Long", &fHM3Long); ApplyBinning(*plist, "M3Trans", &fHM3Trans); ApplyBinning(*plist, "Dist", "Slope", &fHSlopeL); return kTRUE; } // -------------------------------------------------------------------------- // // Fill the four histograms with data from a MHillas-Container. // Be careful: Only call this with an object of type MHillas // Bool_t MHHillasExt::Fill(const MParContainer *par, const Stat_t w) { const MHillasSrc *src = (MHillasSrc*)par; const Double_t scale = TMath::Sign(fUseMmScale?1:fMm2Deg, (src ? src->GetCosDeltaAlpha() : 1)); const Double_t dist = src ? src->GetDist() : fHillas->GetDist0(); fHAsym.Fill(scale*fHillasExt->GetAsym(), w); fHM3Long.Fill(scale*fHillasExt->GetM3Long(), w); fHM3Trans.Fill(scale*fHillasExt->GetM3Trans(), w); fHSlopeL.Fill(scale*dist, fHillasExt->GetSlopeLong()/scale, w); return kTRUE; } // -------------------------------------------------------------------------- // // With this function you can convert the histogram ('on the fly') between // degrees and millimeters. // void MHHillasExt::SetMmScale(Bool_t mmscale) { if (fUseMmScale == mmscale) return; if (fMm2Deg<0) { *fLog << warn << dbginf << "Warning - Sorry, no conversion factor for conversion available." << endl; return; } const Double_t scale = mmscale ? 1./fMm2Deg : fMm2Deg; MH::ScaleAxis(&fHAsym, scale); MH::ScaleAxis(&fHM3Long, scale); MH::ScaleAxis(&fHM3Trans, scale); MH::ScaleAxis(&fHSlopeL, scale, 1./scale); if (mmscale) { fHAsym.SetXTitle("Asym [mm]"); fHM3Long.SetXTitle("3^{rd} M_{l} [mm]"); fHM3Trans.SetXTitle("3^{rd} M_{t} [mm]"); fHSlopeL.SetXTitle("D [mm]"); fHSlopeL.SetYTitle("S_{l} [ns/mm]"); } else { fHAsym.SetXTitle("Asym [\\circ]"); fHM3Long.SetXTitle("3^{rd} M_{l} [\\circ]"); fHM3Trans.SetXTitle("3^{rd} M_{t} [\\circ]"); fHSlopeL.SetXTitle("D [\\circ]"); fHSlopeL.SetYTitle("S_{l} [ns/\\circ]"); } fUseMmScale = mmscale; } // -------------------------------------------------------------------------- // // Use this function to setup your own conversion factor between degrees // and millimeters. The conversion factor should be the one calculated in // MGeomCam. Use this function with Caution: You could create wrong values // by setting up your own scale factor. // void MHHillasExt::SetMm2Deg(Float_t mmdeg) { if (mmdeg<0) { *fLog << warn << dbginf << "Warning - Conversion factor < 0 - nonsense. Ignored." << endl; return; } if (fMm2Deg>=0) *fLog << warn << dbginf << "Warning - Conversion factor already set. Overwriting" << endl; fMm2Deg = mmdeg; } // -------------------------------------------------------------------------- // // Creates a new canvas and draws the four histograms into it. // Be careful: The histograms belongs to this object and won't get deleted // together with the canvas. // void MHHillasExt::Draw(Option_t *o) { TVirtualPad *pad = gPad ? gPad : MakeDefCanvas(this); pad->SetBorderMode(0); AppendPad(""); // FIXME: If same-option given make two independant y-axis! const TString opt(o); const Bool_t same = opt.Contains("same"); if (!same) pad->Divide(2,2); else { fHAsym.SetName("AsymmetrySame"); fHM3Long.SetName("M3lSame"); fHM3Trans.SetName("M3tSame"); fHSlopeL.SetName("SlopeLSame"); fHAsym.SetDirectory(0); fHM3Long.SetDirectory(0); fHM3Trans.SetDirectory(0); fHSlopeL.SetDirectory(0); fHM3Long.SetLineColor(kMagenta); fHM3Trans.SetLineColor(kCyan); fHAsym.SetLineColor(kBlue); fHSlopeL.SetMarkerColor(kBlue); } pad->cd(1); gPad->SetBorderMode(0); gPad->SetGridx(); gPad->SetGridy(); RemoveFromPad("M3lSame"); RemoveFromPad("M3tSame"); MH::DrawSame(fHM3Long, fHM3Trans, "3^{rd} Moments", same); pad->cd(3); gPad->SetBorderMode(0); gPad->SetGridx(); gPad->SetGridy(); RemoveFromPad("AsymmetrySame"); fHAsym.Draw(same?"same":""); pad->cd(2); gPad->SetBorderMode(0); gPad->SetGridx(); gPad->SetGridy(); //RemoveFromPad("SlopeLSame"); //fHSlopeL.Draw(same?"same":""); if (same) { TH2 *h=dynamic_cast(gPad->FindObject("SlopeL")); if (h) { // This causes crashes in THistPainter::PaintTable // if the z-axis is not kept. No idea why... h->SetDrawOption("z"); h->SetMarkerColor(kBlack); } RemoveFromPad("SlopeLSame"); fHSlopeL.SetMarkerColor(kGreen); fHSlopeL.Draw("same"); } else fHSlopeL.Draw("colz"); delete pad->GetPad(4); } TH1 *MHHillasExt::GetHistByName(const TString name) const { if (name.Contains("Asym", TString::kIgnoreCase)) return const_cast(&fHAsym); if (name.Contains("M3L", TString::kIgnoreCase)) return const_cast(&fHM3Long); if (name.Contains("M3T", TString::kIgnoreCase)) return const_cast(&fHM3Trans); if (name.Contains("SlopeL", TString::kIgnoreCase)) return const_cast(&fHSlopeL); return NULL; }