Revision: | 1.2 |
Committed: | Mon May 28 19:31:28 2012 UTC (12 years, 11 months ago) by kelley |
Content type: | text/plain |
Branch: | MAIN |
Changes since 1.1: | +12 -3 lines |
Log Message: | added implementation for triggerScaleFactor functions |
# | User | Rev | Content |
---|---|---|---|
1 | fgolf | 1.1 | #ifndef SCALEFACTORS_H |
2 | #define SCALEFACTORS_H | ||
3 | |||
4 | kelley | 1.2 | float dileptonTagAndProbeScaleFactor(int hyp_idx); |
5 | fgolf | 1.1 | float tagAndProbeScaleFactor(int id, float pt, float eta); |
6 | |||
7 | kelley | 1.2 | enum TrigEffType |
8 | { | ||
9 | DzDbl, | ||
10 | LeadDbl, | ||
11 | Sgl, | ||
12 | TrailDbl, | ||
13 | N_TrigEffType | ||
14 | }; | ||
15 | |||
16 | float dilepTriggerScaleFactor(enum TrigEffType trig_eff_type, int hyp_idx); | ||
17 | float triggerScaleFactor(enum TrigEffType trig_eff_type, int id, float pt, float eta); | ||
18 | fgolf | 1.1 | |
19 | #endif |