From 23fef9fd179877a7d25315c739fda2bca9f59901 Mon Sep 17 00:00:00 2001 From: Adrien Matta <matta@lpccaen.in2p3.fr> Date: Thu, 5 Sep 2024 11:35:05 +0200 Subject: [PATCH] * fixing compilation --- NPLib/Physics/NPReaction.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/NPLib/Physics/NPReaction.h b/NPLib/Physics/NPReaction.h index 71388278f..7200a8edf 100644 --- a/NPLib/Physics/NPReaction.h +++ b/NPLib/Physics/NPReaction.h @@ -243,7 +243,7 @@ namespace NPL { // Return Excitation Energy double ReconstructRelativistic(double EnergyLab, double ThetaLab, double PhiLab = 0); - + // Return Lorentz Vector of Heavy Recoil after reaction TLorentzVector LorentzAfterReaction(double EnergyLab, double ThetaLab, double PhiLab = 0); @@ -261,6 +261,11 @@ namespace NPL { void SetParticle3(double EnergyLab, double ThetaLab); + void SetParticle1(Beam p) { fParticle1 = p; }; + void SetParticle2(Particle p) { fParticle2 = p; }; + void SetParticle3(Particle p) { fParticle3 = p; }; + void SetParticle4(Particle p) { fParticle4 = p; }; + TGraph* GetKinematicLine3(double AngleStep_CM = 1); TGraph* GetKinematicLine4(double AngleStep_CM = 1); TGraph* GetBrhoLine3(double AngleStep_CM = 1); -- GitLab