cleaned up the prepare catalog script to support more general halo files

This commit is contained in:
P.M. Sutter 2012-12-01 08:46:50 -06:00
parent c781c5ee50
commit fec23b5c4f
2 changed files with 51 additions and 63 deletions

View file

@ -52,13 +52,23 @@ prefix = "md_"
#subSamples = [0.0004]
subSamples = ((0.1, 0.05, 0.01, 0.002, 0.001, 0.0004, 0.0002))
# common filename of halo files
# common filename of halo files, leave blank to ignore halos
haloFileBase = "mdr1_halos_z"
# minimum halo mass cuts to apply for the halo catalog
# use "none" to get all halos
minHaloMasses = (("none", 2e12, 1.23e13))
# locations of data in the halo catalog
haloFileMCol = 6
haloFileXCol = 0
haloFileYCol = 1
haloFileZCol = 2
haloFileVXCol = 3
haloFileVYCol = 4
haloFileVZCol = 5
haloFileColSep = ','
# adjust these two parameters given the memory contraints on your system:
# numZobovDivisions: how many sub-volumes per dimension will zobov process
# numZobovThreads: how many sub-volumes to process at once?