[Rivet-svn] r1697 - trunk/src/Analyses

blackhole at projects.hepforge.org blackhole at projects.hepforge.org
Thu Jul 16 10:48:12 BST 2009


Author: fsiegert
Date: Thu Jul 16 10:48:11 2009
New Revision: 1697

Log:
Bugfix in DELPHI_2003_WUD_03_11: exclusive_jets should be exclusive_jets_ycut in the new fastjet syntax.

Modified:
   trunk/src/Analyses/DELPHI_2003_WUD_03_11.cc

Modified: trunk/src/Analyses/DELPHI_2003_WUD_03_11.cc
==============================================================================
--- trunk/src/Analyses/DELPHI_2003_WUD_03_11.cc	Wed Jul 15 21:32:51 2009	(r1696)
+++ trunk/src/Analyses/DELPHI_2003_WUD_03_11.cc	Thu Jul 16 10:48:11 2009	(r1697)
@@ -73,7 +73,7 @@
     const FastJets& durjet = applyProjection<FastJets>(e, "DurhamJets");
     std::vector<fastjet::PseudoJet> jets_durham;
     if (durjet.clusterSeq()) {
-      jets_durham = fastjet::sorted_by_E(durjet.clusterSeq()->exclusive_jets(0.008));
+      jets_durham = fastjet::sorted_by_E(durjet.clusterSeq()->exclusive_jets_ycut(0.008));
       if (jets_durham.size()==4) {
         _histDurhamBZ->fill(fabs(calc_BZ(jets_durham)), weight);
         _histDurhamKSW->fill(calc_KSW(jets_durham), weight);
@@ -87,7 +87,7 @@
     const FastJets& jadejet = applyProjection<FastJets>(e, "JadeJets");
     std::vector<fastjet::PseudoJet> jets_jade;
     if (jadejet.clusterSeq()) {
-      jets_jade = fastjet::sorted_by_E(jadejet.clusterSeq()->exclusive_jets(0.015));
+      jets_jade = fastjet::sorted_by_E(jadejet.clusterSeq()->exclusive_jets_ycut(0.015));
       if (jets_jade.size()==4) {
         _histJadeBZ->fill(fabs(calc_BZ(jets_jade)), weight);
         _histJadeKSW->fill(calc_KSW(jets_jade), weight);


More information about the Rivet-svn mailing list