#include "RooFit.h"
#include "TClass.h"
#include "TH1D.h"
#include "RooPlot.h"
#include "RooAbsReal.h"
#include "RooAbsRealLValue.h"
#include "RooPlotable.h"
#include "RooArgSet.h"
#include "RooCurve.h"
#include "RooHist.h"
#include "TAttLine.h"
#include "TAttFill.h"
#include "TAttMarker.h"
#include "TAttText.h"
#include "TDirectory.h"
#include "Riostream.h"
#include <string.h>
#include <assert.h>
ClassImp(RooPlot)
;
RooPlot::RooPlot(Double_t xmin, Double_t xmax) :
  _hist(0), _items(), _plotVarClone(0), _plotVarSet(0), _normObj(0),
  _defYmin(1e-5), _defYmax(1)
{
  _hist = new TH1D(histName(),"A RooPlot",100,xmin,xmax) ;
  
  initialize();
  
  
  
  
  
}
RooPlot::RooPlot(Double_t xmin, Double_t xmax, Double_t ymin, Double_t ymax) :
  _hist(0), _items(), _plotVarClone(0), 
  _plotVarSet(0), _normObj(0), _defYmin(1e-5), _defYmax(0)
{
  
  _hist = new TH1D(histName(),"A RooPlot",100,xmin,xmax) ;
  SetMinimum(ymin);
  SetMaximum(ymax);
  initialize();
}
RooPlot::RooPlot(const RooAbsRealLValue &var1, const RooAbsRealLValue &var2) :
  _hist(0), _items(),
  _plotVarClone(0), _plotVarSet(0), _normObj(0), _defYmin(1e-5), _defYmax(0)
{
  
  
  _hist = new TH1D(histName(),"A RooPlot",100,var1.getMin(),var1.getMax()) ;
  if(!var1.hasMin() || !var1.hasMax()) {
    cout << "RooPlot::RooPlot: cannot create plot for variable without finite limits: "
	 << var1.GetName() << endl;
    return;
  }
  if(!var2.hasMin() || !var2.hasMax()) {
    cout << "RooPlot::RooPlot: cannot create plot for variable without finite limits: "
	 << var1.GetName() << endl;
    return;
  }
  SetMinimum(var2.getMin());
  SetMaximum(var2.getMax());
  SetXTitle(var1.getTitle(kTRUE));
  SetYTitle(var2.getTitle(kTRUE));
  initialize();
}
RooPlot::RooPlot(const RooAbsRealLValue &var1, const RooAbsRealLValue &var2,
		 Double_t xmin, Double_t xmax, Double_t ymin, Double_t ymax) :
  _hist(0), _items(), _plotVarClone(0), 
  _plotVarSet(0), _normObj(0), _defYmin(1e-5), _defYmax(0)
{
  
  
  _hist = new TH1D(histName(),"A RooPlot",100,xmin,xmax) ;
  SetMinimum(ymin);
  SetMaximum(ymax);
  SetXTitle(var1.getTitle(kTRUE));
  SetYTitle(var2.getTitle(kTRUE));
  initialize();
}
RooPlot::RooPlot(const char* name, const char* title, const RooAbsRealLValue &var, Double_t xmin, Double_t xmax, Int_t nbins) :
  _hist(0), _items(), 
  _plotVarClone(0), _plotVarSet(0), _normObj(0), _defYmin(1e-5), _defYmax(1)
{
  
  
  
  
  _hist = new TH1D(name,title,nbins,xmin,xmax) ;
  
  _plotVarSet = (RooArgSet*) RooArgSet(var).snapshot() ;
  _plotVarClone= (RooAbsRealLValue*)_plotVarSet->find(var.GetName()) ;
  
  TString xtitle= var.getTitle(kTRUE);
  SetXTitle(xtitle.Data());
  initialize();
  _normBinWidth = (xmax-xmin)/nbins ; 
}
RooPlot::RooPlot(const RooAbsRealLValue &var, Double_t xmin, Double_t xmax, Int_t nbins) :
  _hist(0), _items(), 
  _plotVarClone(0), _plotVarSet(0), _normObj(0), _defYmin(1e-5), _defYmax(1)
{
  
  
  
  
    
  _hist = new TH1D(histName(),"RooPlot",nbins,xmin,xmax) ;
  
  _plotVarSet = (RooArgSet*) RooArgSet(var).snapshot() ;
  _plotVarClone= (RooAbsRealLValue*)_plotVarSet->find(var.GetName()) ;
  
  TString xtitle= var.getTitle(kTRUE);
  SetXTitle(xtitle.Data());
  TString title("A RooPlot of \"");
  title.Append(var.getTitle());
  title.Append("\"");
  SetTitle(title.Data());
  initialize();
  _normBinWidth = (xmax-xmin)/nbins ; 
}
void RooPlot::initialize() {
  
  
  _hist->SetStats(kFALSE);
  
  setPadFactor(0.05);
  
  _normNumEvts= 0;
  _normBinWidth = 0;
  _normVars= 0;
  
  _iterator= _items.MakeIterator();
  assert(0 != _iterator);
}
void RooPlot::SetName(const char* name) 
{
  TNamed::SetName(name) ;
  _hist->SetName(name) ;
}
void RooPlot::SetTitle(const char* title) 
{
  TNamed::SetTitle(title) ;
  _hist->SetTitle(title) ;
}
TString RooPlot::histName() const 
{
  return TString(Form("frame_%08x",this)) ;
}
RooPlot::~RooPlot() {
  
  _items.Delete();
  delete _iterator;
  if(_plotVarSet) delete _plotVarSet;
  if(_normVars) delete _normVars;
  delete _hist ;
}
void RooPlot::updateNormVars(const RooArgSet &vars) {
  if(0 == _normVars) _normVars= (RooArgSet*) vars.snapshot(kTRUE);
}
Stat_t RooPlot::GetBinContent(Int_t ) const {
  
  
  return 0;
}
Stat_t RooPlot::GetBinContent(Int_t, Int_t) const
{
  
  
  return 0;
}
Stat_t RooPlot::GetBinContent(Int_t, Int_t, Int_t) const
{
  
  
  return 0;
}
void RooPlot::addObject(TObject *obj, Option_t *drawOptions, Bool_t invisible) {
  
  
  
  
  if(0 == obj) {
    cout << fName << "::addObject: called with a null pointer" << endl;
    return;
  }
  DrawOpt opt(drawOptions) ;
  opt.invisible = invisible ;
  _items.Add(obj,opt.rawOpt());
}
void RooPlot::addTH1(TH1 *hist, Option_t *drawOptions, Bool_t invisible) {
  
  
  
  
  
  
  
  
  
  
  if(0 == hist) {
    cout << fName << "::addTH1: called with a null pointer" << endl;
    return;
  }
  
  if(1 != hist->GetDimension()) {
    cout << fName << "::addTH1: cannot plot histogram with "
	 << hist->GetDimension() << " dimensions" << endl;
    return;
  }
  
  TString options(drawOptions);
  options.ToUpper();
  if(!options.Contains("SAME")) options.Append("SAME");
  
  updateYAxis(hist->GetMinimum(),hist->GetMaximum(),hist->GetYaxis()->GetTitle());
  
  updateFitRangeNorm(hist);
  
  addObject(hist,options.Data(),invisible);
}
void RooPlot::addPlotable(RooPlotable *plotable, Option_t *drawOptions, Bool_t invisible, Bool_t refreshNorm) {
  
  
  
  
  
  
  updateYAxis(plotable->getYAxisMin(),plotable->getYAxisMax(),plotable->getYAxisLabel());
  
  updateFitRangeNorm(plotable,refreshNorm) ;
  
  TObject *obj= plotable->crossCast();
  if(0 == obj) {
    cout << fName << "::add: cross-cast to TObject failed (nothing added)" << endl;
  }
  else {
    DrawOpt opt(drawOptions) ;
    opt.invisible = invisible ;
    _items.Add(obj,opt.rawOpt());
  }
}
void RooPlot::updateFitRangeNorm(const TH1* hist) {
  
  
  const TAxis* xa = ((TH1*)hist)->GetXaxis() ;
  _normBinWidth = (xa->GetXmax()-xa->GetXmin())/hist->GetNbinsX() ;
  _normNumEvts = hist->GetEntries()/_normBinWidth ;
}
void RooPlot::updateFitRangeNorm(const RooPlotable* rp, Bool_t refreshNorm) {
  
  
  if (_normNumEvts != 0) {
    
    if (!refreshNorm) return ;
    Double_t corFac(1.0) ;
    if (dynamic_cast<const RooHist*>(rp)) corFac = _normBinWidth/rp->getFitRangeBinW() ;
    
    
    cout << "RooPlot::updateFitRangeNorm: New event count of " << rp->getFitRangeNEvt()/corFac 
	 << " will supercede previous event count of " << _normNumEvts << " for normalization of PDF projections" << endl ;
    
    
    _normNumEvts = rp->getFitRangeNEvt()/corFac ;
    _normObj = rp ;
    
    
    
  } else {
    _normObj = rp ;
    _normNumEvts = rp->getFitRangeNEvt() ;
    if (rp->getFitRangeBinW()) {
      _normBinWidth = rp->getFitRangeBinW() ;
    }
    
  }
}
void RooPlot::updateYAxis(Double_t ymin, Double_t ymax, const char *label) {
  
  
  
  
  if(GetMinimum() == 0 && ymin > 0) ymin= 0;
  
  Double_t ypad= getPadFactor()*(ymax-ymin);
  ymax+= ypad;
  if(ymin < 0) ymin-= ypad;
  
  if(GetMaximum() < ymax) {
    _defYmax = ymax ;
    SetMaximum(ymax);
  }
  if(GetMinimum() > ymin) {
    _defYmin = ymin ;
    SetMinimum(ymin);
  }
  
  if(0 == strlen(_hist->GetYaxis()->GetTitle())) _hist->SetYTitle(label);
}
void RooPlot::Draw(Option_t *options) {
  
  
  
  _hist->Draw(options);
  _iterator->Reset();
  TObject *obj = 0;
  while((obj= _iterator->Next())) {
    DrawOpt opt(_iterator->GetOption()) ;
    if (!opt.invisible) {
      obj->Draw(opt.drawOptions);
    }
  }
  _hist->Draw("AXISSAME");
}
void RooPlot::printToStream(ostream& os, PrintOption opt, TString indent) const {
  
  
  
  
  oneLinePrint(os,*this);
  if(opt >= Standard) {
    TString deeper(indent);
    deeper.Append("    ");
    if(0 != _plotVarClone) {
      os << indent << "  Plotting ";
      _plotVarClone->printToStream(os,OneLine,deeper);
    }
    else {
      os << indent << "  No plot variable specified" << endl;
    }
    os << indent << "  Plot contains " << _items.GetSize() << " object(s)" << endl;
    if(opt >= Shape) {
      _iterator->Reset();
      TObject *obj = 0;
      while((obj= _iterator->Next())) {
	os << deeper << "(Options=\"" << _iterator->GetOption() << "\") ";
	
	if(obj->IsA()->InheritsFrom(RooPrintable::Class())) {
	  ostream& oldDefault= RooPrintable::defaultStream(&os);
	  obj->Print("1");
	  RooPrintable::defaultStream(&oldDefault);
	}
	
	else if(obj->IsA()->InheritsFrom(TNamed::Class())) {
	  oneLinePrint(os,(const TNamed&)(*obj));
	}
	
	else {
	  os << obj->ClassName() << "::" << obj->GetName() << endl;
	}
      }
    }
  }
}
const char* RooPlot::nameOf(Int_t idx) const 
{
  
  
  
  TObject* obj = _items.At(idx) ;
  if (!obj) {
    cout << "RooPlot::nameOf(" << GetName() << ") index " << idx << " out of range" << endl ;
    return 0 ;
  }
  return obj->GetName() ;
}
TObject* RooPlot::getObject(Int_t idx) const 
{
  
  
  
  TObject* obj = _items.At(idx) ;
  if (!obj) {
    cout << "RooPlot::getObject(" << GetName() << ") index " << idx << " out of range" << endl ;
    return 0 ;
  }
  return obj ;
}
TAttLine *RooPlot::getAttLine(const char *name) const {
  
  
  return dynamic_cast<TAttLine*>(findObject(name));
}
TAttFill *RooPlot::getAttFill(const char *name) const {
  
  
  return dynamic_cast<TAttFill*>(findObject(name));
}
TAttMarker *RooPlot::getAttMarker(const char *name) const {
  
  
  return dynamic_cast<TAttMarker*>(findObject(name));
}
TAttText *RooPlot::getAttText(const char *name) const {
  
  
  return dynamic_cast<TAttText*>(findObject(name));
}
RooCurve* RooPlot::getCurve(const char* name) const  {
  
  
  return dynamic_cast<RooCurve*>(findObject(name)) ;
}
RooHist* RooPlot::getHist(const char* name) const {
  
  
  return dynamic_cast<RooHist*>(findObject(name)) ;
}
Bool_t RooPlot::drawBefore(const char *before, const char *target) {
  
  
  
  return _items.moveBefore(before, target, caller("drawBefore"));
}
Bool_t RooPlot::drawAfter(const char *after, const char *target) {
  
  
  
  return _items.moveAfter(after, target, caller("drawAfter"));
}
TObject *RooPlot::findObject(const char *name, const TClass* clas) const {
  
  
  
  
  
  
  
  
  
  TObject *obj = 0;
  TObject *ret = 0;
  TIterator* iter = _items.MakeIterator() ;
  while((obj=iter->Next())) {
    if ((!name || !TString(name).CompareTo(obj->GetName())) && 
	(!clas || (obj->IsA()==clas))) {
      ret = obj ;
    }
  }
  delete iter ;
  
  if (ret==0) {
    cout << "RooPlot::findObject(" << GetName() << ") cannot find object " << (name?name:"<last>") << endl ;
  }
  return ret ;
}
TString RooPlot::getDrawOptions(const char *name) const {
  
  
  TObjOptLink *link= _items.findLink(name,caller("getDrawOptions"));
  DrawOpt opt(0 == link ? "" : link->GetOption()) ;
  return TString(opt.drawOptions) ;
}
Bool_t RooPlot::setDrawOptions(const char *name, TString options) {
  
  
  TObjOptLink *link= _items.findLink(name,caller("setDrawOptions"));
  if(0 == link) return kFALSE;
  DrawOpt opt(link->GetOption()) ;
  strcpy(opt.drawOptions,options) ;
  link->SetOption(opt.rawOpt());
  return kTRUE;
}
Bool_t RooPlot::getInvisible(const char* name) const 
{
  TObjOptLink *link= _items.findLink(name,caller("getInvisible"));
  if(0 == link) return kFALSE;
  return DrawOpt(link->GetOption()).invisible ;
}
void RooPlot::setInvisible(const char* name, Bool_t flag) 
{
  TObjOptLink *link= _items.findLink(name,caller("getInvisible"));
  DrawOpt opt ;
  if(link) {
    opt.initialize(link->GetOption()) ;
  }
  opt.invisible = flag ;
  link->SetOption(opt.rawOpt()) ;
}
TString RooPlot::caller(const char *method) const {
  TString name(fName);
  if(strlen(method)) {
    name.Append("::");
    name.Append(method);
  }
  return name;
}
void RooPlot::SetMaximum(Double_t maximum) 
{
  _hist->SetMaximum(maximum==-1111?_defYmax:maximum) ;
}
void RooPlot::SetMinimum(Double_t minimum) 
{
  _hist->SetMinimum(minimum==-1111?_defYmin:minimum) ;
}
Double_t RooPlot::chiSquare(const char* curvename, const char* histname, Int_t nFitParam) const 
{
  
  RooCurve* curve = (RooCurve*) findObject(curvename,RooCurve::Class()) ;
  if (!curve) {
    cout << "RooPlot::chiSquare(" << GetName() << ") cannot find curve" << endl ;
    return -1. ;
  }
  
  RooHist* hist = (RooHist*) findObject(histname,RooHist::Class()) ;
  if (!hist) {
    cout << "RooPlot::chiSquare(" << GetName() << ") cannot find histogram" << endl ;
    return -1. ;
  }
  return curve->chiSquare(*hist,nFitParam) ;
}
RooHist* RooPlot::residHist(const char* histname, const char* curvename,bool normalize) const 
{
  
  RooCurve* curve = (RooCurve*) findObject(curvename,RooCurve::Class()) ;
  if (!curve) {
    cout << "RooPlot::residHist(" << GetName() << ") cannot find curve" << endl ;
    return 0 ;
  }
  
  RooHist* hist = (RooHist*) findObject(histname,RooHist::Class()) ;
  if (!hist) {
    cout << "RooPlot::residHist(" << GetName() << ") cannot find histogram" << endl ;
    return 0 ;
  }  
  return hist->makeResidHist(*curve,normalize) ;
}
void RooPlot::DrawOpt::initialize(const char* rawOpt) 
{
  if (!rawOpt) {
    drawOptions[0] = 0 ;
    invisible=kFALSE ;
    return ;
  }
  strcpy(drawOptions,rawOpt) ;
  strtok(drawOptions,":") ;
  const char* extraOpt = strtok(0,":") ;
  if (extraOpt) {
    invisible =  (extraOpt[0]=='I') ;
  }
}
const char* RooPlot::DrawOpt::rawOpt() const 
{
  static char buf[128] ;
  strcpy(buf,drawOptions) ;
  if (invisible) {
    strcat(buf,":I") ;
  }
  return buf ;
}
Double_t RooPlot::getFitRangeNEvt(Double_t xlo, Double_t xhi) const 
{
  Double_t scaleFactor = 1.0 ;
  if (_normObj) {
    scaleFactor = _normObj->getFitRangeNEvt(xlo,xhi)/_normObj->getFitRangeNEvt() ;
  }
  cout << "RooPlot::getFitRangeNEvt(" << GetName() << ") WARNING: Unable to obtain event count in range " 
       << xlo << " to " << xhi << ", substituting full event count" << endl ;
  return getFitRangeNEvt()*scaleFactor ;
}
TAxis* RooPlot::GetXaxis() const { return _hist->GetXaxis() ; }
TAxis* RooPlot::GetYaxis() const { return _hist->GetYaxis() ; }
Int_t  RooPlot::GetNbinsX() const { return _hist->GetNbinsX() ; }
Int_t  RooPlot::GetNdivisions(Option_t* axis) const { return _hist->GetNdivisions(axis) ; }
Double_t  RooPlot::GetMinimum(Double_t minval) const { return _hist->GetMinimum(minval) ; }
Double_t   RooPlot::GetMaximum(Double_t maxval) const { return _hist->GetMaximum(maxval) ; }
void RooPlot::SetXTitle(const char *title) { _hist->SetXTitle(title) ; }
void RooPlot::SetYTitle(const char *title) { _hist->SetYTitle(title) ; }
void RooPlot::SetZTitle(const char *title) { _hist->SetZTitle(title) ; }
void RooPlot::Streamer(TBuffer &R__b)
{
   
  
  if (R__b.IsReading()) {
    UInt_t R__s, R__c;
    Version_t R__v = R__b.ReadVersion(&R__s, &R__c);
    if (R__v > 1) {
      R__b.ReadClassBuffer(RooPlot::Class(),this);
    } else {
      
      
      
      _hist = new TH1F();
      _hist->TH1::Streamer(R__b);
      SetName(_hist->GetName());
      SetTitle(_hist->GetTitle());
      RooPrintable::Streamer(R__b);
      _items.Streamer(R__b);
      R__b >> _padFactor;
      R__b >> _plotVarClone;
      R__b >> _plotVarSet;
      R__b >> _normVars;
      R__b >> _normNumEvts;
      R__b >> _normBinWidth;
      R__b >> _defYmin;
      R__b >> _defYmax;
      R__b.CheckByteCount(R__s, R__c, RooPlot::IsA());
    } 
  } else {
    R__b.WriteClassBuffer(RooPlot::Class(),this);
  }
}
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.