ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitHzz4l/LeptonSelection/src/MuonSelection.cc
(Generate patch)

Comparing UserCode/MitHzz4l/LeptonSelection/src/MuonSelection.cc (file contents):
Revision 1.13 by khahn, Sat May 5 21:43:54 2012 UTC vs.
Revision 1.14 by khahn, Sun May 6 23:51:01 2012 UTC

# Line 74 | Line 74 | SelectionStatus muonPreSelection( Contro
74    if(ctrl.debug) cout << "iS fo? ... " << ret << endl;  
75    ret &= ( fabs(mu->Ip3dPVSignificance()) < 4 );
76    if(ctrl.debug) cout << "and pass IP (" << mu->Ip3dPVSignificance() << ") ? ... " << ret << endl;  
77 <  ret &= ( mu->Pt() > 5 );
77 >  ret &= ( mu->Pt() >= 5 );
78    if(ctrl.debug) cout << "and >5 GeV (" << mu->Pt() << ") ? ... " << ret << endl;  
79    ret &= ( fabs(mu->Eta()) <= 2.4 );
80    if(ctrl.debug) cout << "and < 2.4 eta (" << mu->Eta() << ")? ... " << ret << endl;  
# Line 106 | Line 106 | SelectionStatus muonReferencePreSelectio
106    if(ctrl.debug) cout << "inside muonpresel ... " << endl;
107    ret &= ( mu->Ip3dPVSignificance() < 100 );
108    if(ctrl.debug) cout << "and pass IP (" << mu->Ip3dPVSignificance() << ") ? ... " << ret << endl;  
109 <  ret &= ( mu->Pt() > 5 );
109 >  ret &= ( mu->Pt() >= 5 );
110    if(ctrl.debug) cout << "and >5 GeV (" << mu->Pt() << ") ? ... " << ret << endl;  
111    ret &= ( fabs(mu->Eta()) <= 2.4 );
112    if(ctrl.debug) cout << "and < 2.4 eta (" << mu->Eta() << ")? ... " << ret << endl;  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines