25 |
|
double XsecOverObserved(const SusyScan* p){ return (ObsXsecLimit(p)==0 ? 9999. : Xsection(p)/ObsXsecLimit(p)); } |
26 |
|
double XsecOverExpected(const SusyScan* p){ return (ObsXsecLimit(p)==0 ? 9999. : Xsection(p)/ObsXsecLimit(p)); } |
27 |
|
double SignalAcceptance(const SusyScan* p){ return p->signal / (Luminosity*Xsection(p)); } |
28 |
< |
double NSignExpLimit(const SusyScan* p){ return p->signal * ExpXsecLimit(p)/Xsection(p); } |
28 |
> |
double ExpNSignLimit(const SusyScan* p){ return p->signal * ExpXsecLimit(p)/Xsection(p); } |
29 |
> |
double ObsNSignLimit(const SusyScan* p){ return p->signal * ObsXsecLimit(p)/Xsection(p); } |
30 |
|
|
31 |
|
|
32 |
|
|