diff --git a/Trigger/TrigT1/L1Topo/L1TopoAlgorithms/Root/MuonSelect.cxx b/Trigger/TrigT1/L1Topo/L1TopoAlgorithms/Root/MuonSelect.cxx
index 1aa2034da65685e7171b6c0280b22daa7ac8d2d9..f2426483b63dea2bd7b802bc9789a29141268397 100644
--- a/Trigger/TrigT1/L1Topo/L1TopoAlgorithms/Root/MuonSelect.cxx
+++ b/Trigger/TrigT1/L1Topo/L1TopoAlgorithms/Root/MuonSelect.cxx
@@ -37,7 +37,7 @@ TCS::MuonSelect::~MuonSelect() {}
 
 TCS::StatusCode
 TCS::MuonSelect::initialize() {
-  m_numberOfMuons = parameter("InputWidth").value();
+  m_numberOfMuons = parameter("OutputWidth").value();
   m_minEta = parameter("MinEta").value();
   m_maxEta = parameter("MaxEta").value();
   m_MinEtTGC = parameter("MinEtTGC").value();	    
diff --git a/Trigger/TrigT1/L1Topo/L1TopoSimulation/python/L1TopoSimulationConfig.py b/Trigger/TrigT1/L1Topo/L1TopoSimulation/python/L1TopoSimulationConfig.py
index bdd0fd3b6feaeb0c8dd65ea237aabea57d7f9ae2..b57ed657e6b26e3eea2285bdeb809d51dcf32a18 100644
--- a/Trigger/TrigT1/L1Topo/L1TopoSimulation/python/L1TopoSimulationConfig.py
+++ b/Trigger/TrigT1/L1Topo/L1TopoSimulation/python/L1TopoSimulationConfig.py
@@ -253,7 +253,7 @@ def L1TopoSimulationStandaloneCfg(flags, outputEDM=[], doMuons = False):
 if __name__ == '__main__':
   from AthenaConfiguration.AllConfigFlags import initConfigFlags
   from AthenaCommon.Logging import logging
-  from AthenaCommon.Constants import VERBOSE,DEBUG,WARNING
+  from AthenaCommon.Constants import VERBOSE,DEBUG,WARNING,INFO
   import argparse
   from argparse import RawTextHelpFormatter
   import sys
@@ -285,17 +285,19 @@ if __name__ == '__main__':
 
   if len(subsystem)==0:
       log.warning(f'subsystem not given or the given subsystem not supported with one of the: {supportedSubsystems}')
-  
+
+  if args.log == 'info': algLogLevel = INFO  
   if args.log == 'warning': algLogLevel = WARNING
   if args.log == 'debug': algLogLevel = DEBUG
   if args.log == 'verbose': algLogLevel = VERBOSE
 
   flags = initConfigFlags()
 
-  flags.Exec.OutputLevel = WARNING
+  flags.Exec.OutputLevel = algLogLevel
   if(args.nevent > 0):
     flags.Exec.MaxEvents = args.nevent
   flags.Trigger.triggerMenuSetup = 'PhysicsP1_pp_run3_v1'
+  flags.Trigger.triggerConfig = 'DB'
   flags.Input.Files = args.inputs
   flags.Concurrency.NumThreads = 1
   flags.Concurrency.NumConcurrentEvents = 1