more consistent handling of redshift bounaries in pruneVoids

This commit is contained in:
P.M. Sutter 2012-11-19 07:51:01 -06:00
parent 80c2b7f603
commit 06c8ddc26e
3 changed files with 24 additions and 9 deletions

View file

@ -271,8 +271,8 @@ def launchPrune(sample, binPath, thisDataPortion=None,
cmd += " --dataPortion=" + thisDataPortion
cmd += " --mockIndex=" + str(mockIndex)
cmd += " --maxCentralDen=" + str(maxDen)
cmd += " --zMin=" + str(sample.zBoundary[0])
cmd += " --zMax=" + str(sample.zBoundary[1])
cmd += " --zMin=" + str(sample.zRange[0])
cmd += " --zMax=" + str(sample.zRange[1])
cmd += " --rMin=" + str(sample.minVoidRadius)
cmd += " --numVoids=" + str(numVoids)
cmd += observationLine