diff --git a/Src/Components/FTypedLeaf.hpp b/Src/Components/FTypedLeaf.hpp index 317ddf36be36daa160fb5a9277617b564b48eff2..bea2affa83537860c4363f40745d6d21f7dc56cf 100644 --- a/Src/Components/FTypedLeaf.hpp +++ b/Src/Components/FTypedLeaf.hpp @@ -38,12 +38,10 @@ public: template<typename... Args> void push(const FPoint<FReal>& inParticlePosition, const FParticleType type, Args ... args){ if(type == FParticleType::target) { - // targets.push(inParticlePosition, args...); - targets.push(inParticlePosition, FParticleType::target, args...); + targets.push(inParticlePosition, args...); } else { - sources.push(inParticlePosition, FParticleType::source, args...); -// sources.push(inParticlePosition, args...); + sources.push(inParticlePosition, args...); } }