|
[Rivet-svn] r3271 - trunk/include/Rivet/Projectionsblackhole at projects.hepforge.org blackhole at projects.hepforge.orgTue Aug 2 11:08:12 BST 2011
Author: fsiegert Date: Tue Aug 2 11:08:11 2011 New Revision: 3271 Log: Remove more compile warnings (unused variable), in JetAlg. Modified: trunk/include/Rivet/Projections/JetAlg.hh Modified: trunk/include/Rivet/Projections/JetAlg.hh ============================================================================== --- trunk/include/Rivet/Projections/JetAlg.hh Tue Aug 2 10:29:50 2011 (r3270) +++ trunk/include/Rivet/Projections/JetAlg.hh Tue Aug 2 11:08:11 2011 (r3271) @@ -107,9 +107,9 @@ /// Get the jets, ordered by supplied sorting function object, with optional cuts on \f$ p_\perp \f$ and rapidity. /// @todo Introduce MomentumFilter objects for pT, ET, eta, y, etc. filtering, to avoid double-arg ambiguities template <typename F> - Jets jets(F sorter, double ptmin=0.0, double ptmax=MAXDOUBLE, - double rapmin=-MAXDOUBLE, double rapmax=MAXDOUBLE, - RapScheme rapscheme=PSEUDORAPIDITY) const { + Jets jets(F sorter, double ptmin, double, + double, double, + RapScheme) const { Jets js = jets(ptmin); if (sorter != 0) { std::sort(js.begin(), js.end(), sorter);
More information about the Rivet-svn mailing list |