diff --git a/src/Algorithms/ParallelTTracker.cpp b/src/Algorithms/ParallelTTracker.cpp
index 23e2a6c2fdfb97e3d3d8cec97a629ab3756b0452..3f676af0e23705ca9bf1eceb6ecf29684452dfdc 100644
--- a/src/Algorithms/ParallelTTracker.cpp
+++ b/src/Algorithms/ParallelTTracker.cpp
@@ -75,8 +75,7 @@ ParallelTTracker::ParallelTTracker(const Beamline &beamline,
     fieldEvaluationTimer_m(IpplTimings::getTimer("External field eval")),
     BinRepartTimer_m(IpplTimings::getTimer("Binaryrepart")),
     WakeFieldTimer_m(IpplTimings::getTimer("WakeField")),
-    particleMatterStatus_m(false),
-    totalParticlesInSimulation_m(0)
+    particleMatterStatus_m(false)
 {}
 
 ParallelTTracker::ParallelTTracker(const Beamline &beamline,
@@ -108,8 +107,7 @@ ParallelTTracker::ParallelTTracker(const Beamline &beamline,
     fieldEvaluationTimer_m(IpplTimings::getTimer("External field eval")),
     BinRepartTimer_m(IpplTimings::getTimer("Binaryrepart")),
     WakeFieldTimer_m(IpplTimings::getTimer("WakeField")),
-    particleMatterStatus_m(false),
-    totalParticlesInSimulation_m(0)
+    particleMatterStatus_m(false)
 {
     for (unsigned int i = 0; i < zstop.size(); ++ i) {
         stepSizes_m.push_back(dt[i], zstop[i], maxSteps[i]);
@@ -257,7 +255,6 @@ void ParallelTTracker::execute() {
     saveCavityPhases();
 
     numParticlesInSimulation_m = itsBunch_m->getTotalNum();
-    totalParticlesInSimulation_m = itsBunch_m->getTotalNum();
 
     setTime();
 
@@ -588,7 +585,6 @@ void ParallelTTracker::computeExternalFields(OrbitThreader &oth) {
             ne = itsBunch_m->destroyT();
         }
         numParticlesInSimulation_m  = itsBunch_m->getTotalNum();
-        totalParticlesInSimulation_m -= ne;
         deletedParticles_m = true;
     }
 
@@ -599,7 +595,7 @@ void ParallelTTracker::computeExternalFields(OrbitThreader &oth) {
 
     if (ne > 0) {
         msg << level1 << "* Deleted " << ne << " particles, "
-            << "remaining " << totalParticlesInSimulation_m << " particles" << endl;
+            << "remaining " << numParticlesInSimulation_m << " particles" << endl;
     }
 }
 
@@ -1390,4 +1386,4 @@ void ParallelTTracker::evenlyDistributeParticles() {
 // c-basic-offset: 4
 // indent-tabs-mode: nil
 // require-final-newline: nil
-// End:
+// End:
\ No newline at end of file
diff --git a/src/Algorithms/ParallelTTracker.h b/src/Algorithms/ParallelTTracker.h
index 52085d88bcdfd6eef964583549b423fa48d379d2..665d8d453c3b7e8fa1dace6a733f86fa3e516785 100644
--- a/src/Algorithms/ParallelTTracker.h
+++ b/src/Algorithms/ParallelTTracker.h
@@ -244,8 +244,6 @@ private:
     std::set<ParticleMatterInteractionHandler*> activeParticleMatterInteractionHandlers_m;
     bool particleMatterStatus_m;
 
-    unsigned long totalParticlesInSimulation_m;
-
     /********************** END VARIABLES ***********************************/
 
     void kickParticles(const BorisPusher &pusher);
diff --git a/src/Classic/AbsBeamline/Source.cpp b/src/Classic/AbsBeamline/Source.cpp
index 90e4f0074e9905acf6b13d11eabe70b7f380fd95..c270506e5280ae94bbb374bd69d907adac2abe3f 100644
--- a/src/Classic/AbsBeamline/Source.cpp
+++ b/src/Classic/AbsBeamline/Source.cpp
@@ -45,17 +45,13 @@ bool Source::apply(const size_t &i, const double &t, Vector_t &/*E*/, Vector_t &
     const Vector_t &P = RefPartBunch_m->P[i];
     const double &dt = RefPartBunch_m->dt[i];
     const double recpgamma = Physics::c * dt / Util::getGamma(P);
-    const double end = getElementLength();
-    if (online_m && dt < 0.0) {
-        if (R(2) > end &&
-            (R(2) + P(2) * recpgamma) < end) {
-            double frac = (end - R(2)) / (P(2) * recpgamma);
+    if (online_m && R(2) <= 0.0 && P(2) < 0.0) {
+        double frac = -R(2) / (P(2) * recpgamma);
 
-            lossDs_m->addParticle(R + frac * recpgamma * P,
-                                  P, RefPartBunch_m->ID[i], t + frac * dt, 0);
+        lossDs_m->addParticle(R + frac * recpgamma * P,
+                              P, RefPartBunch_m->ID[i], t + frac * dt, 0);
 
-            return true;
-        }
+        return true;
     }
 
     return false;
@@ -98,5 +94,4 @@ void Source::getDimensions(double &zBegin, double &zEnd) const {
 
 ElementBase::ElementType Source::getType() const {
     return SOURCE;
-}
-
+}
\ No newline at end of file