Skip to content
Snippets Groups Projects
Commit 074e70f1 authored by Adam Edward Barton's avatar Adam Edward Barton
Browse files

Merge branch 'master-dq-jettag-scheduling' into 'master'

Fix typo in JetTagMonitoring

See merge request atlas/athena!38339
parents 2f4fc80d 0368ff30
No related branches found
No related tags found
No related merge requests found
......@@ -763,7 +763,7 @@ double JetTagMonitorAlgorithm::getMVweight(const xAOD::Jet *jet) const {
bTaggingObject->pc(m_mv_algorithmName,mv_pc);
bTaggingObject->pb(m_mv_algorithmName,mv_pb);
//DL1* formula (standard)
if ( mv_pb != 0 && (mv_pu != 0 || mv_pc || 0)) {
if ( mv_pb != 0 && (mv_pu != 0 || mv_pc != 0)) {
mv = log( mv_pb / ( mv_pu * ( 1 - m_mv_cFraction ) + mv_pc * m_mv_cFraction ) );
}
//DL1*c formula (for DL1c)
......
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