Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
RooHist.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * Project: RooFit *
3  * Package: RooFitCore *
4  * File: $Id: RooHist.h,v 1.22 2007/05/11 09:11:30 verkerke Exp $
5  * Authors: *
6  * WV, Wouter Verkerke, UC Santa Barbara, verkerke@slac.stanford.edu *
7  * DK, David Kirkby, UC Irvine, dkirkby@uci.edu *
8  * *
9  * Copyright (c) 2000-2005, Regents of the University of California *
10  * and Stanford University. All rights reserved. *
11  * *
12  * Redistribution and use in source and binary forms, *
13  * with or without modification, are permitted according to the terms *
14  * listed in LICENSE (http://roofit.sourceforge.net/license.txt) *
15  *****************************************************************************/
16 #ifndef ROO_HIST
17 #define ROO_HIST
18 
19 #include "TGraphAsymmErrors.h"
20 #include "RooPlotable.h"
21 #include "RooAbsData.h"
22 #include "RooAbsRealLValue.h"
23 
24 class TH1;
25 class RooCurve ;
26 
27 class RooHist : public TGraphAsymmErrors, public RooPlotable {
28 public:
29  RooHist() ;
30  RooHist(Double_t nominalBinWidth, Double_t nSigma= 1, Double_t xErrorFrac=1.0, Double_t scaleFactor=1.0);
31  RooHist(const TH1 &data, Double_t nominalBinWidth= 0, Double_t nSigma= 1, RooAbsData::ErrorType=RooAbsData::Poisson,
32  Double_t xErrorFrac=1.0, Bool_t correctForBinWidth=kTRUE, Double_t scaleFactor=1.);
33  RooHist(const TH1 &data1, const TH1 &data2, Double_t nominalBinWidth= 0, Double_t nSigma= 1, RooAbsData::ErrorType=RooAbsData::Poisson,
34  Double_t xErrorFrac=1.0, Bool_t efficiency=kFALSE, Double_t scaleFactor=1.0);
35  RooHist(const RooHist& hist1, const RooHist& hist2, Double_t wgt1=1.0, Double_t wgt2=1.0,
36  RooAbsData::ErrorType etype=RooAbsData::Poisson, Double_t xErrorFrac=1.0) ;
37  RooHist(const RooAbsReal &f, RooAbsRealLValue &x, Double_t xErrorFrac=1.0, Double_t scaleFactor=1.0, const RooArgSet *normVars = 0, const RooFitResult* fr = 0);
38  virtual ~RooHist();
39 
40  // add a datapoint for a bin with n entries, using a Poisson error
41  void addBin(Axis_t binCenter, Double_t n, Double_t binWidth= 0, Double_t xErrorFrac=1.0, Double_t scaleFactor=1.0);
42  // add a datapoint for a bin with n entries, using a given error
43  void addBinWithError(Axis_t binCenter, Double_t n, Double_t elow, Double_t ehigh, Double_t binWidth= 0,
44  Double_t xErrorFrac=1.0, Bool_t correctForBinWidth=kTRUE, Double_t scaleFactor=1.0);
45  // add a datapoint for a bin with n entries, using a given x and y error
46  void addBinWithXYError(Axis_t binCenter, Double_t n, Double_t exlow, Double_t exhigh, Double_t eylow, Double_t eyhigh,
47  Double_t scaleFactor=1.0);
48  // add a datapoint for the asymmetry (n1-n2)/(n1+n2), using a binomial error
49  void addAsymmetryBin(Axis_t binCenter, Int_t n1, Int_t n2, Double_t binWidth= 0, Double_t xErrorFrac=1.0, Double_t scaleFactor=1.0);
50  // add a datapoint for the asymmetry (n1-n2)/(n1+n2), using sum-of-weights error
51  void addAsymmetryBinWithError(Axis_t binCenter, Double_t n1, Double_t n2, Double_t en1, Double_t en2, Double_t binWidth= 0, Double_t xErrorFrac=1.0, Double_t scaleFactor=1.0);
52 
53  // add a datapoint for the efficiency (n1)/(n1+n2), using a binomial error
54  void addEfficiencyBin(Axis_t binCenter, Int_t n1, Int_t n2, Double_t binWidth= 0, Double_t xErrorFrac=1.0, Double_t scaleFactor=1.0);
55  // add a datapoint for the efficiency (n1)/(n1+n2), using a sum-of-weights error
56  void addEfficiencyBinWithError(Axis_t binCenter, Double_t n1, Double_t n2, Double_t en1, Double_t en2, Double_t binWidth= 0, Double_t xErrorFrac=1.0, Double_t scaleFactor=1.0);
57 
58  virtual void printName(std::ostream& os) const ;
59  virtual void printTitle(std::ostream& os) const ;
60  virtual void printClassName(std::ostream& os) const ;
61  virtual void printMultiline(std::ostream& os, Int_t content, Bool_t verbose=kFALSE, TString indent= "") const;
62 
63  inline virtual void Print(Option_t *options= 0) const {
64  // Printing interface
65  printStream(defaultPrintStream(),defaultPrintContents(options),defaultPrintStyle(options));
66  }
67 
68  Double_t getFitRangeNEvt() const;
69  Double_t getFitRangeNEvt(Double_t xlo, Double_t xhi) const ;
70  Double_t getFitRangeBinW() const;
71  inline Double_t getNominalBinWidth() const { return _nominalBinWidth; }
72  inline void setRawEntries(Double_t n) { _rawEntries = n ; }
73 
74  Bool_t hasIdenticalBinning(const RooHist& other) const ;
75 
76  RooHist* makeResidHist(const RooCurve& curve,bool normalize=false, bool useAverage=false) const;
77  RooHist* makePullHist(const RooCurve& curve, bool useAverage=false) const
78  {return makeResidHist(curve,true,useAverage); }
79 
80 
81  Bool_t isIdentical(const RooHist& other, Double_t tol=1e-6) const ;
82 
83 
84 protected:
85  void initialize();
86  Int_t roundBin(Double_t y);
87 
88 private:
89  Double_t _nominalBinWidth ; // Average bin width
90  Double_t _nSigma ; // Number of 'sigmas' error bars represent
91  Double_t _entries ; // Number of entries in histogram
92  Double_t _rawEntries; // Number of entries in source dataset
93 
94  ClassDef(RooHist,1) // 1-dimensional histogram with error bars
95 };
96 
97 #endif