Skip to content
Snippets Groups Projects
Commit 0c1d7dcc authored by Joerg Stelzer's avatar Joerg Stelzer Committed by Graeme Stewart
Browse files

Less verbose (L1TopoSimulation-00-00-16)

	* Less verbose
	* L1TopoSimulation-00-00-16

2015-03-16 Joerg Stelzer
	* Initialize input providers in L1TopoSim::initialize (ATR-10385)
	* L1TopoSimulation-00-00-15
parent 98b46444
No related branches found
No related tags found
No related merge requests found
......@@ -88,14 +88,28 @@ L1TopoSimulation::~L1TopoSimulation()
StatusCode
L1TopoSimulation::initialize() {
ATH_MSG_DEBUG("initialize");
ATH_MSG_INFO("initialize");
m_topoSteering->setMsgLevel( TrigConf::MSGTC::Level(m_topoSteeringOutputLevel) );
ATH_MSG_DEBUG("retrieving " << m_monitors);
CHECK( m_monitors.retrieve() );
ATH_MSG_DEBUG("retrieving " << m_l1topoConfigSvc);
CHECK( m_l1topoConfigSvc.retrieve() );
ATH_MSG_DEBUG("retrieving " << m_emtauInputProvider);
CHECK( m_emtauInputProvider.retrieve() );
ATH_MSG_DEBUG("retrieving " << m_jetInputProvider);
CHECK( m_jetInputProvider.retrieve() );
ATH_MSG_DEBUG("retrieving " << m_energyInputProvider);
CHECK( m_energyInputProvider.retrieve() );
ATH_MSG_DEBUG("retrieving " << m_muonInputProvider);
CHECK( m_muonInputProvider.retrieve() );
return StatusCode::SUCCESS;
}
......
......@@ -48,13 +48,13 @@ MuonInputProvider::~MuonInputProvider()
StatusCode
MuonInputProvider::initialize() {
ATH_MSG_INFO("Retrieving LVL1ConfigSvc " << m_configSvc);
ATH_MSG_DEBUG("Retrieving LVL1ConfigSvc " << m_configSvc);
CHECK( m_configSvc.retrieve() );
ATH_MSG_INFO("Retrieving RPC RoI Service " << m_recRPCRoiSvc);
ATH_MSG_DEBUG("Retrieving RPC RoI Service " << m_recRPCRoiSvc);
CHECK( m_recRPCRoiSvc.retrieve() );
ATH_MSG_INFO("Retrieving TGC RoI Service " << m_recTGCRoiSvc);
ATH_MSG_DEBUG("Retrieving TGC RoI Service " << m_recTGCRoiSvc);
CHECK( m_recTGCRoiSvc.retrieve() );
m_MuonThresholds = m_configSvc->ctpConfig()->menu().thresholdConfig().getThresholdVector(TrigConf::L1DataDef::MUON);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment