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 !37163
parents d29fee90 3a45821f
6 merge requests!58791DataQualityConfigurations: Modify L1Calo config for web display,!46784MuonCondInterface: Enable thread-safety checking.,!46776Updated LArMonitoring config file for WD to match new files produced using MT,!45405updated ART test cron job,!42417Draft: DIRE and VINCIA Base Fragments for Pythia 8.3,!37163TrigBjetMonitoring: Fix compilation warning.
......@@ -368,8 +368,9 @@ StatusCode TrigBjetMonitorAlgorithm::fillHistograms( const EventContext& ctx ) c
NameH = "DL1_mv_tr_"+trigName;
ATH_MSG_DEBUG( " NameH: " << NameH );
auto DL1_mv = Monitored::Scalar<double>(NameH,0.0);
if ( LLR (DL1_pu, DL1_pc, DL1_pb, DL1_mv) ) fill("TrigBjetMonitor",DL1_mv);
ATH_MSG_DEBUG(" DL1_mv: " << DL1_mv << " LLR: " << LLR);
bool theLLR = LLR (DL1_pu, DL1_pc, DL1_pb, DL1_mv);
if ( theLLR ) fill("TrigBjetMonitor",DL1_mv);
ATH_MSG_DEBUG(" DL1_mv: " << DL1_mv << " LLR: " << theLLR);
NameH = "DL1r_pu_tr_"+trigName;
......@@ -396,8 +397,9 @@ StatusCode TrigBjetMonitorAlgorithm::fillHistograms( const EventContext& ctx ) c
NameH = "DL1r_mv_tr_"+trigName;
ATH_MSG_DEBUG( " NameH: " << NameH );
auto DL1r_mv = Monitored::Scalar<double>(NameH,0.0);
if ( LLR (DL1r_pu, DL1r_pc, DL1r_pb, DL1r_mv) ) fill("TrigBjetMonitor",DL1r_mv);
ATH_MSG_DEBUG(" DL1r_mv: " << DL1r_mv << " LLR: " << LLR);
theLLR = LLR (DL1r_pu, DL1r_pc, DL1r_pb, DL1r_mv);
if ( theLLR ) fill("TrigBjetMonitor",DL1r_mv);
ATH_MSG_DEBUG(" DL1r_mv: " << DL1r_mv << " LLR: " << theLLR);
} // 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