Commit f42121d8 authored by Simon Spannagel's avatar Simon Spannagel
Browse files

Projectionpropagation: use final local_time to compare against integration time

parent 9cca9f84
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -373,7 +373,7 @@ void ProjectionPropagationModule::run(Event* event) {
            auto local_time = deposit.getLocalTime() + propagation_time;

            // Only add if within requested integration time:
            if(propagation_time > integration_time_) {
            if(local_time > integration_time_) {
                LOG(DEBUG) << "Charge carriers propagation time not within integration time: "
                           << Units::display(global_time, "ns") << " global / " << Units::display(local_time, {"ns", "ps"})
                           << " local";