Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RooRecursiveFraction.cxx
Go to the documentation of this file.
1/*****************************************************************************
2 * Project: RooFit *
3 * Package: RooFitCore *
4 * @(#)root/roofitcore:$Id$
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
17/**
18\file RooRecursiveFraction.cxx
19\class RooRecursiveFraction
20\ingroup Roofitcore
21
22Class RooRecursiveFraction is a RooAbsReal implementation that
23calculates the plain fraction of sum of RooAddPdf components
24from a set of recursive fractions: for a given set of input fractions
25\f$ {a_i} \f$, it returns \f$ a_n * \prod_{i=0}^{n-1} (1 - a_i) \f$.
26**/
27
28#include "Riostream.h"
29#include <math.h>
30
32#include "RooAbsReal.h"
33#include "RooAbsPdf.h"
34#include "RooErrorHandler.h"
35#include "RooArgSet.h"
36#include "RooMsgService.h"
37
38using namespace std;
39
41
42
43
44////////////////////////////////////////////////////////////////////////////////
45/// Default constructor
46
48{
49
50}
51
52
53
54////////////////////////////////////////////////////////////////////////////////
55/// Constructor of plain RooAddPdf fraction from list of recursive fractions
56
57RooRecursiveFraction::RooRecursiveFraction(const char* name, const char* title, const RooArgList& fracList) :
58 RooAbsReal(name, title),
59 _list("list","First set of components",this)
60{
61 for (Int_t ifrac=fracList.getSize()-1 ; ifrac>=0 ; ifrac--) {
62 RooAbsArg* comp = fracList.at(ifrac) ;
63 if (!dynamic_cast<RooAbsReal*>(comp)) {
64 std::stringstream errorMsg;
65 errorMsg << "RooRecursiveFraction::ctor(" << GetName() << ") ERROR: component " << comp->GetName()
66 << " is not of type RooAbsReal" << endl ;
67 coutE(InputArguments) << errorMsg.str();
68 throw std::invalid_argument(errorMsg.str());
69 }
70
71 _list.add(*comp) ;
72 }
73}
74
75
76
77////////////////////////////////////////////////////////////////////////////////
78/// Copy constructor
79
81 RooAbsReal(other, name),
82 _list("list",this,other._list)
83{
84
85}
86
87
88
89////////////////////////////////////////////////////////////////////////////////
90/// Destructor
91
93{
94
95}
96
97
98
99////////////////////////////////////////////////////////////////////////////////
100/// Calculate and return value of \f$ a_n * \prod_{i=0}^{n-1} (1 - a_i) \f$.
102{
103 const RooArgSet* nset = _list.nset() ;
104
105 // Note that input coefficients are saved in reverse in this list.
106 double prod = static_cast<RooAbsReal&>(_list[0]).getVal(nset);
107
108 for (unsigned int i=1; i < _list.size(); ++i) {
109 prod *= (1 - static_cast<RooAbsReal&>(_list[i]).getVal(nset));
110 }
111
112 return prod ;
113}
114
#define coutE(a)
#define ClassImp(name)
Definition Rtypes.h:377
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
Int_t getSize() const
Return the number of elements in the collection.
Storage_t::size_type size() const
const RooArgSet * nset() const
Definition RooAbsProxy.h:52
RooAbsReal is the common abstract base class for objects that represent a real value and implements f...
Definition RooAbsReal.h:62
double getVal(const RooArgSet *normalisationSet=nullptr) const
Evaluate object.
Definition RooAbsReal.h:91
RooArgList is a container object that can hold multiple RooAbsArg objects.
Definition RooArgList.h:22
RooAbsArg * at(Int_t idx) const
Return object at given index, or nullptr if index is out of range.
Definition RooArgList.h:110
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Definition RooArgSet.h:55
bool add(const RooAbsArg &var, bool valueServer, bool shapeServer, bool silent)
Overloaded RooCollection_t::add() method insert object into set and registers object as server to own...
Class RooRecursiveFraction is a RooAbsReal implementation that calculates the plain fraction of sum o...
~RooRecursiveFraction() override
Destructor.
double evaluate() const override
Calculate and return value of .
RooRecursiveFraction()
Default constructor.
const char * GetName() const override
Returns name of object.
Definition TNamed.h:47