Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
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
22class RooExtendPdf : public RooAbsPdf {
23public:
24
25 RooExtendPdf() = default;
26 RooExtendPdf(const char *name, const char *title, RooAbsPdf& pdf,
27 RooAbsReal& norm, const char* rangeName=nullptr) ;
28 RooExtendPdf(const RooExtendPdf& other, const char* name=nullptr) ;
29 TObject* clone(const char* newname) const override { return new RooExtendPdf(*this,newname) ; }
30
31 double evaluate() const override { return _pdf ; }
32
33 bool forceAnalyticalInt(const RooAbsArg& /*dep*/) const override { return true ; }
34 /// Forward determination of analytical integration capabilities to input p.d.f
35 Int_t getAnalyticalIntegralWN(RooArgSet& allVars, RooArgSet& analVars, const RooArgSet* normSet, const char* rangeName=nullptr) const override {
36 return _pdf->getAnalyticalIntegralWN(allVars, analVars, normSet, rangeName) ;
37 }
38 /// Forward calculation of analytical integrals to input p.d.f
39 double analyticalIntegralWN(Int_t code, const RooArgSet* normSet, const char* rangeName=nullptr) const override {
40 return _pdf->analyticalIntegralWN(code, normSet, rangeName) ;
41 }
42
43 bool selfNormalized() const override { return true ; }
44 ExtendMode extendMode() const override { return CanBeExtended ; }
45 double expectedEvents(const RooArgSet* nset) const override ;
46 std::unique_ptr<RooAbsReal> createExpectedEventsFunc(const RooArgSet* nset) const override;
47
48protected:
49
51 RooTemplateProxy<RooAbsReal> _n; ///< Number of expected events
52 const TNamed* _rangeName = nullptr; ///< Name of subset range
53
54
55 ClassDefOverride(RooExtendPdf,2) // Wrapper p.d.f adding an extended likelihood term to an existing p.d.f
56};
57
58#endif
#define ClassDefOverride(name, id)
Definition Rtypes.h:341
char name[80]
Definition TGX11.cxx:110
RooAbsArg is the common abstract base class for objects that represent a value and a "shape" in RooFi...
Definition RooAbsArg.h:74
@ CanBeExtended
Definition RooAbsPdf.h:272
double analyticalIntegralWN(Int_t code, const RooArgSet *normSet, const char *rangeName=nullptr) const override
Analytical integral with normalization (see RooAbsReal::analyticalIntegralWN() for further informatio...
RooAbsReal is the common abstract base class for objects that represent a real value and implements f...
Definition RooAbsReal.h:62
virtual Int_t getAnalyticalIntegralWN(RooArgSet &allVars, RooArgSet &analVars, const RooArgSet *normSet, const char *rangeName=nullptr) const
Variant of getAnalyticalIntegral that is also passed the normalization set that should be applied to ...
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Definition RooArgSet.h:55
RooExtendPdf is a wrapper around an existing PDF that adds a parameteric extended likelihood term to ...
std::unique_ptr< RooAbsReal > createExpectedEventsFunc(const RooArgSet *nset) const override
Returns an object that represents the expected number of events for a given normalization set,...
double evaluate() const override
Evaluate this PDF / function / constant. Needs to be overridden by all derived classes.
bool forceAnalyticalInt(const RooAbsArg &) const override
Int_t getAnalyticalIntegralWN(RooArgSet &allVars, RooArgSet &analVars, const RooArgSet *normSet, const char *rangeName=nullptr) const override
Forward determination of analytical integration capabilities to input p.d.f.
double analyticalIntegralWN(Int_t code, const RooArgSet *normSet, const char *rangeName=nullptr) const override
Forward calculation of analytical integrals to input p.d.f.
ExtendMode extendMode() const override
Returns ability of PDF to provide extended likelihood terms.
RooTemplateProxy< RooAbsPdf > _pdf
Input p.d.f.
double expectedEvents(const RooArgSet *nset) const override
Return the number of expected events over the full range of all variables.
const TNamed * _rangeName
Name of subset range.
RooExtendPdf()=default
bool selfNormalized() const override
Shows if a PDF is self-normalized, which means that no attempt is made to add a normalization term.
RooTemplateProxy< RooAbsReal > _n
Number of expected events.
TObject * clone(const char *newname) const override
The TNamed class is the base class for all named ROOT classes.
Definition TNamed.h:29
Mother of all ROOT objects.
Definition TObject.h:41