Fork me on GitHub

source: git/cards/ILCgen/ILCgen_BeamCalEfficiency.tcl@ aafe927

Last change on this file since aafe927 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
RevLine 
[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 {efficiency formula as a function of eta and pt}
6
7set 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.