|
[Rivet-svn] r3649 - trunk/src/Analysesblackhole at projects.hepforge.org blackhole at projects.hepforge.orgFri Mar 23 15:44:13 GMT 2012
Author: fsiegert Date: Fri Mar 23 15:44:13 2012 New Revision: 3649 Log: Include neutrinos in JADE_OPAL clustering, as reported by Christoph Pahl. Modified: trunk/src/Analyses/JADE_OPAL_2000_S4300807.cc Modified: trunk/src/Analyses/JADE_OPAL_2000_S4300807.cc ============================================================================== --- trunk/src/Analyses/JADE_OPAL_2000_S4300807.cc Fri Mar 23 12:53:15 2012 (r3648) +++ trunk/src/Analyses/JADE_OPAL_2000_S4300807.cc Fri Mar 23 15:44:13 2012 (r3649) @@ -29,8 +29,12 @@ // Projections const FinalState fs; addProjection(fs, "FS"); - addProjection(FastJets(fs, FastJets::JADE, 0.7), "JadeJets"); - addProjection(FastJets(fs, FastJets::DURHAM, 0.7), "DurhamJets"); + FastJets JadeJets = FastJets(fs, FastJets::JADE, 0.7); + FastJets DurhamJets = FastJets(fs, FastJets::DURHAM, 0.7); + JadeJets.useInvisibles(true); + DurhamJets.useInvisibles(true); + addProjection(JadeJets, "JadeJets"); + addProjection(DurhamJets, "DurhamJets"); // Histos int offset = 0;
More information about the Rivet-svn mailing list |