ATLAS Offline Software
Loading...
Searching...
No Matches
plugin_local_cfg.py
Go to the documentation of this file.
1# Copyright (C) 2002-2026 CERN for the benefit of the ATLAS collaboration
2
3# run this with: l1calo-ath-mon --postInclude GlobalSimulation/plugin_local_cfg.py --evtMax 10 --filesInput RAW_RUN3_DATA24
4#cfg and flags are already defined
5
6from AthenaCommon.Constants import DEBUG, INFO
7
8# Add algorithm to prepare LAr cells for Global
9from GlobalSimulation.LArCellPreparationAlgConfig import LArCellPreparationAlgCfg
10gblLArCellContainerKey = "GlobalLArCells"
11cfg.merge(LArCellPreparationAlgCfg(flags,
12 numberOfEnergyBits = 6,
13 valueLeastSignificantBit = 40,
14 valueGainFactor = 4,
15 GlobalLArCellsKey = gblLArCellContainerKey,
16 OutputLevel=DEBUG))
17
18# add in the Algortihm to build a LArStrip Neighborhood container
19from GlobalSimulation.Egamma1_OnlineMapNbhoodConfig import Egamma1_OnlineMapNbhoodCfg
20cfg.merge(Egamma1_OnlineMapNbhoodCfg(flags,
21 OutputLevel=INFO,
22 dump=True,
23 dumpTerse=False))
24
25from GlobalSimulation.GlobalSimAlgCfg_local import GlobalSimulationAlgCfg
26cfg.merge(GlobalSimulationAlgCfg(flags, dump=True, OutputLevel=DEBUG))
27