From 4ef3f945063c59ab8214f73c563211f6970aef57 Mon Sep 17 00:00:00 2001 From: Mouginot B <mouginot.baptiste@gmail.com> Date: Tue, 6 Mar 2018 14:27:26 -0600 Subject: [PATCH] woth the actual setter... --- source/include/PhysicsModels.hxx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/include/PhysicsModels.hxx b/source/include/PhysicsModels.hxx index 11f2274cf..6a821ce2f 100644 --- a/source/include/PhysicsModels.hxx +++ b/source/include/PhysicsModels.hxx @@ -101,6 +101,10 @@ class PhysicsModels : public CLASSObject { IrradiationModel* GetIM() { return fIM; } ///< return the Bateman solver PhysicsModels* GetPhysicsModels() { return this; } ///< return this + + void SetXSM(XSModel* XSM) { fXSM = XSM; } + void SetEQM(EquivalenceModel* EQM) { fEQM = EQM;} + void SetIM(IrradiationModel* IM) { fIM = IM; } private: XSModel* fXSM; ///< The XSModel (mean cross sections prediction) -- GitLab