Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion roofit/roofit/src/RooMomentMorphFuncND.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -278,8 +278,11 @@ void RooMomentMorphFuncND::initialize()

//_____________________________________________________________________________
RooMomentMorphFuncND::Grid2::Grid2(const RooMomentMorphFuncND::Grid2 &other)
: _grid(other._grid), _pdfList(other._pdfList), _pdfMap(other._pdfMap), _nref(other._nref)
: _pdfList(other._pdfList), _pdfMap(other._pdfMap), _nref(other._nref)
{
for (unsigned int i = 0; i < other._grid.size(); i++) {
_grid.push_back(other._grid[i]->clone());
}
}

//_____________________________________________________________________________
Expand Down
5 changes: 4 additions & 1 deletion roofit/roofit/src/RooMomentMorphND.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -274,8 +274,11 @@ void RooMomentMorphND::initialize()

//_____________________________________________________________________________
RooMomentMorphND::Grid2::Grid2(const RooMomentMorphND::Grid2 &other)
: _grid(other._grid), _pdfList(other._pdfList), _pdfMap(other._pdfMap), _nref(other._nref)
: _pdfList(other._pdfList), _pdfMap(other._pdfMap), _nref(other._nref)
{
for (unsigned int i = 0; i < other._grid.size(); i++) {
_grid.push_back(other._grid[i]->clone());
}
}

//_____________________________________________________________________________
Expand Down