We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 341a8aa + bb3b749 commit 78fec1dCopy full SHA for 78fec1d
hydra/FCN.h
@@ -395,6 +395,7 @@ class FCN<Estimator<PDF,Iterator>>: public ROOT::Minuit2::FCNBase
395
396
FCN(FCN<Estimator<PDF,Iterator>> const& other):
397
ROOT::Minuit2::FCNBase(other),
398
+ fDataSize(other.GetDataSize()),
399
fPDF(other.GetPDF()),
400
fBegin(other.GetBegin()),
401
fEnd(other.GetEnd()),
@@ -412,6 +413,7 @@ class FCN<Estimator<PDF,Iterator>>: public ROOT::Minuit2::FCNBase
412
413
if( this==&other ) return this;
414
415
ROOT::Minuit2::FCNBase::operator=(other);
416
+ fDataSize = other.GetDataSize();
417
fPDF = other.GetPDF();
418
fBegin = other.GetBegin();
419
fEnd = other.GetEnd();
0 commit comments