/* ======================================================================== *\ ! ! * ! * 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, 01/2002 ! ! Copyright: MAGIC Software Development, 2000-2004 ! ! \* ======================================================================== */ ////////////////////////////////////////////////////////////////////////////// // // MBinning // // This is a MParCOntainer storing a binning for a histogram. Doing this // you are able to distribute a single binning to several histograms // in your parameter list. // // In some classes the title of the container is used to set the // axis-title of the corresponding axis in your histogram. // // For all the features supported see the function descriptions in // MBinning and MH // ////////////////////////////////////////////////////////////////////////////// #include "MBinning.h" #include // tolower #include #include // InheritsFrom #include "MLog.h" #include "MLogManip.h" #include "MParList.h" #include "MH.h" ClassImp(MBinning); using namespace std; const TString MBinning::gsDefName = "MBinning"; const TString MBinning::gsDefTitle = "Container describing the binning of an axis"; // -------------------------------------------------------------------------- // // Default Constructor. It sets name and title only. Typically you won't // need to change this. // MBinning::MBinning(const char *name, const char *title) { // // set the name and title of this object // fName = name ? name : gsDefName.Data(); fTitle = title ? title : gsDefTitle.Data(); SetEdges(10, 0, 1); fType = kIsDefault; } // -------------------------------------------------------------------------- // // Instantiate MBinning with nbins number of bins between lo (lower edge) // and hi (upper edge), name name and title title. // MBinning::MBinning(Int_t nbins, Axis_t lo, Axis_t hi, const char *name, const char *opt, const char *title) { fName = name ? name : gsDefName.Data(); fTitle = title ? title : gsDefTitle.Data(); SetEdges(nbins, lo, hi, opt); } // -------------------------------------------------------------------------- // // Search in the parameter list for the binning with name "name". If found, // set the edges and title accordingly. Default is name of object. // return kTRUE if object found, kFALSE otherwise. // Bool_t MBinning::SetEdges(const MParList &list, const char *name) { MBinning *bins = (MBinning*)list.FindObject(name ? name : fName.Data(), "MBinning"); if (!bins) return kFALSE; SetEdges(*bins); return kTRUE; } // -------------------------------------------------------------------------- // // Setup the edges stored in MBinning from the TAxis axe // void MBinning::SetEdges(const TAxis &axe) { const TArrayD &arr = *axe.GetXbins(); if (arr.GetSize()>0) { SetEdges(arr); return; } SetEdges(axe.GetNbins(), axe.GetXmin(), axe.GetXmax()); } // -------------------------------------------------------------------------- // // Add a new upper edge to the edges stored in MBinning. The new upper // edge must be greater than the current greatest. Using this you can // enhance a histogram bin-by-bin, eg: // TH1F h("", "", 2, 0, 1); // MBinning b; // b.SetEdges(h); // b.AddEdge(2); // b.Apply(h); // b.AddEdge(3); // b.Apply(h); // [...] // void MBinning::AddEdge(Axis_t up) { const Int_t n = fEdges.GetSize(); if (up<=fEdges[n-1]) { *fLog << warn << dbginf << "WARNING - New upper edge not greater than old upper edge... ignored." << endl; return; } fEdges.Set(n+1); fEdges[n] = up; fType = kIsUserArray; } // -------------------------------------------------------------------------- // // Removes the first edge // void MBinning::RemoveFirstEdge() { const Int_t n = fEdges.GetSize(); for (int i=0; i (not the number of edges), the // lowest and highest Edge (of your histogram) // void MBinning::SetEdges(const Int_t nbins, const Axis_t lo, Axis_t up) { const Double_t binsize = nbins<=0 ? 0 : (up-lo)/nbins; fEdges.Set(nbins+1); for (int i=0; i<=nbins; i++) fEdges[i] = binsize*i + lo; fType = kIsLinear; } // -------------------------------------------------------------------------- // // Set edged from text. With the following structure: // // n lo hi [type [title]] // // n: number of bins // lo: lowest edge // hi: highest edge // type: "lin" , "log", "cos" (without quotationmarks) // title: Whatever the title might be // // For example: // SetEdgesRaw("12 0 1 lin This is the title"); // Bool_t MBinning::SetEdgesRaw(const char *txt) { Int_t nbins = 0; Float_t loedge = 0; Float_t upedge = 0; Int_t len = 0; if (3!=sscanf(txt, " %d %f %f %n", &nbins, &loedge, &upedge, &len)) { *fLog << warn << GetDescriptor() << "::SetEdges: Not enough arguments... ignored." << endl; return kFALSE; } if (loedge>=upedge) { *fLog << warn << GetDescriptor() << "::SetEdges: Lowest edge >= highest edge... ignored." << endl; return kFALSE; } TString str(txt); str.Remove(0, len); str = str.Strip(TString::kBoth); TString typ; Ssiz_t pos = str.First(' '); if (pos>=0) { typ = str(0, pos); if (typ!=(TString)"lin" && typ!=(TString)"log" && typ!=(TString)"cos") { *fLog << warn << GetDescriptor() << "::SetEdges: Type " << typ << " unknown... ignored." << endl; return kFALSE; } } SetEdges(nbins, loedge, upedge, typ.Data()); str = str.Strip(TString::kBoth); if (!str.IsNull()) fTitle = str; return kTRUE; } /* // -------------------------------------------------------------------------- // // Set edged from text. With the following structure: // // n= lo= hi= type= title="my title" // // n: number of bins // lo: lowest edge // hi: highest edge // type: "lin" , "log", "cos" (without quotationmarks) // title: Whatever the title might be // // For example: // SetEdgesRaw("12 0 1 lin This is the title"); // Bool_t MBinning::SetEdgesRaw(const char *txt) { Int_t nbins = 0; Float_t loedge = 0; Float_t upedge = 0; Int_t len = 0; if (3!=sscanf(txt, " %d %f %f %n", &nbins, &loedge, &upedge, &len)) { *fLog << warn << GetDescriptor() << "::SetEdges: Not enough arguments... ignored." << endl; return kFALSE; } if (loedge>=upedge) { *fLog << warn << GetDescriptor() << "::SetEdges: Lowest edge >= highest edge... ignored." << endl; return kFALSE; } TString str(txt); str.Remove(0, len); str = str.Strip(TString::kBoth); TString typ; Ssiz_t pos = str.First(' '); if (pos>=0) { typ = str(0, pos); if (typ!=(TString)"lin" && typ!=(TString)"log" && typ!=(TString)"cos") { *fLog << warn << GetDescriptor() << "::SetEdges: Type " << typ << " unknown... ignored." << endl; return kFALSE; } } SetEdges(nbins, loedge, upedge, typ.Data()); str = str.Strip(TString::kBoth); if (!str.IsNull()) fTitle = str; return kTRUE; } */ // -------------------------------------------------------------------------- // // Calls SetEdgesLog if opt contains "log" // Calls SetEdgesCos if opt contains "cos" // Calls SetEdges in all other cases // void MBinning::SetEdges(const Int_t nbins, const Axis_t lo, Axis_t up, const char *opt) { const TString o(opt); if (o.Contains("log", TString::kIgnoreCase)) { SetEdgesLog(nbins, lo, up); return; } if (o.Contains("cos", TString::kIgnoreCase)) { SetEdgesCos(nbins, lo, up); return; } SetEdges(nbins, lo, up); } // -------------------------------------------------------------------------- // // Specify the number of bins (not the number of edges), the // lowest and highest Edge (of your histogram) // void MBinning::SetEdgesLog(const Int_t nbins, const Axis_t lo, Axis_t up) { // if (lo==0) ... const Double_t binsize = log10(up/lo)/nbins; fEdges.Set(nbins+1); for (int i=0; i<=nbins; i++) fEdges[i] = pow(10, binsize*i) * lo; fType = kIsLogarithmic; } // -------------------------------------------------------------------------- // // Specify the number of bins (not the number of edges), the // lowest [deg] and highest [deg] Edge (of your histogram) // void MBinning::SetEdgesCos(const Int_t nbins, const Axis_t lo, Axis_t up) { // if (lo==0) ... const Axis_t ld = lo/kRad2Deg; const Axis_t ud = up/kRad2Deg; const Double_t binsize = (cos(ld)-cos(ud))/nbins; fEdges.Set(nbins+1); for (int i=0; i<=nbins; i++) fEdges[i] = acos(cos(ld)-binsize*i)*kRad2Deg; fType = kIsCosinic; } // -------------------------------------------------------------------------- // // Apply this binning to the given histogram. // (By definition this works only for 1D-histograms. For 2D- and 3D- // histograms use MH::SetBinning directly) // void MBinning::Apply(TH1 &h) const { if (h.InheritsFrom("TH2") || h.InheritsFrom("TH3")) { *fLog << warn << "MBinning::Apply: '" << h.GetName() << "' is not a basic TH1 object... no binning applied." << endl; return; } MH::SetBinning(&h, this); } // -------------------------------------------------------------------------- // // Print binning. // void MBinning::Print(Option_t *o) const { *fLog << all; *fLog << GetDescriptor() << ": nbins=" << GetNumBins() << " ["; *fLog << GetEdgeLo() << ", " << GetEdgeHi() << "] "; switch (fType) { case kIsDefault: *fLog << "deafult"; break; case kIsLinear: *fLog << "linear"; break; case kIsLogarithmic: *fLog << "logarithmic"; break; case kIsCosinic: *fLog << "consinic"; break; case kIsUserArray: *fLog << "user-array"; break; } *fLog << ">"; if (fTitle!=gsDefTitle) *fLog << " title=" << fTitle; *fLog << endl; } // -------------------------------------------------------------------------- // // Implementation of SavePrimitive. Used to write the call to a constructor // to a macro. In the original root implementation it is used to write // gui elements to a macro-file. // void MBinning::StreamPrimitive(ofstream &out) const { out << " MBinning " << GetUniqueName(); if (fName!=gsDefName || fTitle!=gsDefTitle) { out << "(\"" << fName << "\""; if (fTitle!=gsDefTitle) out << ", \"" << fTitle << "\""; out <<")"; } out << ";" << endl; if (IsDefault()) return; if (IsLinear() || IsLogarithmic() || IsCosinic()) { out << " " << GetUniqueName() << ".SetEdges"; if (IsLogarithmic()) out << "Log"; if (IsCosinic()) out << "Cos"; out << "(" << GetNumBins() << ", " << GetEdgeLo() << ", " << GetEdgeHi() << ");" << endl; return; } out << " {" << endl; out << " TArrayD dummy;" << endl; for (int i=0; i