# | 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 | }; |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |