Skip to content
Snippets Groups Projects
Commit c42b36f8 authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

TrigInDetConfig: remove usage of legacy job properties

Remove usage of legacy job properties for Pixel/SCT ROB identifiers.
Hard-code the values instead as they never change.

Relates to ATR-26732.
parent d44b81c8
No related branches found
No related tags found
1 merge request!66697TriggerMenuMT: forbid use of legacy properties in menu generation
# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
from InDetRecExample.InDetKeys import InDetKeys
from TrigInDetConfig.TrigInDetConfig import InDetCacheNames
from AthenaConfiguration.Enums import Format
from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
......@@ -114,8 +113,8 @@ class InDetTrigSequence:
isByteStream = self.__flags.Input.Format == Format.BS
if not isByteStream:
ViewDataVerifier.DataObjects += [( 'PixelRDO_Container' , InDetKeys.PixelRDOs() ),
( 'SCT_RDO_Container' , InDetKeys.SCT_RDOs() )]
ViewDataVerifier.DataObjects += [( 'PixelRDO_Container' , 'PixelRDOs' ),
( 'SCT_RDO_Container' , 'SCT_RDOs' )]
ViewDataVerifier.DataObjects += [( 'TrigRoiDescriptorCollection' , 'StoreGateSvc+%s' % self.__rois )]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment