ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitPhysics/SelMods/src/HwwExampleAnalysisMod.cc
(Generate patch)

Comparing UserCode/MitPhysics/SelMods/src/HwwExampleAnalysisMod.cc (file contents):
Revision 1.3 by ceballos, Tue Oct 5 06:42:48 2010 UTC vs.
Revision 1.4 by ceballos, Tue Oct 12 00:44:14 2010 UTC

# Line 145 | Line 145 | void HwwExampleAnalysisMod::Process()
145    // At least two leptons in the event
146    if (CleanLeptons->GetEntries() < 2) return;
147    // Pt1 > 20 && Pt2 > 10
148 <  if(CleanLeptons->At(0)->Pt() <= 20 || CleanLeptons->At(1)->Pt() <= 20) return;
148 >  if(CleanLeptons->At(0)->Pt() <= 20 || CleanLeptons->At(1)->Pt() <= 10) return;
149    // opposite charge leptons
150    if(CleanLeptons->At(0)->Charge() * CleanLeptons->At(1)->Charge() > 0) return;
151      

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines