ATLAS Offline Software
Loading...
Searching...
No Matches
HGTDAlignGenToolsConfig Namespace Reference

Functions

 HGTDAlignDBToolCfg (flags, name="HGTDAlignDBTool", **kwargs)

Function Documentation

◆ HGTDAlignDBToolCfg()

HGTDAlignDBToolCfg ( flags,
name = "HGTDAlignDBTool",
** kwargs )
Configure the HGTD alignment database tool.

This tool is responsible for creating and managing HGTD alignment
payloads that can later be written to the Conditions Database
(SQLite/COOL).

Definition at line 6 of file HGTDAlignGenToolsConfig.py.

6def HGTDAlignDBToolCfg(flags, name="HGTDAlignDBTool", **kwargs):
7 """
8 Configure the HGTD alignment database tool.
9
10 This tool is responsible for creating and managing HGTD alignment
11 payloads that can later be written to the Conditions Database
12 (SQLite/COOL).
13 """
14
15 acc = ComponentAccumulator()
16
17 kwargs.setdefault("DetectorManager", "HGTD")
18 kwargs.setdefault("DBRoot", "/HGTD/Align")
19
20 acc.setPrivateTools(
21 CompFactory.HGTDAlignDBTool(name, **kwargs)
22 )
23
24 return acc