/* ======================================================================== *\ ! ! * ! * 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 1/2002 ! Author(s): Wolfgang Wittek 1/2002 ! ! Copyright: MAGIC Software Development, 2000-2002 ! ! \* ======================================================================== */ ////////////////////////////////////////////////////////////////////////////// // // MHTimeDiffTime // // calculates the 2D-histogram time-difference vs. time // // ////////////////////////////////////////////////////////////////////////////// #include "MHTimeDiffTime.h" #include #include "MTime.h" #include "MBinning.h" #include "MParList.h" #include "MLog.h" #include "MLogManip.h" ClassImp(MHTimeDiffTime); using namespace std; // -------------------------------------------------------------------------- // // Default Constructor. It sets name and title of the histogram // MHTimeDiffTime::MHTimeDiffTime(const char *name, const char *title) : fLastTime(0), fHist() { // // set the name and title of this object // fName = name ? name : "MHTimeDiffTime"; fTitle = title ? title : "2-D histogram in time and time difference"; fHist.SetDirectory(NULL); fHist.SetXTitle("\\Delta t [s]"); fHist.SetYTitle("t [s]"); } // -------------------------------------------------------------------------- // // Set the binnings and prepare the filling of the histogram // Bool_t MHTimeDiffTime::SetupFill(const MParList *plist) { fTime = (MTime*)plist->FindObject("MTime"); if (!fTime) { *fLog << err << dbginf << "MTime not found... aborting." << endl; return kFALSE; } const MBinning* binsdtime = (MBinning*)plist->FindObject("BinningTimeDiff"); const MBinning* binstime = (MBinning*)plist->FindObject("BinningTime"); if (!binstime || !binsdtime) { *fLog << err << dbginf << "At least one MBinning not found... aborting." << endl; return kFALSE; } SetBinning(&fHist, binsdtime, binstime); return kTRUE; } // -------------------------------------------------------------------------- // // Draw the histogram // void MHTimeDiffTime::Draw(Option_t *opt) { TVirtualPad *pad = gPad ? gPad : MakeDefCanvas(this); pad->SetBorderMode(0); AppendPad(""); pad->Divide(2,2); TH1D *h; pad->cd(1); gPad->SetLogy(); h = fHist.ProjectionX("ProjX_sumtime", -1, 9999, "E"); h->SetTitle("Distribution of \\Delta t [s]"); h->SetXTitle("\\Delta t [s]"); h->SetYTitle("Counts"); h->Draw(opt); h->SetBit(kCanDelete); pad->cd(2); h = fHist.ProjectionY("ProjY_sumtimediff", -1, 9999, "E"); h->SetTitle("Distribution of time [s]"); h->SetXTitle("time [s]"); h->SetYTitle("Counts"); h->Draw(opt); h->SetBit(kCanDelete); pad->cd(3); fHist.DrawCopy(opt); pad->Modified(); pad->Update(); } // -------------------------------------------------------------------------- // // Fill the histogram // Bool_t MHTimeDiffTime::Fill(const MParContainer *par, const Stat_t w) { const Double_t time = *fTime; fHist.Fill(time-fLastTime, time, w); fLastTime = time; return kTRUE; }