/***************************************************************************** * Project: RooFit * * Package: RooFitCore * * File: $Id: RooDataHist.rdl,v 1.33 2005/06/20 15:44:50 wverkerke Exp $ * Authors: * * WV, Wouter Verkerke, UC Santa Barbara, verkerke@slac.stanford.edu * * DK, David Kirkby, UC Irvine, dkirkby@uci.edu * * * * Copyright (c) 2000-2005, Regents of the University of California * * and Stanford University. All rights reserved. * * * * Redistribution and use in source and binary forms, * * with or without modification, are permitted according to the terms * * listed in LICENSE (http://roofit.sourceforge.net/license.txt) * *****************************************************************************/ #ifndef ROO_DATA_HIST #define ROO_DATA_HIST #include "TObject.h" #include "RooTreeData.h" #include "RooDirItem.h" #include "RooArgSet.h" #include "RooNameSet.h" class RooAbsArg; class RooAbsReal ; class RooAbsCategory ; class Roo1DTable ; class RooPlot; class RooArgSet ; class RooLinkedList ; class RooDataHist : public RooTreeData, public RooDirItem { public: // Constructors, factory methods etc. RooDataHist() ; RooDataHist(const char *name, const char *title, const RooArgSet& vars) ; RooDataHist(const char *name, const char *title, const RooArgSet& vars, const RooAbsData& data, Double_t initWgt=1.0) ; RooDataHist(const char *name, const char *title, const RooArgList& vars, const TH1* hist, Double_t initWgt=1.0) ; RooDataHist(const RooDataHist& other, const char* newname = 0) ; virtual TObject* Clone(const char* newname=0) const { return new RooDataHist(*this,newname?newname:GetName()) ; } virtual ~RooDataHist() ; virtual RooAbsData* emptyClone(const char* newName=0, const char* newTitle=0) const { return new RooDataHist(newName?newName:GetName(),newTitle?newTitle:GetTitle(),*get()) ; } // Add one ore more rows of data virtual void add(const RooArgSet& row, Double_t weight=1.0) { add(row,weight,-1.) ; } virtual void add(const RooArgSet& row, Double_t weight, Double_t sumw2) ; void set(const RooArgSet& row, Double_t weight, Double_t wgtErr=-1) ; void set(const RooArgSet& row, Double_t weight, Double_t wgtErrLo, Double_t wgtErrHi) ; void add(const RooAbsData& dset, const RooFormulaVar* cutVar=0, Double_t weight=1.0 ) ; void add(const RooAbsData& dset, const char* cut, Double_t weight=1.0 ) ; virtual const RooArgSet* get() const { return &_vars ; } virtual const RooArgSet* get(Int_t masterIdx) const ; virtual const RooArgSet* get(const RooArgSet& coord) const ; virtual Int_t numEntries(Bool_t useWeights=kFALSE) const ; virtual Double_t sumEntries(const char* cutSpec=0, const char* cutRange=0) const ; virtual Bool_t isWeighted() const { return kTRUE ; } Double_t sum(Bool_t correctForBinSize) const ; Double_t sum(const RooArgSet& sumSet, const RooArgSet& sliceSet, Bool_t correctForBinSize) ; virtual Double_t weight() const { return _curWeight ; } Double_t weight(const RooArgSet& bin, Int_t intOrder=1, Bool_t correctForBinSize=kFALSE) ; Double_t binVolume() const { return _curVolume ; } Double_t binVolume(const RooArgSet& bin) ; virtual void weightError(Double_t& lo, Double_t& hi, ErrorType etype=Poisson) const ; virtual Double_t weightError(ErrorType etype=Poisson) const { Double_t lo,hi ; weightError(lo,hi,etype) ; return (lo+hi)/2 ; } using RooTreeData::plotOn ; virtual RooPlot *plotOn(RooPlot *frame, PlotOpt o) const; virtual void reset() ; void dump2() ; protected: void initialize(Bool_t fillTree=kTRUE) ; RooDataHist(const char* name, const char* title, RooDataHist* h, const RooArgSet& varSubset, const RooFormulaVar* cutVar, const char* cutRange, Int_t nStart, Int_t nStop, Bool_t copyCache) ; RooAbsData* reduceEng(const RooArgSet& varSubset, const RooFormulaVar* cutVar, const char* cutRange=0, Int_t nStart=0, Int_t nStop=2000000000, Bool_t copyCache=kTRUE) ; Double_t interpolateDim(RooRealVar& dim, Double_t xval, Int_t intOrder, Bool_t correctForBinSize) ; void calculatePartialBinVolume(const RooArgSet& dimSet) const ; virtual RooAbsData* cacheClone(const RooArgSet* newCacheVars, const char* newName=0) ; Int_t calcTreeIndex() const ; Int_t _arrSize ; // Size of the weight array Int_t* _idxMult ; //! Multiplier jump table for index calculation Double_t* _wgt ; //[_arrSize] Weight array Double_t* _errLo ; //[_arrSize] Low-side error on weight array Double_t* _errHi ; //[_arrSize] High-side error on weight array Double_t* _sumw2 ; //[_arrSize] Sum of weights^2 Double_t* _binv ; //[_arrSize] Bin volume array RooArgSet _realVars ; // Real dimensions of the dataset TIterator* _realIter ; //! Iterator over realVars mutable Double_t _curWeight ; // Weight associated with the current coordinate mutable Double_t _curWgtErrLo ; // Error on weight associated with the current coordinate mutable Double_t _curWgtErrHi ; // Error on weight associated with the current coordinate mutable Double_t _curSumW2 ; // Current sum of weights^2 mutable Double_t _curVolume ; // Volume of bin enclosing current coordinate mutable Int_t _curIndex ; // Current index mutable Double_t* _pbinv ; //! Partial bin volume array mutable RooNameSet _pbinvCache ; //! Partial bin volume definition currently cached private: ClassDef(RooDataHist,1) // Binned data set }; #endif