diff --git a/MuonSpectrometer/MuonReconstruction/MuonPatternFinders/MuonPatternFinderTools/MuonHoughPatternTools/src/MuonHoughPatternFinderTool.cxx b/MuonSpectrometer/MuonReconstruction/MuonPatternFinders/MuonPatternFinderTools/MuonHoughPatternTools/src/MuonHoughPatternFinderTool.cxx index a28118e9e15c20b0b8e4ff85d46b224409208fab..425739c0f964015b9d65a9eb737910792d6e1005 100644 --- a/MuonSpectrometer/MuonReconstruction/MuonPatternFinders/MuonPatternFinderTools/MuonHoughPatternTools/src/MuonHoughPatternFinderTool.cxx +++ b/MuonSpectrometer/MuonReconstruction/MuonPatternFinders/MuonPatternFinderTools/MuonHoughPatternTools/src/MuonHoughPatternFinderTool.cxx @@ -807,7 +807,9 @@ namespace Muon { } else if constexpr (std::is_same<CollContainer, RpcPrepDataCollection>::value) { channel_max = m_idHelperSvc->rpcIdHelper().stripMax(); } else if constexpr(std::is_same<CollContainer, sTgcPrepDataCollection>::value) { - channel_max = m_idHelperSvc->stgcIdHelper().channelMax(cont.front()->identify()); + /// Enlarge the vector artifically by 3 to make enough space for Pads, strip and wires which + /// are all aligned in the same channel vector + channel_max = m_idHelperSvc->stgcIdHelper().channelMax(cont.front()->identify()) * 3; } else if constexpr(std::is_same<CollContainer, MMPrepDataCollection>::value) { channel_max = m_idHelperSvc->mmIdHelper().channelMax(cont.front()->identify()); } diff --git a/Trigger/TrigValidation/TrigP1Test/test/test_trigP1_v1Cosmic_T0Mon_grid.py b/Trigger/TrigValidation/TrigP1Test/test/test_trigP1_v1Cosmic_T0Mon_grid.py index 9e3f5705a848ba449f60566512770e5a6249e3de..4df3568c11a5233e54feece6aef06ce69f436b01 100755 --- a/Trigger/TrigValidation/TrigP1Test/test/test_trigP1_v1Cosmic_T0Mon_grid.py +++ b/Trigger/TrigValidation/TrigP1Test/test/test_trigP1_v1Cosmic_T0Mon_grid.py @@ -51,6 +51,7 @@ filter_bs.args += ' -s Main ' + find_file('*_HLTMPPy_output.*.data') tzrecoPreExec = ' '.join([ "flags.Trigger.triggerMenuSetup=\'Cosmic_run3_v1\';", "flags.Trigger.AODEDMSet=\'AODFULL\';", + "flags.Exec.FPE=500;", ]) tzreco = ExecStep.ExecStep('Tier0Reco')