Last change
on this file since e01b141 was d192152, checked in by Aleksander Filip Zarnecki <zarnecki@…>, 4 years ago |
Generic ILC detector model for Delphes. First import from iLCSoft/ILCDelphes
|
-
Property mode
set to
100644
|
File size:
663 bytes
|
Line | |
---|
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 {efficiency formula as a function of eta and pt}
|
---|
6 |
|
---|
7 | set EfficiencyFormula {
|
---|
8 | (energy <= 10 ) * (0.00) +
|
---|
9 | (energy > 10 ) * (abs(eta) > 5.88 ) * (0.00) +
|
---|
10 | (energy > 10 ) * (abs(eta) <= 4.25 ) * (0.98 - 1.0/energy) +
|
---|
11 | (energy > 10 ) * (abs(eta) > 4.25 && abs(eta) <= 5.88) *
|
---|
12 | (1.- pow(1.-pow(3.6-abs(eta)/1.634,pow(85./energy,1.4)),4.0)) * (0.98 - 1.0/energy)
|
---|
13 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.