[Rivet-svn] r3492 - in trunk: . include/Rivet/Projections

blackhole at projects.hepforge.org blackhole at projects.hepforge.org
Sat Nov 19 21:25:40 GMT 2011


Author: buckley
Date: Sat Nov 19 21:25:40 2011
New Revision: 3492

Log:
Adding variant constructors to FastJets with a more natural Plugin* argument, and decrufting the constructor implementations a bit.

Modified:
   trunk/ChangeLog
   trunk/include/Rivet/Projections/FastJets.hh

Modified: trunk/ChangeLog
==============================================================================
--- trunk/ChangeLog	Sat Nov 19 21:21:31 2011	(r3491)
+++ trunk/ChangeLog	Sat Nov 19 21:25:40 2011	(r3492)
@@ -1,5 +1,9 @@
 2011-11-19  Andy Buckley  <andy.buckley at cern.ch>
 
+	* Adding variant constructors to FastJets with a more natural
+	Plugin* argument, and decrufting the constructor implementations a
+	bit.
+
 	* bin/rivet: Adding a more helpful error message if the rivet
 	module can't be loaded, grouping the option parser options,
 	removing the -A option (this just doesn't seem useful anymore),

Modified: trunk/include/Rivet/Projections/FastJets.hh
==============================================================================
--- trunk/include/Rivet/Projections/FastJets.hh	Sat Nov 19 21:21:31 2011	(r3491)
+++ trunk/include/Rivet/Projections/FastJets.hh	Sat Nov 19 21:25:40 2011	(r3492)
@@ -76,7 +76,7 @@
       : JetAlg(fsp), _adef(0) { _init2(type, recom, rparameter); }
 
     /// Explicitly pass in an externally-constructed plugin (must be heap-allocated, Rivet will delete)
-    FastJets(const FinalState& fsp, fastjet::JetDefinition::Plugin* plugin);
+    FastJets(const FinalState& fsp, fastjet::JetDefinition::Plugin* plugin)
       : JetAlg(fsp), _adef(0) { _init3(plugin); }
     /// Explicitly pass in an externally-constructed plugin (must be heap-allocated, Rivet will delete)
     FastJets(const FinalState& fsp, fastjet::JetDefinition::Plugin& plugin)


More information about the Rivet-svn mailing list