|
[Rivet-svn] r2443 - trunk/src/Analysesblackhole at projects.hepforge.org blackhole at projects.hepforge.orgTue May 11 13:17:28 BST 2010
Author: buckley Date: Tue May 11 13:21:27 2010 New Revision: 2443 Log: Another CDF 1994 fix... definitely compiles now :) Modified: trunk/src/Analyses/CDF_1994_S2952106.cc Modified: trunk/src/Analyses/CDF_1994_S2952106.cc ============================================================================== --- trunk/src/Analyses/CDF_1994_S2952106.cc Tue May 11 12:17:00 2010 (r2442) +++ trunk/src/Analyses/CDF_1994_S2952106.cc Tue May 11 13:21:27 2010 (r2443) @@ -35,7 +35,8 @@ // Veto (anti)neutrinos, and muons with pT above 1.0 GeV /// @todo This doesn't seem to be being used for anything... - VetoedFinalState vfs(VisibleFinalState(fs)); + VisibleFinalState visfs(fs); + VetoedFinalState vfs(visfs); vfs.addVetoPairDetail(MUON, 1.0*GeV, MAXDOUBLE); addProjection(vfs, "VFS"); @@ -117,7 +118,7 @@ // Check there isn't too much missing Et const MissingMomentum& caloMissEt = applyProjection<MissingMomentum>(event, "CalMET"); - getLog() << Log::DEBUG << "Missing ET = " << caloMissEt.visibleMomentum().ET()/GeV << " GeV" << endl; + getLog() << Log::DEBUG << "Missing ET = " << caloMissEt.visibleMomentum().Et()/GeV << " GeV" << endl; /// @todo Looks dodgy to me... only difference is pT vs. Et. Really? if ((caloMissEt.visibleMomentum().pT()/GeV)/sqrt(caloMissEt.visibleMomentum().Et()/GeV) > 6.0) vetoEvent;
More information about the Rivet-svn mailing list |