Skip to content

Commit

Permalink
Fix pt cut
Browse files Browse the repository at this point in the history
* fix pt cut to reject pt lower that ptcut_
  • Loading branch information
amarini committed Jul 15, 2015
1 parent 5f84cce commit ccb0f13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Tau.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Tau::Tau() : Lepton(){
int Tau::IsTau(){
if (id<idcut_ ) return 0;
if (iso2 >= isocut_ ) return 0;
if ( Pt() >= ptcut_ ) return 0;
if ( Pt() < ptcut_ ) return 0;
return 1;
}
// Local Variables:
Expand Down

0 comments on commit ccb0f13

Please sign in to comment.