Skip to content
Snippets Groups Projects
Commit c86923d6 authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

Merge branch 'cbk/digifilter' into 'master'

Disable digitization filtering if not needed

See merge request atlas/athena!35331
parents 3205435f 7d319b93
No related branches found
No related tags found
No related merge requests found
...@@ -126,7 +126,8 @@ if DetFlags.writeRDOPool.any_on(): ...@@ -126,7 +126,8 @@ if DetFlags.writeRDOPool.any_on():
streamRDO = AthenaPoolOutputStream("StreamRDO", athenaCommonFlags.PoolRDOOutput.get_Value(), asAlg=True, eventInfoKey=eventInfoKey) streamRDO = AthenaPoolOutputStream("StreamRDO", athenaCommonFlags.PoolRDOOutput.get_Value(), asAlg=True, eventInfoKey=eventInfoKey)
from Digitization.DigiOutput import getStreamRDO_ItemList from Digitization.DigiOutput import getStreamRDO_ItemList
streamRDO.ItemList = getStreamRDO_ItemList(logDigitization_flags) streamRDO.ItemList = getStreamRDO_ItemList(logDigitization_flags)
streamRDO.AcceptAlgs += [ digitizationFlags.digiSteeringConf.get_Value() ] if digitizationFlags.digiSteeringConf.get_Value() == 'TestTruthJetFilter':
streamRDO.AcceptAlgs += [ digitizationFlags.digiSteeringConf.get_Value() ]
streamRDO.OutputFile = athenaCommonFlags.PoolRDOOutput() streamRDO.OutputFile = athenaCommonFlags.PoolRDOOutput()
ServiceMgr.AthenaPoolCnvSvc.PoolAttributes += [ "DatabaseName = '" + athenaCommonFlags.PoolRDOOutput() + "'; COMPRESSION_ALGORITHM = '2'" ] ServiceMgr.AthenaPoolCnvSvc.PoolAttributes += [ "DatabaseName = '" + athenaCommonFlags.PoolRDOOutput() + "'; COMPRESSION_ALGORITHM = '2'" ]
ServiceMgr.AthenaPoolCnvSvc.PoolAttributes += [ "DatabaseName = '" + athenaCommonFlags.PoolRDOOutput() + "'; COMPRESSION_LEVEL = '1'" ] ServiceMgr.AthenaPoolCnvSvc.PoolAttributes += [ "DatabaseName = '" + athenaCommonFlags.PoolRDOOutput() + "'; COMPRESSION_LEVEL = '1'" ]
......
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