Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
RooExtendPdf.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * Project: RooFit *
3  * Package: RooFitCore *
4  * File: $Id: RooExtendPdf.h,v 1.12 2007/07/16 21:04:28 wouter 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_EXTEND_PDF
17 #define ROO_EXTEND_PDF
18 
19 #include "RooAbsPdf.h"
20 #include "RooRealProxy.h"
21 
22 class RooExtendPdf : public RooAbsPdf {
23 public:
24 
25  RooExtendPdf() ;
26  RooExtendPdf(const char *name, const char *title, const RooAbsPdf& pdf,
27  const RooAbsReal& norm, const char* rangeName=0) ;
28  RooExtendPdf(const RooExtendPdf& other, const char* name=0) ;
29  virtual TObject* clone(const char* newname) const { return new RooExtendPdf(*this,newname) ; }
30  virtual ~RooExtendPdf() ;
31 
32  Double_t evaluate() const { return _pdf ; }
33 
34  Bool_t forceAnalyticalInt(const RooAbsArg& /*dep*/) const { return kTRUE ; }
35  Int_t getAnalyticalIntegralWN(RooArgSet& allVars, RooArgSet& analVars, const RooArgSet* normSet, const char* rangeName=0) const {
36  // Forward determination of analytical integration capabilities to input p.d.f
37  return ((RooAbsPdf&)_pdf.arg()).getAnalyticalIntegralWN(allVars, analVars, normSet, rangeName) ;
38  }
39  Double_t analyticalIntegralWN(Int_t code, const RooArgSet* normSet, const char* rangeName=0) const {
40  // Forward calculation of analytical integrals to input p.d.f
41  return ((RooAbsPdf&)_pdf.arg()).analyticalIntegralWN(code, normSet, rangeName) ;
42  }
43 
44  virtual Bool_t selfNormalized() const { return kTRUE ; }
45  virtual ExtendMode extendMode() const { return CanBeExtended ; }
46  virtual Double_t expectedEvents(const RooArgSet* nset) const ;
47  ///See expectedEvents(const RooArgSet* nset) const
48  virtual Double_t expectedEvents(const RooArgSet& nset) const { return expectedEvents(&nset) ; }
49 
50 protected:
51 
52  RooRealProxy _pdf ; // Input p.d.f
53  RooRealProxy _n ; // Number of expected events
54  const TNamed* _rangeName ; // Name of subset range
55 
56 
57  ClassDef(RooExtendPdf,1) // Wrapper p.d.f adding an extended likelihood term to an existing p.d.f
58 };
59 
60 #endif