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

Functions

 getFullScanRecoOnlySequenceGenCfg (flags)
 getCommonInDetFullScanLRTCfg (flags, flagsLRT)

Variables

 log = logging.getLogger(__name__)

Function Documentation

◆ getCommonInDetFullScanLRTCfg()

CommonConfiguration.getCommonInDetFullScanLRTCfg ( flags,
flagsLRT )

Definition at line 41 of file CommonConfiguration.py.

41def getCommonInDetFullScanLRTCfg(flags, flagsLRT):
42 combined_reco = ComponentAccumulator()
43
44 combined_reco.merge( commonInDetFullScanCfg(flags) )
45 combined_reco.merge( commonInDetLRTCfg(flags, flagsLRT) )
46
47 return combined_reco

◆ getFullScanRecoOnlySequenceGenCfg()

CommonConfiguration.getFullScanRecoOnlySequenceGenCfg ( flags)

Definition at line 17 of file CommonConfiguration.py.

17def getFullScanRecoOnlySequenceGenCfg(flags):
18
19 from TrigStreamerHypo.TrigStreamerHypoConfig import StreamerHypoToolGenerator
20
21 selAcc = SelectionCA("UncTrkrecoSel")
22
23 from TriggerMenuMT.HLT.Jet.JetMenuSequencesConfig import getTrackingInputMaker
24 reco = InEventRecoCA("UncTrkreco",inputMaker=getTrackingInputMaker(flags, "ftf"))
25 reco.mergeReco( commonInDetFullScanCfg(flags) )
26 selAcc.mergeReco( reco )
27
28 HypoAlg = CompFactory.TrigStreamerHypoAlg("UncTrkDummyStream")
29 selAcc.addHypoAlgo(HypoAlg)
30
31 log.debug("Building the menu sequence for FullScanRecoOnlySequence")
32 return MenuSequence(flags,
33 selAcc,
34 HypoToolGen = StreamerHypoToolGenerator)
35
36
37# This produces a ComponentAccumulator that can be incorporated into
38# an InEventRecoCA downstream. A plain CA is returned so that it
39# can be used in independent steps with more complex reco and different
40# InputMakers etc.

Variable Documentation

◆ log

CommonConfiguration.log = logging.getLogger(__name__)

Definition at line 11 of file CommonConfiguration.py.