I've found differences in the EBL absorption(with Saldana-Lopez model) between agnpy and the data released by Saldana-Lopez.
Then I checked the function load_absorption_table and found that all the models use np.unique() to return the sorted unique elements of an array. However, we don't need to sort data in Saldana-Lopez model.
I've found differences in the EBL absorption(with Saldana-Lopez model) between
agnpy
and the data released by Saldana-Lopez.Then I checked the function
load_absorption_table
and found that all the models usenp.unique()
to return the sorted unique elements of an array. However, we don't need to sort data in Saldana-Lopez model.