Skip to content

CheckPV fix so Print actually works

Patrick Koppenburg requested to merge pkoppenb-CheckPV into master

The line

   if ( msgLevel( MSG::VERBOSE ) || m_print ) verbose() << "There are " << n << " primary vertices." << endmsg;

is nonsensical as m_print will only take effect in verbose mode. The fix is to print always() for m_print as that's the intention.

Edited by Patrick Koppenburg

Merge request reports