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

Functions

 HGTD_AlignDBToolCfg (flags, name="HGTD_AlignDBTool", **kwargs)

Function Documentation

◆ HGTD_AlignDBToolCfg()

HGTD_AlignDBToolCfg ( flags,
name = "HGTD_AlignDBTool",
** 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 HGTD_AlignGenToolsConfig.py.

6def HGTD_AlignDBToolCfg(flags, name="HGTD_AlignDBTool", **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.HGTD_AlignDBTool(name, **kwargs)
22 )
23
24 return acc