41 _gamma(
"gamma",
"gamma",this),
42 _nominal(
"nominal",
"nominal",this),
52 if (phfSet.
size()==1) {
57 coutE(InputArguments) <<
"RooHistConstraint::ctor(" <<
GetName()
58 <<
") ERROR: input object must be a RooParamHistFunc" << std::endl ;
59 throw std::string(
"RooHistConstraint::ctor ERROR incongruent input arguments") ;
63 for (
int i=0 ; i<phf->_dh.numEntries() ; i++) {
65 if (phf->_dh.weight()<threshold && phf->_dh.weight() != 0.) {
66 const char* vname =
Form(
"%s_nominal_bin_%i",
GetName(),i) ;
67 auto var = std::make_unique<RooRealVar>(vname,vname,0,1.E30);
68 var->setVal(phf->_dh.weight()) ;
69 var->setConstant(
true);
71 auto gamma =
static_cast<RooRealVar*
>(phf->_p.at(i));
72 if (var->getVal() > 0.0) {
73 gamma->setConstant(
false);
87 std::vector<RooParamHistFunc*> phvec ;
89 std::string bin0_name ;
90 for (
const auto arg : phfSet) {
94 phvec.push_back(phfComp) ;
96 nbins = phfComp->_p.size() ;
97 bin0_name = phfComp->_p.at(0)->GetName() ;
98 gammaSet.
add(phfComp->_p) ;
100 if (
int(phfComp->_p.size())!=nbins) {
101 coutE(InputArguments) <<
"RooHistConstraint::ctor(" <<
GetName()
102 <<
") ERROR: incongruent input arguments: all input RooParamHistFuncs should have same #bins" << std::endl ;
103 throw std::string(
"RooHistConstraint::ctor ERROR incongruent input arguments") ;
105 if (bin0_name != phfComp->_p.at(0)->GetName()) {
106 coutE(InputArguments) <<
"RooHistConstraint::ctor(" <<
GetName()
107 <<
") ERROR: incongruent input arguments: all input RooParamHistFuncs should have the same bin parameters.\n"
108 <<
"Previously found " << bin0_name <<
", now found " << phfComp->_p.at(0)->GetName() <<
".\n"
109 <<
"Check that the right RooParamHistFuncs have been passed to this RooHistConstraint." << std::endl;
110 throw std::string(
"RooHistConstraint::ctor ERROR incongruent input arguments") ;
115 coutW(InputArguments) <<
"RooHistConstraint::ctor(" <<
GetName()
116 <<
") WARNING: ignoring input argument " << arg->GetName() <<
" which is not of type RooParamHistFunc" << std::endl;
123 for (
int i=0 ; i<nbins ; i++) {
126 for (
const auto phfunc : phvec) {
127 sumVal += phfunc->getNominal(i);
130 if (sumVal<threshold && sumVal != 0.) {
132 const char* vname =
Form(
"%s_nominal_bin_%i",
GetName(),i) ;
133 auto var = std::make_unique<RooRealVar>(vname,vname,0,1000);
136 for(
auto const& elem : phvec) {
137 sumVal2 += elem->getNominal(i) ;
139 var->setVal(sumVal2) ;
140 var->setConstant(
true) ;
142 vname =
Form(
"%s_nominal_error_bin_%i",
GetName(),i) ;
165 _gamma(
"gamma",this,other._gamma),
166 _nominal(
"nominal",this,other._nominal),
167 _relParam(other._relParam)
180 double gammaVal = gamma.getVal();
181 const int nomVal =
static_cast<int>(nominal.getVal());
190 }
else if (nomVal > 0) {
191 coutE(Eval) <<
"ERROR in RooHistConstraint: gamma=0 and nom>0" << std::endl;
206 double gammaVal = gamma.getVal();
207 const int nomVal =
static_cast<int>(nominal.getVal());
214 const double logPoisson = nomVal * log(gammaVal) - gammaVal - std::lgamma(nomVal + 1);
216 }
else if (nomVal > 0) {
217 coutE(Eval) <<
"ERROR in RooHistConstraint: gamma=0 and nom>0" << std::endl;
char * Form(const char *fmt,...)
Formats a string in a circular formatting buffer.
virtual bool add(const RooAbsArg &var, bool silent=false)
Add the specified argument to list.
Storage_t::size_type size() const
RooAbsArg * first() const
Abstract interface for all probability density functions.
Abstract base class for objects that represent a real value and implements functionality common to al...
RooAbsArg * at(Int_t idx) const
Return object at given index, or nullptr if index is out of range.
RooArgSet is a container object that can hold multiple RooAbsArg objects.
bool addOwned(RooAbsArg &var, bool silent=false) override
Overloaded RooCollection_t::addOwned() method insert object into owning set and registers object as s...
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...
The RooHistConstraint implements constraint terms for a binned PDF with statistical uncertainties.
double getLogVal(const RooArgSet *set=nullptr) const override
Return the log of the current value with given normalization An error message is printed if the argum...
double evaluate() const override
Evaluate this PDF / function / constant. Needs to be overridden by all derived classes.
A histogram function that assigns scale parameters to every bin.
Variable that can be changed from the outside.
const char * GetName() const override
Returns name of object.
double poisson_pdf(unsigned int n, double mu)
Probability density function of the Poisson distribution.
static uint64_t sum(uint64_t i)