Skip to content
Snippets Groups Projects
Commit 865c0449 authored by Gregory Ashton's avatar Gregory Ashton
Browse files

Merge branch 'only-use-non-recalib-in-tau-calc' into 'master'

Ignore calibration in the tau calculation

See merge request !48
parents eb968e50 ec326ce1
No related branches found
No related tags found
1 merge request!48Ignore calibration in the tau calculation
Pipeline #111367 passed
......@@ -398,7 +398,9 @@ with MPIPool() as pool:
samples = sampler.chain[0, :, : sampler.time, :]
taus = []
for ii in range(input_args.nwalkers):
for jj in range(ndim):
for jj, key in enumerate(sampling_keys):
if "recalib" in key:
continue
try:
taus.append(
emcee.autocorr.integrated_time(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment