Skip to content
Snippets Groups Projects
Commit bb4405f0 authored by Vakhtang Tsulaia's avatar Vakhtang Tsulaia
Browse files

Merge branch 'warn.TrigBjetMonitoring-20201009' into 'master'

TrigBjetMonitoring: Fix compilation warning.

See merge request atlas/athena!37163
parents d29fee90 3a45821f
No related branches found
No related tags found
No related merge requests found
...@@ -368,8 +368,9 @@ StatusCode TrigBjetMonitorAlgorithm::fillHistograms( const EventContext& ctx ) c ...@@ -368,8 +368,9 @@ StatusCode TrigBjetMonitorAlgorithm::fillHistograms( const EventContext& ctx ) c
NameH = "DL1_mv_tr_"+trigName; NameH = "DL1_mv_tr_"+trigName;
ATH_MSG_DEBUG( " NameH: " << NameH ); ATH_MSG_DEBUG( " NameH: " << NameH );
auto DL1_mv = Monitored::Scalar<double>(NameH,0.0); auto DL1_mv = Monitored::Scalar<double>(NameH,0.0);
if ( LLR (DL1_pu, DL1_pc, DL1_pb, DL1_mv) ) fill("TrigBjetMonitor",DL1_mv); bool theLLR = LLR (DL1_pu, DL1_pc, DL1_pb, DL1_mv);
ATH_MSG_DEBUG(" DL1_mv: " << DL1_mv << " LLR: " << LLR); if ( theLLR ) fill("TrigBjetMonitor",DL1_mv);
ATH_MSG_DEBUG(" DL1_mv: " << DL1_mv << " LLR: " << theLLR);
NameH = "DL1r_pu_tr_"+trigName; NameH = "DL1r_pu_tr_"+trigName;
...@@ -396,8 +397,9 @@ StatusCode TrigBjetMonitorAlgorithm::fillHistograms( const EventContext& ctx ) c ...@@ -396,8 +397,9 @@ StatusCode TrigBjetMonitorAlgorithm::fillHistograms( const EventContext& ctx ) c
NameH = "DL1r_mv_tr_"+trigName; NameH = "DL1r_mv_tr_"+trigName;
ATH_MSG_DEBUG( " NameH: " << NameH ); ATH_MSG_DEBUG( " NameH: " << NameH );
auto DL1r_mv = Monitored::Scalar<double>(NameH,0.0); auto DL1r_mv = Monitored::Scalar<double>(NameH,0.0);
if ( LLR (DL1r_pu, DL1r_pc, DL1r_pb, DL1r_mv) ) fill("TrigBjetMonitor",DL1r_mv); theLLR = LLR (DL1r_pu, DL1r_pc, DL1r_pb, DL1r_mv);
ATH_MSG_DEBUG(" DL1r_mv: " << DL1r_mv << " LLR: " << LLR); if ( theLLR ) fill("TrigBjetMonitor",DL1r_mv);
ATH_MSG_DEBUG(" DL1r_mv: " << DL1r_mv << " LLR: " << theLLR);
} // if (ijet == 0) } // if (ijet == 0)
......
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