Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
RooRealSumPdf.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * Project: RooFit *
3  * Package: RooFitCore *
4  * File: $Id: RooRealSumPdf.h,v 1.10 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_REAL_SUM_PDF
17 #define ROO_REAL_SUM_PDF
18 
19 #include "RooAbsPdf.h"
20 #include "RooListProxy.h"
21 #include "RooAICRegistry.h"
22 #include "RooObjCacheManager.h"
23 
24 class RooRealSumPdf : public RooAbsPdf {
25 public:
26 
27  RooRealSumPdf() ;
28  RooRealSumPdf(const char *name, const char *title);
29  RooRealSumPdf(const char *name, const char *title, const RooArgList& funcList, const RooArgList& coefList, Bool_t extended=kFALSE) ;
30  RooRealSumPdf(const char *name, const char *title,
31  RooAbsReal& func1, RooAbsReal& func2, RooAbsReal& coef1) ;
32  RooRealSumPdf(const RooRealSumPdf& other, const char* name=0) ;
33  virtual TObject* clone(const char* newname) const { return new RooRealSumPdf(*this,newname) ; }
34  virtual ~RooRealSumPdf() ;
35 
36  Double_t evaluate() const ;
37  virtual Bool_t checkObservables(const RooArgSet* nset) const ;
38 
39  virtual Bool_t forceAnalyticalInt(const RooAbsArg& arg) const { return arg.isFundamental() ; }
40  Int_t getAnalyticalIntegralWN(RooArgSet& allVars, RooArgSet& numVars, const RooArgSet* normSet, const char* rangeName=0) const ;
41  Double_t analyticalIntegralWN(Int_t code, const RooArgSet* normSet, const char* rangeName=0) const ;
42 
43  const RooArgList& funcList() const { return _funcList ; }
44  const RooArgList& coefList() const { return _coefList ; }
45 
46  virtual ExtendMode extendMode() const ;
47 
48  virtual Double_t expectedEvents(const RooArgSet* nset) const ;
49  virtual Double_t expectedEvents(const RooArgSet& nset) const {
50  // Return expected number of events for extended likelihood calculation
51  // which is the sum of all coefficients
52  return expectedEvents(&nset) ;
53  }
54 
55  virtual Bool_t selfNormalized() const { return getAttribute("BinnedLikelihoodActive") ; }
56 
57  void printMetaArgs(std::ostream& os) const ;
58 
59 
60  virtual std::list<Double_t>* binBoundaries(RooAbsRealLValue& /*obs*/, Double_t /*xlo*/, Double_t /*xhi*/) const ;
61  virtual std::list<Double_t>* plotSamplingHint(RooAbsRealLValue& /*obs*/, Double_t /*xlo*/, Double_t /*xhi*/) const ;
62  Bool_t isBinnedDistribution(const RooArgSet& obs) const ;
63 
64  void setFloor(Bool_t flag) { _doFloor = flag ; }
65  Bool_t getFloor() const { return _doFloor ; }
66  static void setFloorGlobal(Bool_t flag) { _doFloorGlobal = flag ; }
67  static Bool_t getFloorGlobal() { return _doFloorGlobal ; }
68 
69  virtual CacheMode canNodeBeCached() const { return RooAbsArg::NotAdvised ; } ;
70  virtual void setCacheAndTrackHints(RooArgSet&) ;
71 
72 protected:
73 
74  class CacheElem : public RooAbsCacheElement {
75  public:
76  CacheElem() {} ;
77  virtual ~CacheElem() {} ;
78  virtual RooArgList containedArgs(Action) { RooArgList ret(_funcIntList) ; ret.add(_funcNormList) ; return ret ; }
79  RooArgList _funcIntList ;
80  RooArgList _funcNormList ;
81  } ;
82  mutable RooObjCacheManager _normIntMgr ; // The integration cache manager
83 
84 
85  RooListProxy _funcList ; // List of component FUNCs
86  RooListProxy _coefList ; // List of coefficients
87  Bool_t _extended ; // Allow use as extended p.d.f.
88 
89  Bool_t _doFloor ; // Introduce floor at zero in pdf
90  static Bool_t _doFloorGlobal ; // Global flag for introducing floor at zero in pdf
91 
92 private:
93 
94  bool haveLastCoef() const {
95  return _funcList.size() == _coefList.size();
96  }
97 
98  ClassDef(RooRealSumPdf, 4) // PDF constructed from a sum of (non-pdf) functions
99 };
100 
101 #endif