From d14a59d3866b80082bafd5e5182d6f181d18c240 Mon Sep 17 00:00:00 2001 From: Aasim Z Jan <58118417+AasimZahoor@users.noreply.github.com> Date: Thu, 9 Jul 2026 13:50:15 -0500 Subject: [PATCH] plot_posterior_corner.py: commented out special range for q, eta and chi_eff, allowing corner to determine the nrages. This is to enable, when using plot_posterior_corner.py, to visually compare posteriors from different iterations and visually assess convergence. This will also help when the posterior is localized. --- MonteCarloMarginalizeCode/Code/bin/plot_posterior_corner.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/MonteCarloMarginalizeCode/Code/bin/plot_posterior_corner.py b/MonteCarloMarginalizeCode/Code/bin/plot_posterior_corner.py index f6c2b4666..1f4f8fc44 100755 --- a/MonteCarloMarginalizeCode/Code/bin/plot_posterior_corner.py +++ b/MonteCarloMarginalizeCode/Code/bin/plot_posterior_corner.py @@ -478,11 +478,11 @@ def _materialize_plugin_columns(samples, source_label=""): lalsimutils.tex_dictionary[name] = "$"+new_str+"$" # should be able to ASSIGN NEW NAMES, not restrict special_param_ranges = { - 'q':[0,1], - 'eta':[0,0.25], + #'q':[0,1], + #'eta':[0,0.25], 'a1z':[-opts.chi_max,opts.chi_max], 'a2z':[-opts.chi_max,opts.chi_max], - 'chi_eff': [-opts.chi_max,opts.chi_max], # this can backfire for very narrow constraints + #'chi_eff': [-opts.chi_max,opts.chi_max], # this can backfire for very narrow constraints 'lambda1':[0,4000], 'lambda2':[0,4000], 'chi_pavg':[0,2],