Commit 0563032c authored by Simon Spannagel's avatar Simon Spannagel
Browse files

GenericPropagation: do not double-sum the initial deposit's local time

parent f9a61b82
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -608,7 +608,7 @@ GenericPropagationModule::propagate(const ROOT::Math::XYZPoint& pos,
    }

    // Return the final position of the propagated charge
    return std::make_tuple(static_cast<ROOT::Math::XYZPoint>(position), initial_time + time, gain, state);
    return std::make_tuple(static_cast<ROOT::Math::XYZPoint>(position), time, gain, state);
}

void GenericPropagationModule::finalize() {