Commit daec26ff authored by Giorgio Calderone's avatar Giorgio Calderone
Browse files

Updated

parent 51f41324
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -125,7 +125,8 @@ dict_chosen_epochs = Dict(
    :lowres   => [8,9,10,11,12,14,15,16,18,21,22,23,24,25],
    :highres  => [5, 7, 13, 17, 20],
    :limited  => [1,2,3,13],
    :all      => collect(5:26))
    :all      => collect(1:26))
deleteat!(dict_chosen_epochs[:all], 4)  #insufficient coverage in na_Hg

# Can't use resolution smaller than 150 km / s otherwise some line
# will be neglected because of spectral coverage
@@ -134,7 +135,7 @@ resolution = Dict(
    :highres => 150.)


job = :highres
job = :all
Nloop = 6
for loop in 1:Nloop
    chosen_epochs = dict_chosen_epochs[job]
@@ -197,7 +198,6 @@ end


(scale_evol, _) = deserialize("output/scale_fwhm.dat")
@gp "set grid" :-
for loop in 1:Nloop
    ss = deserialize("output/scale_$(job)_$(loop).dat")
    scale_evol = hcat(scale_evol, ss)
@@ -205,9 +205,9 @@ end
scale_evol = 2 .*
    (scale_evol[:, 2:end] .- scale_evol[:, 1:end-1]) ./
    (scale_evol[:, 2:end] .+ scale_evol[:, 1:end-1])
@gp "set grid" ylog=true :-
for epoch in 1:size(scale_evol)[1]
    @gp :- 1:Nloop scale_evol[epoch, :] "w lp notit"
@gp "set grid" :-
for epoch in chosen_epochs
    @gp :- 1:Nloop scale_evol[epoch, :] "w lp t '$epoch'"
end