Skip to content

Commit

Permalink
Merge pull request #65 from SWIFTSIM/extend_z_for_BH_data
Browse files Browse the repository at this point in the history
Make BH data appear at high z
  • Loading branch information
JBorrow authored Feb 17, 2021
2 parents 73c4fa5 + 25c9b9b commit f8175de
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@
bibcode = "2013ApJ...764..184M"
name = "Black hole mass - stellar mass relation from 36 local galaxies."
plot_as = "points"
# We purposely make this data show up not only a z=0 but also at higher z
redshift_lower, redshift_upper = -0.1, 3.1
redshift = 0.0
h = h_sim

Expand All @@ -66,7 +68,7 @@
processed.associate_citation(citation, bibcode)
processed.associate_name(name)
processed.associate_comment(comment)
processed.associate_redshift(redshift)
processed.associate_redshift(redshift, redshift_lower, redshift_upper)
processed.associate_plot_as(plot_as)
processed.associate_cosmology(cosmology)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@
bibcode = "2013ApJ...764..184M"
name = "Fit to the black hole mass - stellar mass relation from 72 local galaxies."
plot_as = "line"
# We purposely make this data show up not only a z=0 but also at higher z
redshift_lower, redshift_upper = -0.1, 3.1
redshift = 0.0
h = h_sim

Expand All @@ -50,7 +52,7 @@
processed.associate_citation(citation, bibcode)
processed.associate_name(name)
processed.associate_comment(comment)
processed.associate_redshift(redshift)
processed.associate_redshift(redshift, redshift_lower, redshift_upper)
processed.associate_plot_as(plot_as)
processed.associate_cosmology(cosmology)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@
f"{num_galaxies} local {output_name}s."
)
plot_as = "points"
# We purposely make this data show up not only a z=0 but also at higher z
redshift_lower, redshift_upper = -0.1, 3.1
redshift = 0.0
h = h_sim

Expand All @@ -95,7 +97,7 @@
processed.associate_citation(citation, bibcode)
processed.associate_name(name)
processed.associate_comment(comment)
processed.associate_redshift(redshift)
processed.associate_redshift(redshift, redshift_lower, redshift_upper)
processed.associate_plot_as(plot_as)
processed.associate_cosmology(cosmology)

Expand Down

0 comments on commit f8175de

Please sign in to comment.