added the new HOD parameters to config files

This commit is contained in:
P.M. Sutter 2013-02-11 14:18:39 -06:00
parent ee87db1517
commit ae6ebe986c

View file

@ -11,12 +11,12 @@ catalogDir = os.getenv("HOME")+"/workspace/Voids/catalogs/multidark/"
hodPath = os.getenv("HOME")+"/projects/Voids/hod/HOD.x" hodPath = os.getenv("HOME")+"/projects/Voids/hod/HOD.x"
# where to put the final void catalog, figures, and output logs # where to put the final void catalog, figures, and output logs
voidOutputDir = os.getenv("HOME")+"/workspace/Voids/multidark/" voidOutputDir = os.getenv("HOME")+"/workspace/Voids/multidark_nocone/"
figDir = os.getenv("PWD")+"/../figs/multidark/" figDir = os.getenv("PWD")+"/../figs/multidark_nocone/"
logDir = os.getenv("PWD")+"/../logs/multidark/" logDir = os.getenv("PWD")+"/../logs/multidark_nocone/"
# where to place the pipeline scripts # where to place the pipeline scripts
scriptDir = os.getenv("PWD")+"/multidark/" scriptDir = os.getenv("PWD")+"/multidark_nocone/"
# simulation or observation? # simulation or observation?
dataType = "simulation" dataType = "simulation"
@ -26,7 +26,7 @@ dataFormat = "multidark"
dataUnit = 1 # as multiple of Mpc/h dataUnit = 1 # as multiple of Mpc/h
# place particles on the lightcone? # place particles on the lightcone?
useLightCone = True useLightCone = False
# common filename of particle files # common filename of particle files
particleFileBase = "mdr1_particles_z" particleFileBase = "mdr1_particles_z"
@ -53,7 +53,7 @@ prefix = "md_"
# list of desired subsamples - these are in unts of h Mpc^-3! # list of desired subsamples - these are in unts of h Mpc^-3!
#subSamples = [0.0004] #subSamples = [0.0004]
subSamples = ((0.1, 0.05, 0.01, 0.002, 0.001, 0.0004, 0.000175, 0.00001)) subSamples = [0.1, 0.05, 0.01, 0.002, 0.001, 0.0004, 0.000175, 0.00001]
# common filename of halo files, leave blank to ignore halos # common filename of halo files, leave blank to ignore halos
haloFileBase = "mdr1_halos_z" haloFileBase = "mdr1_halos_z"
@ -78,15 +78,34 @@ haloFileNumComLines = 0
# numZobovDivisions: how many sub-volumes per dimension will zobov process # numZobovDivisions: how many sub-volumes per dimension will zobov process
# numZobovThreads: how many sub-volumes to process at once? # numZobovThreads: how many sub-volumes to process at once?
numZobovDivisions = 4 numZobovDivisions = 4
numZobovThreads = 4 numZobovThreads = 2
# simulation information # simulation information
numPart = 1024*1024*1024 numPart = 2048*2048*2048
lbox = 1000 # Mpc/h lbox = 1000 # Mpc/h
omegaM = 0.27 omegaM = 0.27
hubble = 0.70 hubble = 0.70
galDens = 0.000225 #galDens = 0.000225
hodParmList = [
{'name' : "dr9mid", #BOSS: Manera et al. 2012, eq. 26
'Mmin' : 0.0,
'M1' : 1.e14,
'sigma_logM' : 0.596,
'alpha' : 1.0127,
'Mcut' : 1.19399e13,
'galDens' : 0.00016,
},
{'name' : "dr7dim2",
'Mmin' : 1.99525e12,
'M1' : 3.80189e13,
'sigma_logM' : 0.21,
'alpha' : 1.12,
'Mcut' : 6.91831e11,
'galDens' : 0.02,
}
]
# END CONFIGURATION # END CONFIGURATION
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------