/* ======================================================================== *\ ! ! * ! * 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 ! ! \* ======================================================================== */ ////////////////////////////////////////////////////////////////////////////// // // // MHTimeDiffTheta // // // // // ////////////////////////////////////////////////////////////////////////////// #include "MHTimeDiffTheta.h" #include #include "MTime.h" #include "MMcEvt.hxx" #include "MBinning.h" #include "MParList.h" #include "MLog.h" #include "MLogManip.h" ClassImp(MHTimeDiffTheta); // -------------------------------------------------------------------------- // // Default Constructor. It sets name and title only. Typically you won't // need to change this. // MHTimeDiffTheta::MHTimeDiffTheta(const char *name, const char *title) : fLastTime(0), fHist() { // // set the name and title of this object // fName = name ? name : "MHTimeDiffTheta"; fTitle = title ? title : "2-D histogram in time and time difference"; fHist.SetDirectory(NULL); fHist.GetXaxis()->SetTitle("\\Delta t [s]"); fHist.GetYaxis()->SetTitle("\\Theta [\\circ]"); } Bool_t MHTimeDiffTheta::SetupFill(const MParList *plist) { fTime = (MTime*)plist->FindObject("MTime"); if (!fTime) { *fLog << err << dbginf << "MTime not found... aborting." << endl; return kFALSE; } fMcEvt = (MMcEvt*)plist->FindObject("MMcEvt"); if (!fMcEvt) { *fLog << err << dbginf << "MMcEvt not found... aborting." << endl; return kFALSE; } const MBinning* binsdtime = (MBinning*)plist->FindObject("BinningTimeDiff"); const MBinning* binstheta = (MBinning*)plist->FindObject("BinningTheta"); if (!binstheta || !binsdtime) { *fLog << err << dbginf << "At least one MBinning not found... aborting." << endl; return kFALSE; } SetBinning(&fHist, binsdtime, binstheta); return kTRUE; } TObject *MHTimeDiffTheta::DrawClone(Option_t *opt) const { TCanvas *c = MakeDefCanvas("DiffTimeTheta", "Distrib of Delta t, Theta"); c->Divide(2, 2); gROOT->SetSelectedPad(NULL); // // FIXME: ProjectionX,Y is not const within root // TH1 *h; c->cd(1); h = ((TH2*)&fHist)->ProjectionX("ProX", -1, 9999, "E"); h->DrawCopy(opt); delete h; gPad->SetLogy(); c->cd(2); h = ((TH2*)&fHist)->ProjectionY("ProY", -1, 9999, "E"); h->DrawCopy(opt); delete h; c->cd(3); ((TH2*)&fHist)->DrawCopy(opt); c->Modified(); c->Update(); return c; } void MHTimeDiffTheta::Draw(Option_t *opt) { if (!gPad) MakeDefCanvas("DiffTimeTheta", "Distrib of Delta t, Theta"); TH1 *h; gPad->Divide(2,2); gPad->cd(1); h = fHist.ProjectionX("ProX", -1, 9999, "E"); h->DrawCopy(opt); delete h; gPad->SetLogy(); gPad->cd(2); h = fHist.ProjectionY("ProY", -1, 9999, "E"); h->DrawCopy(opt); delete h; gPad->cd(3); fHist.Draw(opt); gPad->Modified(); gPad->Update(); } Bool_t MHTimeDiffTheta::Fill(const MParContainer *par) { const Int_t time = fTime->GetTimeLo(); fHist.Fill(0.0001*(time-fLastTime), fMcEvt->GetTheta()*kRad2Deg); fLastTime = time; return kTRUE; }