Fork me on GitHub

source: git/cards/ILCgen/ILCgen_PhotonEfficiency.tcl

Last change on this file was f0f1443, checked in by Aleksander Filip Zarnecki <zarnecki@…>, 4 years ago

Formating changes only...

  • Property mode set to 100644
File size: 365 bytes
Line 
1# set EfficiencyFormula (efficiency formula as a function of eta and pt)
2# efficiency formula for photons (ECAL + LumiCal)
3
4 set EfficiencyFormula {
5 (energy <= 2 ) * (0.00) +
6 (energy > 2 ) * (abs(eta) <= 3.0) * (0.95) +
7 (energy > 2 ) * (abs(eta) > 3.0 && abs(eta) <= 4.0) * (0.90)
8 }
Note: See TracBrowser for help on using the repository browser.