/* ======================================================================== *\ ! ! * ! * 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 02/2004 ! ! Copyright: MAGIC Software Development, 2000-2004 ! ! \* ======================================================================== */ ////////////////////////////////////////////////////////////////////////////// // // MHCalibrationChargePix // // Histogram class for the charge calibration. // Stores and fits the charges and stores the location of the maximum FADC // slice. Charges are taken from MExtractedSignalPix. // ////////////////////////////////////////////////////////////////////////////// #include "MHCalibrationChargePix.h" #include #include #include #include #include #include #include "MH.h" #include "MLog.h" #include "MLogManip.h" ClassImp(MHCalibrationChargePix); using namespace std; const Int_t MHCalibrationChargePix::fgChargeNbins = 2000; const Axis_t MHCalibrationChargePix::fgChargeFirst = -0.5; const Axis_t MHCalibrationChargePix::fgChargeLast = 1999.5; const Int_t MHCalibrationChargePix::fgAbsTimeNbins = 15; const Axis_t MHCalibrationChargePix::fgAbsTimeFirst = -0.5; const Axis_t MHCalibrationChargePix::fgAbsTimeLast = 14.5; // -------------------------------------------------------------------------- // // Default Constructor. // // Sets: // - the default number for fNbins (fgChargeNbins) // - the default number for fFirst (fgChargeFirst) // - the default number for fLast (fgChargeLast) // - the default number for fAbsTimeNbins (fgAbsTimeNbins) // - the default number for fAbsTimeFirst (fgAbsTimeFirst) // - the default number for fAbsTimeLast (fgAbsTimeLast) // // - the default name of the fHGausHist ("HCalibrationCharge") // - the default title of the fHGausHist ("Distribution of Summed FADC slices Pixel ") // - the default x-axis title for fHGausHist ("Sum FADC Slices") // - the default y-axis title for fHGausHist ("Nr. of events") // // - the default name of the fHAbsTime ("HAbsTimePixel") // - the default title of the fHAbsTime ("Distribution of Absolute Arrival Times Pixel ") // - the default x-axis title for fHAbsTime ("Absolute Arrival Time [FADC slice nr]") // - the default y-axis title for fHAbsTime ("Nr. of events"); // - the default directory of the fHAbsTime (NULL) // - the current style for fHAbsTime // // Initializes: // - fHAbsTime() // // Calls: // - Clear(); // MHCalibrationChargePix::MHCalibrationChargePix(const char *name, const char *title) : fHAbsTime() { fName = name ? name : "MHCalibrationChargePix"; fTitle = title ? title : "Statistics of the FADC sums of calibration events"; SetNbins ( fgChargeNbins ); SetFirst ( fgChargeFirst ); SetLast ( fgChargeLast ); SetAbsTimeNbins(); SetAbsTimeFirst(); SetAbsTimeLast(); fHGausHist.SetName("HCalibrationCharge"); fHGausHist.SetTitle("Distribution of Summed FADC slices Pixel"); fHGausHist.SetXTitle("Sum FADC Slices"); fHGausHist.SetYTitle("Nr. of events"); fHAbsTime.SetName("HAbsTimePixel"); fHAbsTime.SetTitle("Distribution of Absolute Arrival Times Pixel "); fHAbsTime.SetXTitle("Absolute Arrival Time [FADC slice nr]"); fHAbsTime.SetYTitle("Nr. of events"); fHAbsTime.UseCurrentStyle(); fHAbsTime.SetDirectory(NULL); Clear(); } // -------------------------------------------------------------------------- // // Sets: // - fHGausHist.SetBins(fNbins,fFirst,fLast); // - fHAbsTime.SetBins(fAbsTimeNbins,fAbsTimeFirst,fAbsTimeLast); // void MHCalibrationChargePix::InitBins() { MHGausEvents::InitBins(); fHAbsTime.SetBins(fAbsTimeNbins,fAbsTimeFirst,fAbsTimeLast); } // -------------------------------------------------------------------------- // // Sets: // - fSaturated to 0. // // Executes: // - MHGausEvents::Clear() // void MHCalibrationChargePix::Clear(Option_t *o) { fSaturated = 0.; MHGausEvents::Clear(); return; } // -------------------------------------------------------------------------- // // Empty function to overload MHGausEvents::Reset() // void MHCalibrationChargePix::Reset() { } // -------------------------------------------------------------------------- // // Calls MHGausEvents::ChangeHistId() // // Add id to names and titles of: // - fHAbsTime // void MHCalibrationChargePix::ChangeHistId(Int_t id) { MHGausEvents::ChangeHistId(id); fHAbsTime.SetName (Form("%s%d", fHAbsTime.GetName(), id)); fHAbsTime.SetTitle(Form("%s%d", fHAbsTime.GetTitle(), id)); } // -------------------------------------------------------------------------- // // returns fHGausHist.Integral("width") // const Float_t MHCalibrationChargePix::GetIntegral() const { return fHGausHist.Integral("width"); } // -------------------------------------------------------------------------- // // returns fHAbsTime.GetMean() // const Float_t MHCalibrationChargePix::GetAbsTimeMean() const { return fHAbsTime.GetMean(); } // -------------------------------------------------------------------------- // // returns fHAbsTime.GetRMS() // const Float_t MHCalibrationChargePix::GetAbsTimeRms() const { return fHAbsTime.GetRMS(); } // -------------------------------------------------------------------------- // // Fills fHAbsTime with t // Returns kFALSE, if overflow or underflow occurred, else kTRUE // Bool_t MHCalibrationChargePix::FillAbsTime(Float_t t) { return fHAbsTime.Fill(t) > -1; } // ----------------------------------------------------------------------------- // // Default draw: // // The following options can be chosen: // // "": displays the fHGausHist and the fHAbsTime // "all": executes additionally MHGausEvents::Draw(), with options // // The following picture shows a typical outcome of call to Draw("all"): // One the left side: // - The distribution of the values with the Gauss fit are shown (points connected // with each other). The line is green, thus the Gauss fit has a probability higher // than 0.5%. // - The distribution of the positions of the maximum (abs. arrival times) // is displayed. Most of the events have an arrival time of slice 7 (==hardware:8) // // On the right side: // - The first plot shows the distribution of the values with the Gauss fit // with error bars // - The second plot shows the TGraph with the events vs. time // - The third plot shows the fourier transform and a peak at 100 Hz. // - The fourth plot shows the projection of the fourier components and an exponential // fit, with the result that the observed deviation is not statistical, but signficant with a // probability smaller than 0.5%. // //Begin_Html /* */ //End_Html // void MHCalibrationChargePix::Draw(const Option_t *opt) { TString option(opt); option.ToLower(); Int_t win = 1; TVirtualPad *oldpad = gPad ? gPad : MH::MakeDefCanvas(this,600, 600); TVirtualPad *pad = NULL; if (option.Contains("all")) { option.ReplaceAll("all",""); oldpad->Divide(2,1); win = 2; oldpad->cd(1); TVirtualPad *newpad = gPad; pad = newpad; pad->Divide(1,2); pad->cd(1); } else { pad = oldpad; pad->Divide(1,2); pad->cd(1); } if (!IsEmpty()) gPad->SetLogy(); gPad->SetTicks(); fHGausHist.GetXaxis()->SetLabelSize(0.06); fHGausHist.GetYaxis()->SetLabelSize(0.07); fHGausHist.GetXaxis()->SetLabelOffset(0.01); fHGausHist.GetYaxis()->SetLabelOffset(0.01); fHGausHist.GetXaxis()->SetTitleSize(0.065); fHGausHist.GetYaxis()->SetTitleSize(0.07); fHGausHist.GetXaxis()->SetTitleOffset(0.6); fHGausHist.GetYaxis()->SetTitleOffset(0.6); fHGausHist.Draw(opt); if (fFGausFit) { fFGausFit->SetLineColor(IsGausFitOK() ? kGreen : kRed); fFGausFit->Draw("same"); } pad->cd(2); gPad->SetTicks(); fHAbsTime.GetXaxis()->SetLabelSize(0.06); fHAbsTime.GetYaxis()->SetLabelSize(0.07); fHAbsTime.GetXaxis()->SetLabelOffset(0.01); fHAbsTime.GetYaxis()->SetLabelOffset(0.01); fHAbsTime.GetXaxis()->SetTitleSize(0.065); fHAbsTime.GetYaxis()->SetTitleSize(0.07); fHAbsTime.GetXaxis()->SetTitleOffset(0.6); fHAbsTime.GetYaxis()->SetTitleOffset(0.6); fHAbsTime.Draw(opt); if (win < 2) return; oldpad->cd(2); MHGausEvents::Draw("fourierevents"); }