From 1d155e7e6228ed5efec4bd40bef397e861024440 Mon Sep 17 00:00:00 2001 From: davidebrundu Date: Fri, 31 Oct 2025 20:58:40 +0100 Subject: [PATCH] fix some typos --- hydra/Decays.h | 2 +- hydra/detail/PhaseSpace.inl | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) 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; }