eliminated extranneous/deprecated parameters: zRange (for filtering voids on redshift range during pruning) and fakeDensity (for inserting boundary particles)

This commit is contained in:
Paul M. Sutter 2025-04-22 21:27:19 -04:00
parent 1b4751958f
commit 4e87854490
7 changed files with 7 additions and 86 deletions

View file

@ -48,10 +48,10 @@ logDir = os.path.join(workDir,"logs","example_observation")
figDir = os.path.join(workDir,"figs","example_observation")
# optimization: maximum number of parallel threads to use
numZobovThreads = 2
numZobovThreads = 8
# optimization: number of subdivisions of the volume
numZobovDivisions = 1
numZobovDivisions = 2
# Maximum density for merging voids
# 0 (equivalent to infinitely large value) -> Merge everything (no threshold)
@ -91,6 +91,7 @@ newSample = Sample(
# resolution for HEALpix mapping of survey edge contours
# Set to -1 to use nside from given fits file
# MUST be set if auto-computing mask
#nsideForContour = -1,
nsideForContour = 128,
# radial selection function (if not volume limited)
@ -99,9 +100,6 @@ newSample = Sample(
# max and min redshifts of galaxies in your sample
zBoundary = (0.0, 0.15),
# max and min redshifts where you want to find voids
zRange = (0.1, 0.15),
# width of redshift boundaries to flag edge galaxies
# (interpreted as boundaryWidth*(zMax-zMin))
boundaryWidth = 0.01,
@ -110,11 +108,6 @@ newSample = Sample(
# or specify your own in Mpc/h
minVoidRadius = -1,
# density of mock particles in cubic Mpc/h
# (make this as high as you can afford)
### DEPRECATED
fakeDensity = 0.05,
# if true, convert to comoving space using LCDM cosmology
useComoving = True,