setting the stage for on-the-fly mask and edge calculation

This commit is contained in:
Paul M. Sutter 2024-06-05 01:06:36 +02:00
parent 99a441013d
commit aded7a7c2c
6 changed files with 143 additions and 67 deletions

View file

@ -82,8 +82,13 @@ newSample = Sample(
# assume sample is volume-limited?
volumeLimited = True,
# HEALpix mask file
maskFile = inputDataDir+"/example_observation_mask.fits",
# HEALpix mask file - set to None to auto-compute
maskFile = None,
#maskFile = inputDataDir+"/example_observation_mask.fits",
# if maskFile blank, desired resolution for HEALpix
# mask mapping, otherwise pulled from maskFile
nsideForMask = 128,
# radial selection function (if not volume limited)
selFunFile = None,
@ -100,12 +105,12 @@ newSample = Sample(
# density of mock particles in cubic Mpc/h
# (make this as high as you can afford)
fakeDensity = 0.0000001,
fakeDensity = 0.05,
# if true, convert to comoving space using LCDM cosmology
useComoving = True,
# cosmology
# cosmology assuming flat universe
omegaM = 0.3,
)