Commit 31706dda authored by Paul Schütze's avatar Paul Schütze Committed by Simon Spannagel
Browse files

Fix formatting

parent 0e7bc5d7
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -181,8 +181,7 @@ namespace allpix {
        };

        bool operator()(const CarrierType& type, double probability, double timestep, double efield_mag) const override {
            return probability <
                   (1 - std::exp(-1. * timestep /
            return probability < (1 - std::exp(-1. * timestep /
                                               (type == CarrierType::ELECTRON ? tf_tau_eff_electron_->Eval(efield_mag)
                                                                              : tf_tau_eff_hole_->Eval(efield_mag))));
        };