diff --git a/hydra/Decays.h b/hydra/Decays.h index 772ac7098..1a08af453 100644 --- a/hydra/Decays.h +++ b/hydra/Decays.h @@ -567,7 +567,7 @@ public : { if(this==&other) return *this; - fDecays = other.GetStoragee(); + fDecays = other.GetStorage(); return *this; } diff --git a/hydra/detail/PhaseSpace.inl b/hydra/detail/PhaseSpace.inl index a32ad0219..4f7197f78 100644 --- a/hydra/detail/PhaseSpace.inl +++ b/hydra/detail/PhaseSpace.inl @@ -223,12 +223,12 @@ PhaseSpace::operator=( PhaseSpace const& other) if(this==&other) return *this; this->fSeed = other.GetSeed(); - this->fMotherMass = other.other.GetMotherMass(); + this->fMotherMass = other.GetMotherMass(); this->fMaxWeight = other.GetMaxWeight(); this->fECM = other.GetECM(); for(size_t i=0;iffMasses[i]= other.GetMasses()[i]; + this->fMasses[i]= other.GetMasses()[i]; return *this; } @@ -246,7 +246,7 @@ PhaseSpace::operator=( PhaseSpace const& other) this->fECM = other.GetECM(); for(size_t i=0;iffMasses[i]= other.GetMasses()[i]; + this->fMasses[i]= other.GetMasses()[i]; return *this; }