ATLAS Offline Software
Loading...
Searching...
No Matches
python.WriteAthenaPool Namespace Reference

Functions

 _configureWriteAthenaPool ()

Variables

list __all__ = [ 'AthenaPoolOutputStream' ]
 export the default class to create output streams

Function Documentation

◆ _configureWriteAthenaPool()

python.WriteAthenaPool._configureWriteAthenaPool ( )
protected
Helper method to configure Athena to write out POOL files 

Definition at line 24 of file WriteAthenaPool.py.

24def _configureWriteAthenaPool():
25 """ Helper method to configure Athena to write out POOL files """
26
27 from AthenaCommon.Logging import logging
28 msg = logging.getLogger( 'configureWriteAthenaPool' )
29 msg.debug( "Configuring Athena for writing POOL files..." )
30
31 # Load the basic services
32 import AthenaPoolCnvSvc.AthenaPool # noqa: F401
33
34 from AthenaCommon.AppMgr import ServiceMgr as svcMgr
35 # Switch off splitting by setting default SplitLevel to 0
36 svcMgr.AthenaPoolCnvSvc.PoolAttributes += [ "DEFAULT_SPLITLEVEL ='0'" ]
37
38 # Set as default the member-wise streaming, ROOT default
39 svcMgr.AthenaPoolCnvSvc.PoolAttributes += [ "STREAM_MEMBER_WISE = '1'" ]
40
41 # Increase default BasketSize to 32K, ROOT default (but overwritten by POOL)
42 svcMgr.AthenaPoolCnvSvc.PoolAttributes += [ "DEFAULT_BUFFERSIZE = '32000'" ]
43
44 # Set POOLContainerForm(DataHeaderForm) split level to 0
45 svcMgr.AthenaPoolCnvSvc.PoolAttributes += [ "ContainerName = 'TTree=POOLContainerForm(DataHeaderForm)'; CONTAINER_SPLITLEVEL = '0'" ]
46
47 svcMgr.AthenaPoolCnvSvc.TopLevelContainerName = ""
48 svcMgr.AthenaPoolCnvSvc.SubLevelBranchName = "<type>/<key>"
49
50 msg.debug( "Configuring Athena for writing POOL files... [DONE]" )
51 return
52

Variable Documentation

◆ __all__

list python.WriteAthenaPool.__all__ = [ 'AthenaPoolOutputStream' ]
private

export the default class to create output streams

Definition at line 22 of file WriteAthenaPool.py.