Definition at line 10 of file AccelTrackTrigSequence.py.
◆ __init__()
def python.AccelTrackTrigSequence.AccelTrackTrigSequence.__init__ |
( |
|
self, |
|
|
AthConfigFlags |
flags, |
|
|
str |
signature, |
|
|
str |
rois, |
|
|
str |
inView |
|
) |
| |
Definition at line 11 of file AccelTrackTrigSequence.py.
11 def __init__(self, flags : AthConfigFlags, signature : str, rois : str, inView : str):
12 super().
__init__(flags, signature,rois,inView)
13 self.log = logging.getLogger(
"AccelTrigTrigSequence")
14 self.log.
info(f
"EFTracking signature: {self.signature} rois: {self.rois} inview: {self.inView}")
◆ f100()
ComponentAccumulator python.AccelTrackTrigSequence.AccelTrackTrigSequence.f100 |
( |
|
self | ) |
|
Definition at line 32 of file AccelTrackTrigSequence.py.
32 def f100(self) -> ComponentAccumulator:
33 import EFTrackConfig.F100Config
as F100Config
34 from TrigInDetConfig.ActsTrigSequence
import ActsTrigSequence
38 seq = ActsTrigSequence(self.flags, self.signature, self.rois, self.inView)
40 ca.merge(F100Config.dataPreparation(self.flags, self.signature, self.inView, self.rois))
41 ca.merge(seq.fastTrackFinder())
◆ f100_precision()
ComponentAccumulator python.AccelTrackTrigSequence.AccelTrackTrigSequence.f100_precision |
( |
|
self | ) |
|
Definition at line 45 of file AccelTrackTrigSequence.py.
45 def f100_precision(self) -> ComponentAccumulator:
46 from TrigInDetConfig.ActsTrigSequence
import ActsTrigSequence
50 seq = ActsTrigSequence(self.flags, self.signature, self.rois, self.inView)
53 ca.merge(seq.sequenceAfterPattern())
◆ sequence()
ComponentAccumulator python.AccelTrackTrigSequence.AccelTrackTrigSequence.sequence |
( |
|
self, |
|
|
str |
recoType |
|
) |
| |
main method to instantiate tracking in the trigger menu
recoType can be used to generate a specific step. The pattern recognition
and production of xAOD trackparticles should happen in FastTrackFinder step
Definition at line 15 of file AccelTrackTrigSequence.py.
15 def sequence(self, recoType : str) -> ComponentAccumulator:
16 """ main method to instantiate tracking in the trigger menu
17 recoType can be used to generate a specific step. The pattern recognition
18 and production of xAOD trackparticles should happen in FastTrackFinder step
24 ca.merge(self.viewDataVerifier())
27 if recoType ==
"FastTrackFinder":
28 ca.merge(self.trackFinding())
◆ sequenceAfterPattern()
ComponentAccumulator python.AccelTrackTrigSequence.AccelTrackTrigSequence.sequenceAfterPattern |
( |
|
self, |
|
|
|
rois = "" |
|
) |
| |
this method is used by the menu to generate precision tracking step.
for AccelTrackTrigSequence it should just make tracks from pattern available again
Definition at line 76 of file AccelTrackTrigSequence.py.
76 def sequenceAfterPattern(self, rois="") -> ComponentAccumulator:
77 """ this method is used by the menu to generate precision tracking step.
78 for AccelTrackTrigSequence it should just make tracks from pattern available again
82 match self.flags.Trigger.EFTrackPipeline:
84 ca.merge(self.f100_precision())
◆ trackFinding()
ComponentAccumulator python.AccelTrackTrigSequence.AccelTrackTrigSequence.trackFinding |
( |
|
self | ) |
|
Definition at line 57 of file AccelTrackTrigSequence.py.
57 def trackFinding(self) -> ComponentAccumulator:
60 self.log.
info(f
'merge EFTrackPipeline {self.flags.Trigger.EFTrackPipeline}')
62 match self.flags.Trigger.EFTrackPipeline:
◆ viewDataVerifier()
ComponentAccumulator python.AccelTrackTrigSequence.AccelTrackTrigSequence.viewDataVerifier |
( |
|
self, |
|
|
|
viewVerifier = 'IDViewDataVerifier' |
|
) |
| |
Definition at line 96 of file AccelTrackTrigSequence.py.
96 def viewDataVerifier(self, viewVerifier='IDViewDataVerifier') -> ComponentAccumulator:
100 ViewDataVerifier = CompFactory.AthViews.ViewDataVerifier(
101 name = viewVerifier +
"_" + self.signature,
102 DataObjects= {(
'xAOD::EventInfo',
'StoreGateSvc+EventInfo'),
103 (
'PixelRDO_Cache',
'PixRDOCache'),
104 (
'SCT_RDO_Cache',
'SctRDOCache'),
109 (
'xAOD::EventInfo',
'EventInfo'),
110 (
'ActsGeometryContext' ,
'StoreGateSvc+ActsAlignment' ),
111 (
'TrigRoiDescriptorCollection',
str(self.rois)),
112 (
'TagInfo' ,
'DetectorStore+ProcessingTags' )} )
114 if self.flags.Input.isMC:
115 ViewDataVerifier.DataObjects |= {(
'PixelRDO_Container' ,
'StoreGateSvc+ITkPixelRDOs' ),
116 (
'SCT_RDO_Container' ,
'StoreGateSvc+ITkStripRDOs' ),
117 (
'InDetSimDataCollection' ,
'ITkPixelSDO_Map'),
118 (
'ActsGeometryContext' ,
'StoreGateSvc+ActsAlignment' )}
119 from SGComps.SGInputLoaderConfig
import SGInputLoaderCfg
120 sgil_load = [(
'PixelRDO_Container' ,
'StoreGateSvc+ITkPixelRDOs' ),
121 (
'SCT_RDO_Container' ,
'StoreGateSvc+ITkStripRDOs' ),
122 (
'InDetSimDataCollection' ,
'ITkPixelSDO_Map'),]
125 ViewDataVerifier.DataObjects |= {
126 (
'InDet::SiDetectorElementStatus' ,
'StoreGateSvc+ITkPixelDetectorElementStatus' ),
127 (
'InDet::SiDetectorElementStatus' ,
'StoreGateSvc+ITkStripDetectorElementStatus' ),
130 acc.addEventAlgo(ViewDataVerifier)
◆ log
python.AccelTrackTrigSequence.AccelTrackTrigSequence.log |
The documentation for this class was generated from the following file: