Skip to content
Snippets Groups Projects
Commit 1d919775 authored by Jonas Rembser's avatar Jonas Rembser
Browse files

[RF] Fix copy-paste error in RooAddModel constructor and modernization

* replace wrong `dynamic_cast<RooAbsReal*>` with
  `dynamic_cast<RooAbsPdf*>` (presumably a copy-paste error)

* use `TIter` and range-based loop instead of `TIterator*`

* avoid C-style casts

* replace `assert(0)` with `std::runtime_error`, as asserts only work in
  debug buils

* replace one orrurence of `coef->GetName()` with `pdf->GetName()`,
  which was probably also a copy-paste error

This fixes the following warning in gcc11:

```
../roofit/roofitcore/src/RooAddModel.cxx: In constructor ‘RooAddModel::RooAddModel(const char*, const char*, const RooArgList&, const RooArgList&, Bool_t)’:
../roofit/roofitcore/src/RooAddModel.cxx:125:106: warning: ‘this’ pointer is null [-Wnonnull]
  125 |       coutE(InputArguments) << "RooAddModel::RooAddModel(" << GetName() << ") pdf " << pdf->GetName() << " is not of type RooAbsPdf, ignored" << endl ;
```
parent 6ddcc0d1
No related branches found
No related tags found
No related merge requests found
...@@ -86,7 +86,7 @@ RooAddModel::RooAddModel() : ...@@ -86,7 +86,7 @@ RooAddModel::RooAddModel() :
/// All PDFs must inherit from RooAbsPdf. All coefficients must inherit from RooAbsReal. /// All PDFs must inherit from RooAbsPdf. All coefficients must inherit from RooAbsReal.
RooAddModel::RooAddModel(const char *name, const char *title, const RooArgList& inPdfList, const RooArgList& inCoefList, Bool_t ownPdfList) : RooAddModel::RooAddModel(const char *name, const char *title, const RooArgList& inPdfList, const RooArgList& inCoefList, Bool_t ownPdfList) :
RooResolutionModel(name,title,((RooResolutionModel*)inPdfList.at(0))->convVar()), RooResolutionModel(name,title,(static_cast<RooResolutionModel*>(inPdfList.at(0)))->convVar()),
_refCoefNorm("!refCoefNorm","Reference coefficient normalization set",this,kFALSE,kFALSE), _refCoefNorm("!refCoefNorm","Reference coefficient normalization set",this,kFALSE,kFALSE),
_refCoefRangeName(0), _refCoefRangeName(0),
_projectCoefs(kFALSE), _projectCoefs(kFALSE),
...@@ -99,29 +99,32 @@ RooAddModel::RooAddModel(const char *name, const char *title, const RooArgList& ...@@ -99,29 +99,32 @@ RooAddModel::RooAddModel(const char *name, const char *title, const RooArgList&
_allExtendable(kFALSE) _allExtendable(kFALSE)
{ {
if (inPdfList.getSize()>inCoefList.getSize()+1) { if (inPdfList.getSize()>inCoefList.getSize()+1) {
coutE(InputArguments) << "RooAddModel::RooAddModel(" << GetName() std::stringstream msgSs;
<< ") number of pdfs and coefficients inconsistent, must have Npdf=Ncoef or Npdf=Ncoef+1" << endl ; msgSs << "RooAddModel::RooAddModel(" << GetName()
assert(0) ; << ") number of pdfs and coefficients inconsistent, must have Npdf=Ncoef or Npdf=Ncoef+1";
const std::string msgStr = msgSs.str();
coutE(InputArguments) << msgStr << endl;
throw std::runtime_error(msgStr);
} }
// Constructor with N PDFs and N or N-1 coefs // Constructor with N PDFs and N or N-1 coefs
TIterator* pdfIter = inPdfList.createIterator() ; auto pdfIter = inPdfList.fwdIterator() ;
TIterator* coefIter = inCoefList.createIterator() ;
RooAbsPdf* pdf ;
RooAbsReal* coef ;
while((coef = (RooAbsPdf*)coefIter->Next())) { for(auto const& coef : inCoefList) {
pdf = (RooAbsPdf*) pdfIter->Next() ; auto pdf = pdfIter.next() ;
if (!pdf) { if (!pdf) {
coutE(InputArguments) << "RooAddModel::RooAddModel(" << GetName() std::stringstream msgSs;
<< ") number of pdfs and coefficients inconsistent, must have Npdf=Ncoef or Npdf=Ncoef+1" << endl ; msgSs << "RooAddModel::RooAddModel(" << GetName()
assert(0) ; << ") number of pdfs and coefficients inconsistent, must have Npdf=Ncoef or Npdf=Ncoef+1";
const std::string msgStr = msgSs.str();
coutE(InputArguments) << msgStr << endl;
throw std::runtime_error(msgStr);
} }
if (!dynamic_cast<RooAbsReal*>(coef)) { if (!dynamic_cast<RooAbsReal*>(coef)) {
coutE(InputArguments) << "RooAddModel::RooAddModel(" << GetName() << ") coefficient " << coef->GetName() << " is not of type RooAbsReal, ignored" << endl ; coutE(InputArguments) << "RooAddModel::RooAddModel(" << GetName() << ") coefficient " << coef->GetName() << " is not of type RooAbsReal, ignored" << endl ;
continue ; continue ;
} }
if (!dynamic_cast<RooAbsReal*>(pdf)) { if (!dynamic_cast<RooAbsPdf*>(pdf)) {
coutE(InputArguments) << "RooAddModel::RooAddModel(" << GetName() << ") pdf " << pdf->GetName() << " is not of type RooAbsPdf, ignored" << endl ; coutE(InputArguments) << "RooAddModel::RooAddModel(" << GetName() << ") pdf " << pdf->GetName() << " is not of type RooAbsPdf, ignored" << endl ;
continue ; continue ;
} }
...@@ -129,20 +132,19 @@ RooAddModel::RooAddModel(const char *name, const char *title, const RooArgList& ...@@ -129,20 +132,19 @@ RooAddModel::RooAddModel(const char *name, const char *title, const RooArgList&
_coefList.add(*coef) ; _coefList.add(*coef) ;
} }
pdf = (RooAbsPdf*) pdfIter->Next() ; if (auto pdf = pdfIter.next()) {
if (pdf) { if (!dynamic_cast<RooAbsPdf*>(pdf)) {
if (!dynamic_cast<RooAbsReal*>(pdf)) { std::stringstream msgSs;
coutE(InputArguments) << "RooAddModel::RooAddModel(" << GetName() << ") last pdf " << coef->GetName() << " is not of type RooAbsPdf, fatal error" << endl ; msgSs << "RooAddModel::RooAddModel(" << GetName() << ") last pdf " << pdf->GetName() << " is not of type RooAbsPdf, fatal error";
assert(0) ; const std::string msgStr = msgSs.str();
coutE(InputArguments) << msgStr << endl;
throw std::runtime_error(msgStr);
} }
_pdfList.add(*pdf) ; _pdfList.add(*pdf) ;
} else { } else {
_haveLastCoef=kTRUE ; _haveLastCoef=kTRUE ;
} }
delete pdfIter ;
delete coefIter ;
_coefCache = new Double_t[_pdfList.getSize()] ; _coefCache = new Double_t[_pdfList.getSize()] ;
_coefErrCount = _errorCount ; _coefErrCount = _errorCount ;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment