3.4.3pre11
Last change
on this file since 3b3071a was f0f1443, checked in by Aleksander Filip Zarnecki <zarnecki@…>, 4 years ago |
Formating changes only...
|
-
Property mode
set to
100644
|
File size:
589 bytes
|
Rev | Line | |
---|
[d192152] | 1 | # Efficiency formula for photons in Forward BeamCal
|
---|
| 2 | # Based on IDR Figure 8.8a and Moritz Hebermehl PhD Thesis Figure 4.10
|
---|
| 3 | # A.F.Zarnecki, June 2020
|
---|
| 4 |
|
---|
| 5 | set EfficiencyFormula {
|
---|
| 6 | (energy <= 10 ) * (0.00) +
|
---|
| 7 | (energy > 10 ) * (abs(eta) > 5.88 ) * (0.00) +
|
---|
| 8 | (energy > 10 ) * (abs(eta) <= 4.25 ) * (0.98 - 1.0/energy) +
|
---|
| 9 | (energy > 10 ) * (abs(eta) > 4.25 && abs(eta) <= 5.88) *
|
---|
| 10 | (1.- pow(1.-pow(3.6-abs(eta)/1.634,pow(85./energy,1.4)),4.0)) * (0.98 - 1.0/energy)
|
---|
| 11 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.