36 |
|
unsigned scID; |
37 |
|
|
38 |
|
SelectionStatus status; |
39 |
+ |
|
40 |
+ |
bool fsrRecoveryAttempted; |
41 |
|
|
42 |
< |
inline void print() { std::cout << |
43 |
< |
"type: " << type << "\t" |
42 |
> |
inline void print() { |
43 |
> |
std::cout << |
44 |
> |
"type: " << type << "\t" |
45 |
|
"pt: " << vec.Pt() << "\t" |
46 |
< |
"eta: " << vec.Eta() << std::endl; |
46 |
> |
"eta: " << vec.Eta() << "\t" |
47 |
> |
"index: " << index << std::endl; |
48 |
|
} |
49 |
|
static bool lep_pt_sort( const SimpleLepton &l1, const SimpleLepton &l2 ) { |
50 |
|
if( l1.vec.Pt() > l2.vec.Pt() ) return true; |
51 |
|
else return false; |
52 |
|
}; |
53 |
+ |
static bool lep_reversept_sort( const SimpleLepton &l1, const SimpleLepton &l2 ) { |
54 |
+ |
if( l1.vec.Pt() < l2.vec.Pt() ) return true; |
55 |
+ |
else return false; |
56 |
+ |
}; |
57 |
|
|
58 |
|
}; |
59 |
|
|