Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RooExtendedBinding.h
Go to the documentation of this file.
1/*
2 * Project: RooFit
3 *
4 * Copyright (c) 2023, CERN
5 *
6 * Redistribution and use in source and binary forms,
7 * with or without modification, are permitted according to the terms
8 * listed in LICENSE (http://roofit.sourceforge.net/license.txt)
9 */
10
11#ifndef ROOEXTENDEDBINDING
12#define ROOEXTENDEDBINDING
13
14#include "RooAbsReal.h"
15#include "RooRealProxy.h"
16#include "RooCategoryProxy.h"
17#include "RooAbsPdf.h"
18#include "RooAbsCategory.h"
19
21public:
23 RooExtendedBinding(const char *name, const char *title, RooAbsPdf& _pdf);
24 RooExtendedBinding(const RooExtendedBinding& other, const char* name=nullptr) ;
25 TObject* clone(const char* newname) const override { return new RooExtendedBinding(*this,newname); }
26
27protected:
28
30
31 double evaluate() const override ;
32
33private:
34
36};
37
38#endif
#define ClassDefOverride(name, id)
Definition Rtypes.h:341
char name[80]
Definition TGX11.cxx:110
Abstract interface for all probability density functions.
Definition RooAbsPdf.h:40
Abstract base class for objects that represent a real value and implements functionality common to al...
Definition RooAbsReal.h:59
TObject * clone(const char *newname) const override
double evaluate() const override
Evaluate this PDF / function / constant. Needs to be overridden by all derived classes.
Mother of all ROOT objects.
Definition TObject.h:41