Logo ROOT   6.14/05
Reference Guide
RooProduct.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * Project: RooFit *
3  * Package: RooFitCore *
4  * File: $Id: RooProduct.h,v 1.5 2007/05/11 09:11:30 verkerke Exp $
5  * Authors: *
6  * WV, Wouter Verkerke, UC Santa Barbara, verkerke@slac.stanford.edu *
7  * GR, Gerhard Raven, VU Amsterdan, graven@nikhef.nl *
8  * *
9  * Copyright (c) 2000-2007, 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_PRODUCT
17 #define ROO_PRODUCT
18 
19 #include "RooAbsReal.h"
20 #include "RooListProxy.h"
21 #include "RooCacheManager.h"
22 #include "RooObjCacheManager.h"
23 
24 #include <vector>
25 #include <utility>
26 
27 
28 class RooRealVar;
29 class RooArgList ;
30 
31 
32 class RooProduct : public RooAbsReal {
33 public:
34 
35  RooProduct() ;
36  RooProduct(const char *name, const char *title, const RooArgList& _prodSet) ;
37 
38  RooProduct(const RooProduct& other, const char* name = 0);
39  virtual TObject* clone(const char* newname) const { return new RooProduct(*this, newname); }
40  virtual Bool_t forceAnalyticalInt(const RooAbsArg& dep) const ;
41  virtual Int_t getAnalyticalIntegralWN(RooArgSet& allVars, RooArgSet& analVars,
42  const RooArgSet* normSet,
43  const char* rangeName=0) const ;
44  virtual Double_t analyticalIntegral(Int_t code, const char* rangeName=0) const;
45 
46 
47  RooArgList components() { RooArgList tmp(_compRSet) ; tmp.add(_compCSet) ; return tmp ; }
48 
49  virtual ~RooProduct() ;
50 
51  class ProdMap ;
52 
53  void printMetaArgs(std::ostream& os) const ;
54 
55  virtual std::list<Double_t>* binBoundaries(RooAbsRealLValue& /*obs*/, Double_t /*xlo*/, Double_t /*xhi*/) const ;
56  virtual std::list<Double_t>* plotSamplingHint(RooAbsRealLValue& /*obs*/, Double_t /*xlo*/, Double_t /*xhi*/) const ;
57  virtual Bool_t isBinnedDistribution(const RooArgSet& obs) const ;
58 
59  virtual CacheMode canNodeBeCached() const { return RooAbsArg::NotAdvised ; } ;
60  virtual void setCacheAndTrackHints(RooArgSet&) ;
61 
62 protected:
63 
66 
67  class CacheElem : public RooAbsCacheElement {
68  public:
69  virtual ~CacheElem();
70  // Payload
74  };
75  mutable RooObjCacheManager _cacheMgr ; // The cache manager
76 
77 
78  Double_t calculate(const RooArgList& partIntList) const;
79  Double_t evaluate() const;
80  const char* makeFPName(const char *pfx,const RooArgSet& terms) const ;
81  ProdMap* groupProductTerms(const RooArgSet&) const;
82  Int_t getPartIntList(const RooArgSet* iset, const char *rangeName=0) const;
83 
84 
85 
86 
87  ClassDef(RooProduct,2) // Product of RooAbsReal and/or RooAbsCategory terms
88 };
89 
90 #endif
RooListProxy _compRSet
Definition: RooProduct.h:64
virtual std::list< Double_t > * plotSamplingHint(RooAbsRealLValue &, Double_t, Double_t) const
Forward the plot sampling hint from the p.d.f. that defines the observable obs.
Definition: RooProduct.cxx:425
virtual ~CacheElem()
Destructor.
Definition: RooProduct.cxx:444
virtual Bool_t add(const RooAbsArg &var, Bool_t silent=kFALSE)
Add the specified argument to list.
virtual std::list< Double_t > * binBoundaries(RooAbsRealLValue &, Double_t, Double_t) const
Forward the plot sampling hint from the p.d.f. that defines the observable obs.
Definition: RooProduct.cxx:389
const char * makeFPName(const char *pfx, const RooArgSet &terms) const
Construct automatic name for internal product terms.
Definition: RooProduct.cxx:344
virtual RooArgList containedArgs(Action)
Return list of all RooAbsArgs in cache element.
Definition: RooProduct.cxx:452
ProdMap * groupProductTerms(const RooArgSet &) const
Group observables into subsets in which the product factorizes and that can thus be integrated separa...
Definition: RooProduct.cxx:141
Int_t getPartIntList(const RooArgSet *iset, const char *rangeName=0) const
Return list of (partial) integrals whose product defines the integral of this RooProduct over the obs...
Definition: RooProduct.cxx:215
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
virtual Bool_t forceAnalyticalInt(const RooAbsArg &dep) const
Force internal handling of integration of given observable if any of the product terms depend on it...
Definition: RooProduct.cxx:121
#define ClassDef(name, id)
Definition: Rtypes.h:320
Double_t evaluate() const
Evaluate product of input functions.
Definition: RooProduct.cxx:364
RooListProxy _compCSet
Definition: RooProduct.h:65
RooRealVar represents a fundamental (non-derived) real valued object.
Definition: RooRealVar.h:36
virtual TObject * clone(const char *newname) const
Definition: RooProduct.h:39
virtual Bool_t isBinnedDistribution(const RooArgSet &obs) const
Definition: RooProduct.cxx:405
RooAbsCacheElement is the abstract base class for objects to be stored in RooAbsCache cache manager o...
RooProduct()
Default constructor.
Definition: RooProduct.cxx:59
virtual CacheMode canNodeBeCached() const
Definition: RooProduct.h:59
virtual ~RooProduct()
Destructor.
Definition: RooProduct.cxx:69
RooProduct a RooAbsReal implementation that represent the product of a given set of other RooAbsReal ...
Definition: RooProduct.h:32
RooListProxy is the concrete proxy for RooArgList objects.
Definition: RooListProxy.h:25
double Double_t
Definition: RtypesCore.h:55
RooAbsReal is the common abstract base class for objects that represent a real value and implements f...
Definition: RooAbsReal.h:53
Class RooObjCacheManager is an implementation of class RooCacheManager<RooAbsCacheElement> and specia...
Mother of all ROOT objects.
Definition: TObject.h:37
Double_t calculate(const RooArgList &partIntList) const
Calculate and return product of partial terms in partIntList.
Definition: RooProduct.cxx:328
RooAbsRealLValue is the common abstract base class for objects that represent a real value that may a...
RooArgList _prodList
Definition: RooProduct.h:71
void printMetaArgs(std::ostream &os) const
Customized printing of arguments of a RooProduct to more intuitively reflect the contents of the prod...
Definition: RooProduct.cxx:487
virtual Int_t getAnalyticalIntegralWN(RooArgSet &allVars, RooArgSet &analVars, const RooArgSet *normSet, const char *rangeName=0) const
Declare that we handle all integrations internally.
Definition: RooProduct.cxx:288
RooObjCacheManager _cacheMgr
Definition: RooProduct.h:75
RooArgList _ownedList
Definition: RooProduct.h:72
virtual Double_t analyticalIntegral(Int_t code, const char *rangeName=0) const
Calculate integral internally from appropriate partial integral cache.
Definition: RooProduct.cxx:307
RooAbsArg is the common abstract base class for objects that represent a value (of arbitrary type) an...
Definition: RooAbsArg.h:66
RooArgList components()
Definition: RooProduct.h:47
virtual void setCacheAndTrackHints(RooArgSet &)
Label OK&#39;ed components of a RooProduct with cache-and-track.
Definition: RooProduct.cxx:464
char name[80]
Definition: TGX11.cxx:109