11def JetTLASequenceCfg(flags, jetsIn):
12
13
14 tlaJetInputMakerAlg = CompFactory.InputMakerForRoI("IMTLAJets_"+jetsIn)
15 tlaJetInputMakerAlg.RoITool = CompFactory.ViewCreatorPreviousROITool()
16 tlaJetInputMakerAlg.mergeUsingFeature = True
17
18
19 recoAcc = InEventRecoCA("JetTLARecoSeq_"+jetsIn,inputMaker=tlaJetInputMakerAlg)
20 eventInfoRecorderAlgCfg = TrigEventInfoRecorderAlgCfg(flags, name="TrigEventInfoRecorderAlg_TLA",
21 decoratePFlowInfo=True,
22 decorateEMTopoInfo=True,
23 renounceAll=True,
24 trigEventInfoKey=recordable("HLT_TCEventInfo_TLA"),
25 primaryVertexInputName="HLT_IDVertex_FS",
26 )
27 recoAcc.mergeReco(eventInfoRecorderAlgCfg)
28
29 return recoAcc
30
31@AccumulatorCache