1 |
|
#ifndef SCALEFACTORS_H |
2 |
|
#define SCALEFACTORS_H |
3 |
|
|
4 |
< |
float dileptonTagAndProbeScaleFactor(int idx); |
4 |
> |
float dileptonTagAndProbeScaleFactor(int hyp_idx); |
5 |
|
float tagAndProbeScaleFactor(int id, float pt, float eta); |
6 |
|
|
7 |
< |
float dilepTriggerScaleFactor(int idx); |
8 |
< |
float triggerScaleFactor(int id, float pt, float eta); |
7 |
> |
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 |
|
|
19 |
|
#endif |