CheckPV fix so Print actually works
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