renamed tolerance parameter to better reflect its function

This commit is contained in:
Paul M. Sutter 2024-06-04 15:46:23 +02:00
parent 4f78bb445b
commit 99a441013d
5 changed files with 12 additions and 18 deletions

View file

@ -468,7 +468,7 @@ def launchZobov(sample, binPath, zobovDir=None, logDir=None, continueRun=None,
def launchPrune(sample, binPath,
summaryFile=None, logFile=None, zobovDir=None,
continueRun=None, useComoving=False, mergingThreshold=0.2,
highRedshiftTolerance=1.0):
boundaryTolerance=1.0):
sampleName = sample.fullName
@ -517,7 +517,7 @@ def launchPrune(sample, binPath,
cmd += " --partAdj=" + zobovDir+"/adj_"+str(sampleName)+".dat"
cmd += " --extraInfo=" + zobovDir+"/zobov_slice_"+str(sampleName)+\
".par"
cmd += " --tolerance=" + str(highRedshiftTolerance)
cmd += " --tolerance=" + str(boundaryTolerance)
cmd += " --mockIndex=" + str(mockIndex)
cmd += " --maxCentralDen=" + str(maxDen)
cmd += " --zMin=" + str(sample.zRange[0])