Skip to content
Snippets Groups Projects
Commit 51ed60d2 authored by Francesco Pannarale's avatar Francesco Pannarale
Browse files

Removing debug prints from condor prepare_BayesWaveBurst_runs.py

git-svn-id: https://svn.ligo.caltech.edu/svn/bayeswave/trunk@37 c56465c9-8126-4a4f-9d7d-ac845eff4865
parent 0d603071
No related branches found
No related tags found
No related merge requests found
......@@ -225,8 +225,6 @@ countTriggers = 0
# Trigger files with (M)IFAR in the header require the trick of adding an extra column...
correctionToCols = 0
print IFOlist
for line in triggersFile:
trigger = line.lstrip()
# If header line, figure out where the columns with the trigger times
......@@ -236,11 +234,9 @@ for line in triggersFile:
if "time for "+IFOlist[0]+" detector" in trigger:
IFO1column = trigger.split("-")[0].split("#")[1]
IFO1column = int(IFO1column) + correctionToCols
print IFO1column
if "time for "+IFOlist[1]+" detector" in trigger:
IFO2column = trigger.split("-")[0].split("#")[1]
IFO2column = int(IFO2column) + correctionToCols
print IFO2column
# If not header line or commented entry, prepare to run the analysis
else:
# This is not a comment line ==> it is a trigger ==> update trigger index
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment