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

Fix leftover loop declaration

parent 2809ab60
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -331,7 +331,7 @@ double DefaultDigitizerModule::time_of_arrival(const PixelCharge& pixel_charge,
    if(pulse.isInitialized()) {
        auto bin = pulse.begin();
        double integrated_charge = 0;
        for(bin; bin != pulse.end(); bin++) {
        for(; bin != pulse.end(); bin++) {
            integrated_charge += *bin;
            if(integrated_charge >= threshold) {
                break;