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

Functions

 TileOFCCondAlgCfg (flags, **kwargs)
 TileCondToolOfcCoolCfg (flags, **kwargs)
 TileCondToolOfcCfg (flags, **kwargs)

Variables

 flags = initConfigFlags()
 Files
 RunType
 acc = ComponentAccumulator()
 ofcCoolTool = acc.popToolsAndMerge( TileCondToolOfcCoolCfg(flags) )
 ofcTool = acc.popToolsAndMerge( TileCondToolOfcCfg(flags) )
 withDetails
 True
 summariseProps

Detailed Description

Define methods to construct configured Tile OFC conditions tool and algorithm

Function Documentation

◆ TileCondToolOfcCfg()

python.TileOFCConfig.TileCondToolOfcCfg ( flags,
** kwargs )
Return component accumulator with configured Tile OFC conditions algorithm

Arguments:
    flags  -- Athena configuration flags
Keyword arguments:
    OfcType -- type of Tile OFC. Defaults to OF2. Possible OFC types: OF1, OF2.
    OptFilterDeltaCorrelation -- flag to use delta correlation. Defaults to False.
                                 If it is False auto correlation obtained from data will be used.
    TileCondToolPulseShape - Tile conditions tool to get pulse shape.
                             Provided it will be used. By default new one will be configured.
    TileCondToolAutoCr - Tile conditions tool to get auto correlation.
                         Provided it will be used. By default new one will be configured.

Definition at line 101 of file TileOFCConfig.py.

101def TileCondToolOfcCfg(flags, **kwargs):
102 """Return component accumulator with configured Tile OFC conditions algorithm
103
104 Arguments:
105 flags -- Athena configuration flags
106 Keyword arguments:
107 OfcType -- type of Tile OFC. Defaults to OF2. Possible OFC types: OF1, OF2.
108 OptFilterDeltaCorrelation -- flag to use delta correlation. Defaults to False.
109 If it is False auto correlation obtained from data will be used.
110 TileCondToolPulseShape - Tile conditions tool to get pulse shape.
111 Provided it will be used. By default new one will be configured.
112 TileCondToolAutoCr - Tile conditions tool to get auto correlation.
113 Provided it will be used. By default new one will be configured.
114 """
115
116 acc = ComponentAccumulator()
117
118 optFilterDeltaCorrelation = kwargs.get('OptFilterDeltaCorrelation', False)
119
120 from TileConditions.TileInfoLoaderConfig import TileInfoLoaderCfg
121 acc.merge( TileInfoLoaderCfg(flags) )
122
123 if 'TileCondToolPulseShape' in kwargs:
124 pulseShapeTool = kwargs['TileCondToolPulseShape']
125 else:
126 from TileConditions.TilePulseShapeConfig import TileCondToolPulseShapeCfg
127 pulseShapeTool = acc.popToolsAndMerge( TileCondToolPulseShapeCfg(flags) )
128
129 if optFilterDeltaCorrelation:
130 autoCorrelationTool = None
131 else:
132 if 'TileCondToolAutoCr' in kwargs:
133 autoCorrelationTool = kwargs['TileCondToolAutoCr']
134 else:
135 from TileConditions.TileAutoCorrelationConfig import TileCondToolAutoCrCfg
136 autoCorrelationTool = acc.popToolsAndMerge( TileCondToolAutoCrCfg(flags) )
137
138 name = 'TileCondToolOfc'
139 TileCondToolOfc=CompFactory.TileCondToolOfc
140 acc.setPrivateTools( TileCondToolOfc(name,
141 OptFilterDeltaCorrelation = optFilterDeltaCorrelation,
142 TileCondToolPulseShape = pulseShapeTool,
143 TileCondToolAutoCr = autoCorrelationTool) )
144
145 return acc
146
147
148
Calculates OFCs on the fly using pulse shapes and A/C matrix from database.

◆ TileCondToolOfcCoolCfg()

python.TileOFCConfig.TileCondToolOfcCoolCfg ( flags,
** kwargs )
Return component accumulator with configured Tile OFC conditions algorithm

Arguments:
    flags  -- Athena configuration flags
Keyword arguments:
    Source -- source of Tile OFC conditions (COOL, FILE). Defaults to COOL.
    TileOfc -- name of Tile OFC conditions. Defaults to TileOfc + OfcType (capitalized).
    OfcType -- type of Tile OFC. Defaults to OF2. Possible OFC types: OF1, OF2.

Definition at line 69 of file TileOFCConfig.py.

69def TileCondToolOfcCoolCfg(flags, **kwargs):
70 """Return component accumulator with configured Tile OFC conditions algorithm
71
72 Arguments:
73 flags -- Athena configuration flags
74 Keyword arguments:
75 Source -- source of Tile OFC conditions (COOL, FILE). Defaults to COOL.
76 TileOfc -- name of Tile OFC conditions. Defaults to TileOfc + OfcType (capitalized).
77 OfcType -- type of Tile OFC. Defaults to OF2. Possible OFC types: OF1, OF2.
78 """
79
80 acc = ComponentAccumulator()
81
82 kwargs.setdefault('Source', 'COOL')
83 kwargs.setdefault('OfcType', 'OF2')
84
85 ofcType = kwargs['OfcType']
86 ofc = 'TileOfc' + ofcType.capitalize()
87
88 kwargs.setdefault('TileOfc', ofc)
89
90 ofc = kwargs['TileOfc']
91 name = 'TileCondToolOfcCool'
92
93 acc.merge( TileOFCCondAlgCfg(flags, **kwargs) )
94
95 TileCondToolOfcCool=CompFactory.TileCondToolOfcCool
96 acc.setPrivateTools( TileCondToolOfcCool(name, TileOfc = ofc) )
97
98 return acc
99
100
extracts OFCs from database

◆ TileOFCCondAlgCfg()

python.TileOFCConfig.TileOFCCondAlgCfg ( flags,
** kwargs )
Return component accumulator with configured Tile OFC conditions algorithm

Arguments:
    flags  -- Athena configuration flags
Keyword arguments:
    Source -- source of Tile OFC conditions (COOL, FILE). Defaults to COOL.
    TileOfc -- name of Tile OFC conditions object starts with. Defaults to TileOfc. 
    OfcType -- type of Tile OFC. Defaults to OF2. Possible OFC types: OF1, OF2.

Definition at line 9 of file TileOFCConfig.py.

9def TileOFCCondAlgCfg(flags, **kwargs):
10 """Return component accumulator with configured Tile OFC conditions algorithm
11
12 Arguments:
13 flags -- Athena configuration flags
14 Keyword arguments:
15 Source -- source of Tile OFC conditions (COOL, FILE). Defaults to COOL.
16 TileOfc -- name of Tile OFC conditions object starts with. Defaults to TileOfc.
17 OfcType -- type of Tile OFC. Defaults to OF2. Possible OFC types: OF1, OF2.
18 """
19
20 acc = ComponentAccumulator()
21
22 runType = flags.Tile.RunType
23
24 source = kwargs.get('Source', 'COOL')
25 ofc = kwargs.get('TileOfc', 'TileOfc')
26 ofcType = kwargs.get('OfcType', 'OF2')
27
28 ofcType = ofcType.upper()
29 if ofcType not in ['OF1', 'OF2']:
30 raise(Exception("Invalid Tile OFC type: %s" % ofcType))
31
32 name = ofc + 'CondAlg'
33
34 if source == 'COOL':
35 # Connect COOL Tile conditions proxies to the algorithm (default)
36
37 from TileConditions.TileFolders import TileFolders
38 folders = TileFolders(isMC = flags.Input.isMC, isOnline = flags.Common.isOnline)
39
40 ofcType = ofcType + '/' + runType.getCommonType().value
41
42 runNumber = flags.Input.RunNumbers[0]
43 runSplitMC = 470000 # Use OFC stored in OFL02 folder since this run for MC
44 runSplitOnline = 314449 #Use OFC stored in online folder for all runs before 2017
45 if flags.IOVDb.DatabaseInstance == 'CONDBR2' and runType.getCommonType() is TileRunType.PHY and runNumber > runSplitOnline:
46 ofcFolder = folders.addSplitOnline('/TILE/ONL01/FILTER/' + ofcType, '/TILE/OFL02/FILTER/' + ofcType)
47 elif runNumber >= runSplitMC:
48 ofcFolder = folders.addSplitMC('/TILE/ONL01/FILTER/' + ofcType, '/TILE/OFL02/FILTER/' + ofcType)
49 else:
50 ofcFolder = folders.addSplitMC('/TILE/ONL01/FILTER/' + ofcType, '/TILE/ONL01/FILTER/' + ofcType)
51
52 TileCondProxyCoolOfc=CompFactory.getComp("TileCondProxyCool<TileCalibDrawerOfc>")
53 ofcProxy = TileCondProxyCoolOfc('TileCondProxyCool_Ofc', Source = ofcFolder)
54
55 from IOVDbSvc.IOVDbSvcConfig import addFolderList
56 acc.merge( addFolderList(flags, folders.get()) )
57
58 else:
59 raise(Exception("Invalid source: %s" % source))
60
61 TileCalibOfcCondAlg=CompFactory.getComp("TileCalibCondAlg<TileCalibDrawerOfc>")
62 ofcCondAlg = TileCalibOfcCondAlg( name = name, ConditionsProxy = ofcProxy, TileCalibData = ofc)
63
64 acc.addCondAlgo(ofcCondAlg)
65
66 return acc
67
68

Variable Documentation

◆ acc

python.TileOFCConfig.acc = ComponentAccumulator()

Definition at line 164 of file TileOFCConfig.py.

◆ Files

python.TileOFCConfig.Files

Definition at line 160 of file TileOFCConfig.py.

◆ flags

python.TileOFCConfig.flags = initConfigFlags()

Definition at line 159 of file TileOFCConfig.py.

◆ ofcCoolTool

python.TileOFCConfig.ofcCoolTool = acc.popToolsAndMerge( TileCondToolOfcCoolCfg(flags) )

Definition at line 166 of file TileOFCConfig.py.

◆ ofcTool

python.TileOFCConfig.ofcTool = acc.popToolsAndMerge( TileCondToolOfcCfg(flags) )

Definition at line 169 of file TileOFCConfig.py.

◆ RunType

python.TileOFCConfig.RunType

Definition at line 161 of file TileOFCConfig.py.

◆ summariseProps

python.TileOFCConfig.summariseProps

Definition at line 172 of file TileOFCConfig.py.

◆ True

python.TileOFCConfig.True

Definition at line 172 of file TileOFCConfig.py.

◆ withDetails

python.TileOFCConfig.withDetails

Definition at line 172 of file TileOFCConfig.py.