Fork me on GitHub

source: git/cards/ILCgen/ILCgen_MuonTrackingEff.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: 1.5 KB
Line 
1
2# Tracking efficiency as given in the ILD IDR (Figure 8.2)
3# for high angles (FTD coverage): educated guess
4# A.F.Zarnecki, June 12, 2020
5
6 set EfficiencyFormula { (pt <= 0.1) * (0.00) +
7 (abs(eta) <= 1.83) * (pt > 0.1 && pt <= 0.2) * (0.70) +
8 (abs(eta) <= 1.83) * (pt > 0.2 && pt <= 0.3) * (0.93) +
9 (abs(eta) <= 1.83) * (pt > 0.3 && pt <= 0.7) * (0.995) +
10 (abs(eta) <= 1.83) * (pt > 0.7) * (1.00) +
11 (abs(eta) > 1.83 && abs(eta) <= 2.65) * (pt > 0.1 && pt <= 0.2) * (0.697) +
12 (abs(eta) > 1.83 && abs(eta) <= 2.65) * (pt > 0.2 && pt <= 0.3) * (0.925) +
13 (abs(eta) > 1.83 && abs(eta) <= 2.65) * (pt > 0.3 && pt <= 0.7) * (0.99) +
14 (abs(eta) > 1.83 && abs(eta) <= 2.65) * (pt > 0.7) * (0.995) +
15 (abs(eta) > 2.65 && abs(eta) <= 3.00) * (pt > 0.1 && pt <= 0.2) * (0.665) +
16 (abs(eta) > 2.65 && abs(eta) <= 3.00) * (pt > 0.2 && pt <= 0.3) * (0.884) +
17 (abs(eta) > 2.65 && abs(eta) <= 3.00) * (pt > 0.3 && pt <= 0.7) * (0.945) +
18 (abs(eta) > 2.65 && abs(eta) <= 3.00) * (pt > 0.7) * (0.95) +
19 (abs(eta) > 3.00) * (pt > 0.1) * (0.00) }
Note: See TracBrowser for help on using the repository browser.