ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitHzz4l/DataStruct/interface/SimpleLepton.h
(Generate patch)

Comparing UserCode/MitHzz4l/DataStruct/interface/SimpleLepton.h (file contents):
Revision 1.1 by khahn, Mon Feb 13 09:52:20 2012 UTC vs.
Revision 1.2 by anlevin, Wed Feb 29 09:50:50 2012 UTC

# Line 4 | Line 4
4   #include "TROOT.h"
5   #include "TLorentzVector.h"
6  
7 + #include <iostream>
8 +
9   class SimpleLepton {
10   public :
11  
# Line 34 | Line 36 | class SimpleLepton {
36    
37    /* void print(); */
38    static bool lep_pt_sort( const SimpleLepton &l1,  const SimpleLepton &l2 ) {
39 <    if( l1.vec->Pt() >= l2.vec->Pt() ) return true;
39 >    if( l1.vec->Pt() > l2.vec->Pt() ) return true;
40 >                else return false;
41    };
42  
43   };

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines