Skip to content
Snippets Groups Projects

Remove DEBUG output in bytestream CA config

Merged Frank Berghaus requested to merge berghaus/athena:bytestream_output into master
All threads resolved!
1 file
+ 0
3
Compare changes
  • Side-by-side
  • Inline
@@ -130,7 +130,6 @@ def ByteStreamWriteCfg(flags, type_names=None):
@@ -130,7 +130,6 @@ def ByteStreamWriteCfg(flags, type_names=None):
OutputDirectory="./",
OutputDirectory="./",
AppName="Athena",
AppName="Athena",
RunNumber=all_runs.pop(),
RunNumber=all_runs.pop(),
OutputLevel=2,
)
)
result.addService(event_storage_output)
result.addService(event_storage_output)
# release variable depends the way the env is configured
# release variable depends the way the env is configured
@@ -139,7 +138,6 @@ def ByteStreamWriteCfg(flags, type_names=None):
@@ -139,7 +138,6 @@ def ByteStreamWriteCfg(flags, type_names=None):
bytestream_conversion = comp_factory.ByteStreamCnvSvc(
bytestream_conversion = comp_factory.ByteStreamCnvSvc(
name="ByteStreamCnvSvc",
name="ByteStreamCnvSvc",
ByteStreamOutputSvcList=[event_storage_output.getName()],
ByteStreamOutputSvcList=[event_storage_output.getName()],
OutputLevel=2,
)
)
result.addService(bytestream_conversion)
result.addService(bytestream_conversion)
@@ -148,7 +146,6 @@ def ByteStreamWriteCfg(flags, type_names=None):
@@ -148,7 +146,6 @@ def ByteStreamWriteCfg(flags, type_names=None):
EvtConversionSvc=bytestream_conversion.name,
EvtConversionSvc=bytestream_conversion.name,
OutputFile="ByteStreamEventStorageOutputSvc",
OutputFile="ByteStreamEventStorageOutputSvc",
ItemList=type_names if type_names else list(),
ItemList=type_names if type_names else list(),
OutputLevel=2,
)
)
result.addEventAlgo(output_stream, primary=True)
result.addEventAlgo(output_stream, primary=True)
Loading