Skip to content

Commit 86cf6b6

Browse files
committed
More icGen
1 parent fd62507 commit 86cf6b6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/analysis/compute_quantities/aggregators.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -156,8 +156,8 @@ function scatterQty(
156156

157157
qty_01, qty_02 = RATIO_SPLITS[quantity]
158158

159-
scatter_qty_01 = scatterQty(data_dict, qty_01)
160-
scatter_qty_02 = scatterQty(data_dict, qty_02)
159+
scatter_qty_01 = scatterQty(data_dict, qty_01; icGen)
160+
scatter_qty_02 = scatterQty(data_dict, qty_02; icGen)
161161

162162
scatter_qty = similar(scatter_qty_01, Float64)
163163

@@ -513,8 +513,8 @@ function integrateQty(
513513

514514
qty_01, qty_02 = RATIO_SPLITS[quantity]
515515

516-
integrated_qty_01 = integrateQty(data_dict, qty_01)
517-
integrated_qty_02 = integrateQty(data_dict, qty_02)
516+
integrated_qty_01 = integrateQty(data_dict, qty_01; icGen)
517+
integrated_qty_02 = integrateQty(data_dict, qty_02; icGen)
518518

519519
if iszero(integrated_qty_02)
520520
integrated_qty = NaN
@@ -579,7 +579,7 @@ function integrateQty(
579579

580580
elseif quantity == :molecular_stellar_fraction
581581

582-
m_H2 = integrateQty(data_dict, :ode_molecular_stellar_mass)
582+
m_H2 = integrateQty(data_dict, :ode_molecular_stellar_mass; icGen)
583583
m_star = integrateQty(data_dict, :stellar_mass)
584584

585585
m_tot = m_H2 + m_star

0 commit comments

Comments
 (0)