Fork me on GitHub

source: git/cards/ILCgen/ILCgen_ECAL_Resolution.tcl@ 4e5ed02

Last change on this file since 4e5ed02 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: 393 bytes
Line 
1# P.Sopicki, corrected by A.F.Zarnecki: based on email from D.Jeans
2# ECAL and LumiCal resolution: same formula used at the moment
3#
4# set ResolutionFormula {resolution formula as a function of eta and energy}
5set ResolutionFormula {
6 (abs(eta) <= 3 ) * sqrt(energy^2*0.01^2 + energy*0.17^2)+
7 (abs(eta) > 3 && abs(eta) <= 4 ) * sqrt(energy^2*0.01^2 + energy*0.17^2)
8 }
Note: See TracBrowser for help on using the repository browser.