Revision: | 1.3 |
Committed: | Mon Oct 17 16:23:42 2011 UTC (13 years, 6 months ago) by khahn |
Content type: | text/plain |
Branch: | MAIN |
Changes since 1.2: | +2 -2 lines |
Log Message: | *** empty log message *** |
# | User | Rev | Content |
---|---|---|---|
1 | khahn | 1.1 | #ifndef SIMPLE_LEPTON |
2 | #define SIMPLE_LEPTON | ||
3 | |||
4 | class SimpleLepton { | ||
5 | public : | ||
6 | |||
7 | int type, index, charge; | ||
8 | khahn | 1.3 | double isoTrk, isoEcal, isoHcal, isoPF03, isoPF04; |
9 | khahn | 1.1 | double ip3dSig; |
10 | khahn | 1.3 | bool is4l, isEB, isTight; |
11 | khahn | 1.1 | TLorentzVector vec; |
12 | |||
13 | static bool lep_pt_sort( const SimpleLepton &l1, const SimpleLepton &l2 ) { | ||
14 | if( l1.vec.Pt() > l2.vec.Pt() ) return true; | ||
15 | }; | ||
16 | |||
17 | }; | ||
18 | |||
19 | |||
20 | |||
21 | #endif |