Skip to content
Snippets Groups Projects
Commit 498b1b8a authored by Aaron Viets's avatar Aaron Viets
Browse files

pcal2darm_timeseries.py: Removed unnecessary print statements.

parent 171928dd
No related branches found
No related tags found
No related merge requests found
...@@ -222,11 +222,6 @@ def pcal2darm(pipeline, name): ...@@ -222,11 +222,6 @@ def pcal2darm(pipeline, name):
# Interleave # Interleave
magnitude_and_phase = calibration_parts.mkinterleave(pipeline, [magnitude, phase]) magnitude_and_phase = calibration_parts.mkinterleave(pipeline, [magnitude, phase])
# Write to file # Write to file
print 'IFO = %s' % ifo
print 'channel = %s' % channel
print 'options.pcal_channel_name = %s' % options.pcal_channel_name
print 'frequencies[i] = %0.1f' % frequencies[i]
print "%s_%s_over_%s_at_%0.1fHz.txt" % (ifo, channel, options.pcal_channel_name, frequencies[i])
pipeparts.mknxydumpsink(pipeline, magnitude_and_phase, "%s_%s_over_%s_at_%0.1fHz.txt" % (ifo, channel, options.pcal_channel_name, frequencies[i])) pipeparts.mknxydumpsink(pipeline, magnitude_and_phase, "%s_%s_over_%s_at_%0.1fHz.txt" % (ifo, channel, options.pcal_channel_name, frequencies[i]))
# #
......
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