Fork me on GitHub

source: git/cards/ILCgen/ILCgen_ElectronEfficiency.tcl@ d192152

Last change on this file since d192152 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: 435 bytes
Line 
1
2 # set EfficiencyFormula {efficiency formula as a function of eta and pt}
3
4# efficiency formula for electrons (ECAL and LumiCal)
5# LumiCal added for consistency: not in tracking range
6
7 set EfficiencyFormula {
8 (energy <= 2 ) * (0.00) +
9 (energy > 2 ) * (abs(eta) <= 3.0) * (0.95) +
10 (energy > 2 ) * (abs(eta) > 3.0 && abs(eta) <= 4.0) * (0.90)
11 }
Note: See TracBrowser for help on using the repository browser.