From ef3139d886b09f3a5dbf2c43029ce97726d2005f Mon Sep 17 00:00:00 2001 From: "P.M. Sutter" Date: Wed, 20 Jan 2016 09:19:16 -0600 Subject: [PATCH] bug fix in plotting routine --- python_tools/void_python_tools/voidUtil/plotUtil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_tools/void_python_tools/voidUtil/plotUtil.py b/python_tools/void_python_tools/voidUtil/plotUtil.py index 10c5a20..d4e8dfe 100644 --- a/python_tools/void_python_tools/voidUtil/plotUtil.py +++ b/python_tools/void_python_tools/voidUtil/plotUtil.py @@ -278,7 +278,7 @@ def plotVoidCells(catalog, for p in xrange(len(volume)): if (shiftedPartVoid[p,2]>(cellsMinlimz) and \ - shiftedPartVoid[p,2]<(cellsMinlimz) and \ + shiftedPartVoid[p,2]<(cellsMaxlimz) and \ radius[p]>cellsradiuslim): color = 'blue' circle = plt.Circle((shiftedPartVoid[p,0], \