From 9c0d0230b9251c34c6a00cd591a8ab8ed0d32d7b Mon Sep 17 00:00:00 2001 From: "P.M. Sutter" Date: Mon, 25 Feb 2013 21:25:32 -0600 Subject: [PATCH] fixed generateCatalog to work with new pruneVoids --- pipeline/generateCatalog.py | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/pipeline/generateCatalog.py b/pipeline/generateCatalog.py index fdf3729..2b3be60 100755 --- a/pipeline/generateCatalog.py +++ b/pipeline/generateCatalog.py @@ -105,17 +105,15 @@ for sample in dataSampleList: # ------------------------------------------------------------------------- if (startCatalogStage <= 3) and (endCatalogStage >= 3) and not sample.isCombo: - for thisDataPortion in dataPortions: - print " Taking data portion:", thisDataPortion, "...", - sys.stdout.flush() + print " Taking data portions", "...", + sys.stdout.flush() - logFile = logDir+"/pruneVoids_"+sampleName+"_"+\ - thisDataPortion+".out" + logFile = logDir+"/pruneVoids_"+sampleName+".out" - PRUNE_PATH = CTOOLS_PATH+"/stacking/pruneVoids" + PRUNE_PATH = CTOOLS_PATH+"/stacking/pruneVoids" - launchPrune(sample, PRUNE_PATH, thisDataPortion=thisDataPortion, - logFile=logFile, zobovDir=zobovDir, continueRun=continueRun) + launchPrune(sample, PRUNE_PATH, + logFile=logFile, zobovDir=zobovDir, continueRun=continueRun) # ------------------------------------------------------------------------- if (startCatalogStage <= 4) and (endCatalogStage >= 4):