/* ======================================================================== *\ ! ! * ! * 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/2004 ! ! Copyright: MAGIC Software Development, 2000-2004 ! ! \* ======================================================================== */ ///////////////////////////////////////////////////////////////////////////// // // MJPedestal // ///////////////////////////////////////////////////////////////////////////// #include "MJPedestal.h" #include #include #include #include #include #include #include "MLog.h" #include "MLogManip.h" #include "MRunIter.h" #include "MParList.h" #include "MTaskList.h" #include "MEvtLoop.h" #include "MStatusDisplay.h" #include "MHCamera.h" #include "MPedestalCam.h" #include "MReadMarsFile.h" #include "MGeomApply.h" #include "MPedCalcPedRun.h" ClassImp(MJPedestal); using namespace std; MJPedestal::MJPedestal(const char *name, const char *title) : fRuns(0) { fName = name ? name : "MJPedestal"; fTitle = title ? title : "Tool to create a pedestal file (MPedestalCam)"; } TString MJPedestal::GetOutputFile() const { if (!fRuns) return ""; return Form("%s/%s-F0.root", (const char*)fOutputPath, (const char*)fRuns->GetRunsAsFileName()); } Bool_t MJPedestal::ReadPedestalCam() { const TString fname = GetOutputFile(); if (gSystem->AccessPathName(fname, kFileExists)) { *fLog << err << "Input file " << fname << " doesn't exist." << endl; return kFALSE; } *fLog << inf << "Reading from file: " << fname << endl; TFile file(fname, "READ"); if (fPedestalCam.Read()<=0) { *fLog << "Unable to read MPedestalCam from " << fname << endl; return kFALSE; } if (fDisplay && !fDisplay->GetCanvas("Pedestals")) fDisplay->Read(); return kTRUE; } void MJPedestal::DisplayResult(MParList &plist) { if (!fDisplay) return; // // Update display // TString title = fDisplay->GetTitle(); title += "-- Pedestal "; title += fRuns->GetRunsAsString(); title += " --"; fDisplay->SetTitle(title); // // Get container from list // MGeomCam &geomcam = *(MGeomCam*)plist.FindObject("MGeomCam"); // // Create container to display // MHCamera disp0(geomcam, "MPedestalCam;ped", "Pedestals"); MHCamera disp1(geomcam, "MPedestalCam;rms", "Pedestal RMS"); disp0.SetCamContent(fPedestalCam, 0); disp0.SetCamError(fPedestalCam, 1); disp1.SetCamContent(fPedestalCam, 2); disp1.SetCamError(fPedestalCam, 3); disp0.SetYTitle("P [fadc/slice]"); disp1.SetYTitle("P_{RMS} [fadc/slice]"); // // Display data // TCanvas &c3 = fDisplay->AddTab("Pedestals"); c3.Divide(2,3); *fLog << "BALBALBALBA" <Projection(); obj2->Draw(); obj2->SetBit(kCanDelete); const Double_t min = obj2->GetBinCenter(obj2->GetXaxis()->GetFirst()); const Double_t max = obj2->GetBinCenter(obj2->GetXaxis()->GetLast()); const Double_t integ = obj2->Integral("width")/2.5066283; const Double_t mean = obj2->GetMean(); const Double_t rms = obj2->GetRMS(); const Double_t width = max-min; if (rms == 0. || width == 0. ) return; const TString dgausformula = TString("([0]-[3])/[2]*exp(-0.5*(x-[1])*(x-[1])/[2]/[2])" "+[3]/[5]*exp(-0.5*(x-[4])*(x-[4])/[5]/[5])"); TF1 *f=0; switch (fit) { case 0: f = new TF1("sgaus","gaus(0)",min,max); f->SetLineColor(kYellow); f->SetBit(kCanDelete); f->SetParNames("Area","#mu","#sigma"); f->SetParameters(integ/rms,mean,rms); f->SetParLimits(0, 0. , integ); f->SetParLimits(1, min , max); f->SetParLimits(2, 0 , width/1.5); obj2->Fit(f,"QLRM"); break; case 1: f = new TF1("dgaus",dgausformula.Data(),min,max); f->SetLineColor(kYellow); f->SetBit(kCanDelete); f->SetParNames("A_{tot}","#mu_{1}","#sigma_{1}","A_{2}","#mu_{2}","#sigma_{2}"); f->SetParameters(integ,(min+mean)/2.,width/4., integ/width/2.,(max+mean)/2.,width/4.); // The left-sided Gauss f->SetParLimits(0,integ-1.5 , integ+1.5); f->SetParLimits(1,min+(width/10.), mean); f->SetParLimits(2,0 , width/2.); // The right-sided Gauss f->SetParLimits(3,0 , integ); f->SetParLimits(4,mean, max-(width/10.)); f->SetParLimits(5,0 , width/2.); obj2->Fit(f,"QLRM"); break; default: obj2->Fit("gaus","Q"); obj2->GetFunction("gaus")->SetLineColor(kYellow); break; } } void MJPedestal::CamDraw(TCanvas &c, Int_t x, Int_t y, MHCamera &cam1, Int_t fit) { c.cd(x); gPad->SetBorderMode(0); MHCamera *obj1=(MHCamera*)cam1.DrawCopy("hist"); obj1->AddNotify(fPedestalCam); c.cd(x+y); gPad->SetBorderMode(0); obj1->Draw(); ((MHCamera*)obj1)->SetPrettyPalette(); c.cd(x+2*y); gPad->SetBorderMode(0); DrawProjection(obj1, fit); } Bool_t MJPedestal::WriteResult() { if (fOutputPath.IsNull()) return kTRUE; const TString oname(GetOutputFile()); *fLog << inf << "Writing to file: " << oname << endl; TFile file(oname, "UPDATE"); if (fDisplay && fDisplay->Write()<=0) { *fLog << err << "Unable to write MStatusDisplay to " << oname << endl; return kFALSE; } if (fPedestalCam.Write()<=0) { *fLog << err << "Unable to write MPedestalCam to " << oname << endl; return kFALSE; } return kTRUE; } void MJPedestal::SetOutputPath(const char *path) { fOutputPath = path; if (fOutputPath.EndsWith("/")) fOutputPath = fOutputPath(0, fOutputPath.Length()-1); } Bool_t MJPedestal::Process() { if (!ReadPedestalCam()) return ProcessFile(); return kTRUE; } Bool_t MJPedestal::ProcessFile() { if (!fRuns) { *fLog << err << "No Runs choosen... abort." << endl; return kFALSE; } if (fRuns->GetNumRuns() != fRuns->GetNumEntries()) { *fLog << err << "Number of files found doesn't metch number of runs... abort." << endl; return kFALSE; } *fLog << inf; fLog->Separator(GetDescriptor()); *fLog << "Calculate MPedestalCam from Runs " << fRuns->GetRunsAsString() << endl; *fLog << endl; MReadMarsFile read("Events"); read.DisableAutoScheme(); static_cast(read).AddFiles(*fRuns); // Enable logging to file //*fLog.SetOutputFile(lname, kTRUE); // Setup Tasklist MParList plist; plist.AddToList(&fPedestalCam); MTaskList tlist; plist.AddToList(&tlist); MGeomApply geomapl; //MExtractSignal sigcalc; MPedCalcPedRun pedcalc; tlist.AddToList(&read); tlist.AddToList(&geomapl); //tlist.AddToList(&sigcalc); tlist.AddToList(&pedcalc); // // Execute the eventloop // MEvtLoop evtloop(fName); evtloop.SetParList(&plist); evtloop.SetDisplay(fDisplay); evtloop.SetLogStream(fLog); // Execute first analysis if (!evtloop.Eventloop()) { *fLog << err << GetDescriptor() << ": Failed." << endl; return kFALSE; } tlist.PrintStatistics(); DisplayResult(plist); if (!WriteResult()) return kFALSE; *fLog << inf << GetDescriptor() << ": Done." << endl; return kTRUE; }