From a36336a395367350ce8382a69f44473690b705a9 Mon Sep 17 00:00:00 2001 From: Oliver Kliebisch Date: Sat, 17 Apr 2021 21:59:15 +0200 Subject: [PATCH] Remove debug line and register version --- src/profiles.jl | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/profiles.jl b/src/profiles.jl index b819628..7083eed 100644 --- a/src/profiles.jl +++ b/src/profiles.jl @@ -486,9 +486,7 @@ function hartmann_tran_lineshape( # find a suitable bisection for integrating the data into the vector ind_lo = searchsortedfirst(ν, ν_0 - ν_wing_val) - ind_hi = searchsortedlast(ν, ν_0 + ν_wing_val) - - #println(join((factor, ν_0, ν_VC, γ_D, γ_0, γ_2, Δ_0, Δ_2, η), ", ")) + ind_hi = searchsortedlast(ν, ν_0 + ν_wing_val) hartmann_tran_profile!(out_cache, @view(ν[ind_lo:ind_hi]), ν_0, ν_VC, γ_D, γ_0, γ_2, Δ_0, Δ_2, η) for i = 1:(ind_hi - ind_lo + 1)