Fork me on GitHub

source: git/cards/ILCgen/ILCgen_ElectronMomentumSmearing.tcl@ cbeb9b2

3.4.3pre04
Last change on this file since cbeb9b2 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: 545 bytes
Line 
1
2# Track momentum resolution dpt/pt
3# based on parametrisation of ILD IDR results (Figure 8.1a)
4# A.F.Zarnecki, June 12, 2020
5
6
7set ResolutionFormula {
8
9(abs(eta) <= 2.0) *
10 exp( -6.82012 - 0.284133*abs(eta) + 0.64585*eta*eta
11 + (0.829675 -0.188197*abs(eta) + 0.106226 * eta*eta - 1.0) * log(pt)
12 + (0.0766417-0.00435667*abs(eta) + 0.00174804*eta*eta) * log(pt)*log(pt))
13
14+
15
16(abs(eta) > 2.0 && abs(eta) <= 3.0) *
17 exp( -4.54609
18 + ( 0.87526 - 1.0) * log(pt)
19 + (-0.0800672 + 0.0891669 * abs(eta)) * log(pt)*log(pt))
20
21}
22
Note: See TracBrowser for help on using the repository browser.