Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
RooNumRunningInt.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * Project: RooFit *
3  * *
4  * Copyright (c) 2000-2005, Regents of the University of California *
5  * and Stanford University. All rights reserved. *
6  * *
7  * Redistribution and use in source and binary forms, *
8  * with or without modification, are permitted according to the terms *
9  * listed in LICENSE (http://roofit.sourceforge.net/license.txt) *
10  *****************************************************************************/
11 
12 #ifndef ROONUMRUNNINGINT
13 #define ROONUMRUNNINGINT
14 
15 #include "RooAbsCachedReal.h"
16 #include "RooRealProxy.h"
17 #include "RooAbsReal.h"
18 
19 
20 class RooNumRunningInt : public RooAbsCachedReal {
21 public:
22  RooNumRunningInt(const char *name, const char *title, RooAbsReal& _func, RooRealVar& _x, const char* binningName="cache");
23  RooNumRunningInt(const RooNumRunningInt& other, const char* name=0) ;
24  virtual TObject* clone(const char* newname) const { return new RooNumRunningInt(*this,newname); }
25  virtual ~RooNumRunningInt() ;
26 
27 protected:
28 
29  class RICacheElem: public FuncCacheElem {
30  public:
31  RICacheElem(const RooNumRunningInt& ri, const RooArgSet* nset) ;
32  ~RICacheElem() ;
33  virtual RooArgList containedArgs(Action) ;
34  void calculate(Bool_t cdfmode) ;
35  void addRange(Int_t ixlo, Int_t ixhi, Int_t nbins) ;
36  void addPoint(Int_t ix) ;
37 
38  RooNumRunningInt* _self ;
39  Double_t* _ax ;
40  Double_t* _ay ;
41  RooRealVar* _xx ;
42 
43  } ;
44 
45  friend class RICacheElem ;
46  virtual const char* binningName() const { return _binningName.c_str() ; }
47  virtual FuncCacheElem* createCache(const RooArgSet* nset) const ;
48  virtual const char* inputBaseName() const ;
49  virtual RooArgSet* actualObservables(const RooArgSet& nset) const ;
50  virtual RooArgSet* actualParameters(const RooArgSet& nset) const ;
51  virtual void fillCacheObject(FuncCacheElem& cacheFunc) const ;
52  virtual Double_t evaluate() const ;
53 
54  virtual const char* payloadUniqueSuffix() const { return func.arg().aggregateCacheUniqueSuffix() ; }
55 
56  RooRealProxy func ; // Proxy to functions whose running integral is calculated
57  RooRealProxy x ; // Intergrated observable
58  std::string _binningName ; // Name of binning to be used for cache histogram
59 
60 private:
61 
62  ClassDef(RooNumRunningInt,1) // Numeric calculator for running integral of a given function
63 
64 };
65 
66 #endif