Skip to content
Snippets Groups Projects
Commit 709781a6 authored by Tomasz Bold's avatar Tomasz Bold
Browse files

Fixed wide import & typo in response to the review

parent 2f97036c
No related branches found
No related tags found
No related merge requests found
...@@ -83,7 +83,7 @@ if nThreads >= 1: ...@@ -83,7 +83,7 @@ if nThreads >= 1:
topSequence += SGInputLoader( OutputLevel=INFO, ShowEventDump=False ) topSequence += SGInputLoader( OutputLevel=INFO, ShowEventDump=False )
topSequence.SGInputLoader.Load = [ ('ROIB::RoIBResult','RoIBResult') ] topSequence.SGInputLoader.Load = [ ('ROIB::RoIBResult','RoIBResult') ]
from L1Decoder.L1DecoderConf import * from L1Decoder.L1DecoderConf import CTPUnpackingTool, EMRoIsUnpackingTool, L1Decoder, MURoIsUnpackingTool
l1Decoder = L1Decoder( OutputLevel=DEBUG ) l1Decoder = L1Decoder( OutputLevel=DEBUG )
l1Decoder.ctpUnpacker = CTPUnpackingTool( OutputLevel = DEBUG, ForceEnableAllChains=True ) l1Decoder.ctpUnpacker = CTPUnpackingTool( OutputLevel = DEBUG, ForceEnableAllChains=True )
...@@ -102,7 +102,7 @@ l1Decoder.Chains="HLTChainsResult" ...@@ -102,7 +102,7 @@ l1Decoder.Chains="HLTChainsResult"
topSequence += l1Decoder topSequence += l1Decoder
#Run calo decoder #Run calo decoder
from DecisionHandling.DecisionHandlingConf import * from DecisionHandling.DecisionHandlingConf import DumpDecisions
emDecisionsDumper = DumpDecisions("DumpEML1RoIs", OutputLevel=DEBUG) emDecisionsDumper = DumpDecisions("DumpEML1RoIs", OutputLevel=DEBUG)
emDecisionsDumper.Decisions = "EMRoIDecisions" emDecisionsDumper.Decisions = "EMRoIDecisions"
topSequence += emDecisionsDumper topSequence += emDecisionsDumper
......
...@@ -55,7 +55,7 @@ StatusCode EMRoIsUnpackingTool::updateConfiguration() { ...@@ -55,7 +55,7 @@ StatusCode EMRoIsUnpackingTool::updateConfiguration() {
ATH_MSG_DEBUG( "Found threshold in the configuration: " << th->name() << " of ID: " << HLT::Identifier(th->name()).numeric() ); ATH_MSG_DEBUG( "Found threshold in the configuration: " << th->name() << " of ID: " << HLT::Identifier(th->name()).numeric() );
m_emThresholds.push_back(th); m_emThresholds.push_back(th);
} else { } else {
ATH_MSG_DEBUG( "Nullptr to the threshood" ); ATH_MSG_DEBUG( "Nullptr to the threshold" );
} }
} }
return StatusCode::SUCCESS; return StatusCode::SUCCESS;
......
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