added script to compare stacks and radial profiles of matched voids

This commit is contained in:
P.M. Sutter 2013-03-23 11:50:17 -05:00
parent f699ed372f
commit 8043742123
6 changed files with 184 additions and 37 deletions

View file

@ -184,9 +184,9 @@ def jobSuccessful(logFile, doneString):
if doneString in line: jobDone = True
return jobDone
def getStackSuffix(zMin, zMax, rMin, rMax, dataPortion):
def getStackSuffix(zMin, zMax, rMin, rMax, dataPortion, customLine=""):
return "z"+str(zMin)+"-"+str(zMax)+"_"+str(rMin)+"-"+str(rMax)+\
"Mpc"+"_"+dataPortion
"Mpc"+customLine+"_"+dataPortion
def my_import(name):
mod = __import__(name)