We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
rfid
1 parent 34311bf commit 26db2f6Copy full SHA for 26db2f6
src/dataset.jl
@@ -102,6 +102,7 @@ function load_sim_dataset(;
102
# theory
103
Cℓ = nothing,
104
fiducial_θ = NamedTuple(),
105
+ rfid = nothing,
106
107
seed = nothing,
108
D = nothing,
@@ -116,6 +117,10 @@ function load_sim_dataset(;
116
117
ℓmax = round(Int,ceil(√2*fieldinfo(Flat(θpix=θpix,Nside=Nside)).nyq)+1)
118
119
# CMB Cℓs
120
+ if rfid != nothing
121
+ @warn "`rfid` will be removed in a future version. Use `fiducial_θ=(r=...,)` instead."
122
+ fiducial_θ = merge(fiducial_θ,(r=rfid,))
123
+ end
124
Aϕ₀ = get(fiducial_θ, :Aϕ, 1)
125
fiducial_θ = Base.structdiff(fiducial_θ, NamedTuple{(:Aϕ,)}) # remove Aϕ key if present
126
if Cℓ==nothing
0 commit comments