|
[Rivet-svn] r3349 - trunk/src/Projectionsblackhole at projects.hepforge.org blackhole at projects.hepforge.orgTue Sep 13 17:34:02 BST 2011
Author: buckley Date: Tue Sep 13 17:34:02 2011 New Revision: 3349 Log: Fix a compilation bug in WFinder due to the API change on MissingMomentum Modified: trunk/src/Projections/WFinder.cc Modified: trunk/src/Projections/WFinder.cc ============================================================================== --- trunk/src/Projections/WFinder.cc Mon Sep 12 23:42:50 2011 (r3348) +++ trunk/src/Projections/WFinder.cc Tue Sep 13 17:34:02 2011 (r3349) @@ -155,9 +155,9 @@ // Check missing ET const MissingMomentum& vismom = applyProjection<MissingMomentum>(e, "MissingET"); /// @todo Restrict missing momentum eta range? Use vectorET()? - if (vismom.scalarET() < _etMiss) { - getLog() << Log::DEBUG << "Not enough missing ET: " << vismom.scalarET()/GeV - << " GeV vs. " << _etMiss/GeV << " GeV" << endl; + if (vismom.scalarEt() < _etMiss) { + MSG_DEBUG("Not enough missing ET: " << vismom.scalarEt()/GeV + << " GeV vs. " << _etMiss/GeV << " GeV"); return; }
More information about the Rivet-svn mailing list |