Skip to content

B-physics trigger: fix Step7_noMuon_precision_electron_bBee_GSF for HLT_e5_lhvloose_bBeeM6000 chains (ATR-28162)

Vladimir Lyubushkin requested to merge lyubushk/athena:bBee3 into main

Fix a typo in sequence for Step7 for the 'bBeeM6000' chains: electrons should be GSF by default. Also fix a typo in 'HLT_e9_lhvloose_nogsf_e5_lhvloose_nogsf_bBeeM6000_L1BPH-0M9-EM7-EM5' name: both electrons are expected to be noGSF.

Before fix:

"Step7_noMuon_precision_electron_bBee_GSF": [
    "RoRSeqFilter/FStep7_noMuon_precision_electron_bBee_GSF",
    "EventViewCreatorAlgorithm/IMprecisionElectron",
    "AthViews::ViewDataVerifier/PrecisionTrackViewDataVerifier_noGSF",
    "egammaRecBuilder/TrigEgammaRecElectron_noGSF",
    "electronSuperClusterBuilder/TrigElectronSuperClusterBuilder_noGSF",
    "xAODEgammaBuilder/TrigTopoEgammaElectronCfg_noGSF",
    "IsolationBuilder/TrigElectronIsoBuilderCfg_noGSF",
    "egammaMonitorElectronAlgorithm/PrecisionElectronTopoMonitoring_noGSF",
    "egammaMonitorSuperClusterAlgorithm/PrecisionElectronSuperClusterBuilder_noGSF",
    "TrigEgammaPrecisionElectronHypoAlg/TrigEgammaprecisionElectronHypoAlg_noGSF",
    "TrigMultiTrkComboHypo/NoMuonDiElecPrecisionGSFEFComboHypo"
],

After fix:

"Step7_noMuon_precision_electron_bBee_GSF": [
    "RoRSeqFilter/FStep7_noMuon_precision_electron_bBee_GSF",
    "EventViewCreatorAlgorithm/IMprecisionElectron_GSF",
    "AthViews::ViewDataVerifier/PrecisionTrackViewDataVerifier_GSF",
    "egammaRecBuilder/TrigEgammaRecElectron_GSF",
    "electronSuperClusterBuilder/TrigElectronSuperClusterBuilder_GSF",
    "xAODEgammaBuilder/TrigTopoEgammaElectronCfg_GSF",
    "IsolationBuilder/TrigElectronIsoBuilderCfg_GSF",
    "egammaMonitorElectronAlgorithm/PrecisionElectronTopoMonitoring_GSF",
    "egammaMonitorSuperClusterAlgorithm/PrecisionElectronSuperClusterBuilder_GSF",
    "TrigEgammaPrecisionElectronHypoAlg/TrigEgammaprecisionElectronHypoAlg_GSF",
    "TrigMultiTrkComboHypo/NoMuonDiElecPrecisionGSFEFComboHypo"
],

Merge request reports