|
ATLAS Offline Software
|
|
def | setPoolAttribute (**kwargs) |
|
def | setFileCompAlg (fileName=None, compAlg=None) |
|
def | setFileCompLvl (fileName=None, compLvl=None) |
|
def | setMaxBufferSize (fileName=None, bufferSize=None) |
|
def | setMinBufferEntries (fileName=None, nEntries=None) |
|
def | setTreeAutoFlush (fileName=None, treeName=None, autoFlush=None) |
|
def | setContainerSplitLevel (fileName=None, treeName=None, splitLvl=None) |
|
def | setBranchBasketSize (fileName=None, treeName=None, basketSize=None) |
|
◆ setBranchBasketSize()
def python.PoolAttributeHelper.setBranchBasketSize |
( |
|
fileName = None , |
|
|
|
treeName = None , |
|
|
|
basketSize = None |
|
) |
| |
Convenience method for setting the branch basket size for a tree in a given file.
Definition at line 76 of file PoolAttributeHelper.py.
77 """ Convenience method for setting the branch basket size for a tree in a given file. """
80 contName = f
"TTree={treeName}",
81 attrName =
"BRANCH_BASKET_SIZE",
82 attrValue = basketSize )
◆ setContainerSplitLevel()
def python.PoolAttributeHelper.setContainerSplitLevel |
( |
|
fileName = None , |
|
|
|
treeName = None , |
|
|
|
splitLvl = None |
|
) |
| |
Convenience method for setting the split level for a tree in a given file.
Definition at line 68 of file PoolAttributeHelper.py.
69 """ Convenience method for setting the split level for a tree in a given file. """
72 contName = f
"TTree={treeName}",
73 attrName =
"CONTAINER_SPLITLEVEL",
74 attrValue = splitLvl )
◆ setFileCompAlg()
def python.PoolAttributeHelper.setFileCompAlg |
( |
|
fileName = None , |
|
|
|
compAlg = None |
|
) |
| |
Convenience method for setting the compression algorithm for a given file.
Definition at line 32 of file PoolAttributeHelper.py.
33 """ Convenience method for setting the compression algorithm for a given file. """
36 attrName =
"COMPRESSION_ALGORITHM",
◆ setFileCompLvl()
def python.PoolAttributeHelper.setFileCompLvl |
( |
|
fileName = None , |
|
|
|
compLvl = None |
|
) |
| |
Convenience method for setting the compression level for a given file.
Definition at line 39 of file PoolAttributeHelper.py.
40 """ Convenience method for setting the compression level for a given file. """
43 attrName =
"COMPRESSION_LEVEL",
◆ setMaxBufferSize()
def python.PoolAttributeHelper.setMaxBufferSize |
( |
|
fileName = None , |
|
|
|
bufferSize = None |
|
) |
| |
Convenience method for setting the maximum basket buffer size
Definition at line 46 of file PoolAttributeHelper.py.
47 """ Convenience method for setting the maximum basket buffer size """
50 attrName =
"MAXIMUM_BUFFERSIZE",
51 attrValue = bufferSize )
◆ setMinBufferEntries()
def python.PoolAttributeHelper.setMinBufferEntries |
( |
|
fileName = None , |
|
|
|
nEntries = None |
|
) |
| |
Convenience method for setting the minimum basket buffer entries
Definition at line 53 of file PoolAttributeHelper.py.
54 """ Convenience method for setting the minimum basket buffer entries """
57 attrName =
"MINIMUM_BUFFERENTRIES",
58 attrValue = nEntries )
◆ setPoolAttribute()
def python.PoolAttributeHelper.setPoolAttribute |
( |
** |
kwargs | ) |
|
The low-level function that builds the requested Pool Attribure string.
Definition at line 5 of file PoolAttributeHelper.py.
6 """ The low-level function that builds the requested Pool Attribure string. """
9 fileName = kwargs.get(
'fileName')
10 contName = kwargs.get(
'contName')
11 attrName = kwargs.get(
'attrName')
12 attrValue = kwargs.get(
'attrValue')
18 if not attrName
or not attrValue:
20 result += f
"{attrName} = '{attrValue}';"
25 result = f
"ContainerName = '{contName}'; {result}"
27 result = f
"DatabaseName = '{fileName}'; {result}"
◆ setTreeAutoFlush()
def python.PoolAttributeHelper.setTreeAutoFlush |
( |
|
fileName = None , |
|
|
|
treeName = None , |
|
|
|
autoFlush = None |
|
) |
| |
Convenience method for setting the AutoFlush for a tree in a given file.
Definition at line 60 of file PoolAttributeHelper.py.
61 """ Convenience method for setting the AutoFlush for a tree in a given file. """
64 contName = f
"TTree={treeName}",
65 attrName =
"TREE_AUTO_FLUSH",
66 attrValue = autoFlush )
◆ attrName
python.PoolAttributeHelper.attrName |
◆ attrs
list python.PoolAttributeHelper.attrs = [] |
◆ attrValue
python.PoolAttributeHelper.attrValue |
def setTreeAutoFlush(fileName=None, treeName=None, autoFlush=None)
def setFileCompLvl(fileName=None, compLvl=None)
def setMinBufferEntries(fileName=None, nEntries=None)
def setPoolAttribute(**kwargs)
def setBranchBasketSize(fileName=None, treeName=None, basketSize=None)
def setFileCompAlg(fileName=None, compAlg=None)
def setContainerSplitLevel(fileName=None, treeName=None, splitLvl=None)
def setMaxBufferSize(fileName=None, bufferSize=None)