Skip to content

Commit 37dabe0

Browse files
authored
Add comments for ITS3 LUT (#43)
- ITS3 LUT parameters validated
1 parent 51921db commit 37dabe0

File tree

1 file changed

+18
-9
lines changed

1 file changed

+18
-9
lines changed

src/lutWrite.its3.cc

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,29 @@ void fatInit_its3(float field = 0.5, float rmin = 100.) {
1414
fat.SetBField(field);
1515
fat.SetdNdEtaCent(400.);
1616

17-
Double_t x0BP = 0.0014; // 500 mum Be
18-
Double_t xrhoBP = 9.24e-02; // 500 mum Be
17+
const Double_t x0BP = 0.0014; // 500 mum Be
18+
const Double_t xrhoBP = 9.24e-02; // 500 mum Be
1919

2020
// dummy vertex for matrix calculation
2121
fat.AddLayer((char *)"vertex", 0.0, 0, 0);
2222
fat.AddLayer((char *)"bpipe", 1.625, x0BP, xrhoBP); // 500 mum Be beam pipe
2323

24-
Double_t x0IB = 0.0005; // X/X0 of the inner barrel (first three layers)
25-
Double_t x0OB = 0.008; // X/X0 of the outer barrel
26-
Double_t resRPhi = 0.0006; // Resolution in Rphi
27-
Double_t resZ = 0.0006; // Resolution in Z
28-
Double_t eff = 0.98; // Efficiency
29-
Double_t xrhoIB = 1.1646e-02; // Surface density for 50 mum thick Si
30-
Double_t xrhoOB = 1.1646e-01; // Surface density for 500 mum thick Si
24+
// X/X0 of the inner barrel first three layers), values taken from the LOI of
25+
// the ITS3
26+
const Double_t x0IB = 0.0005;
27+
// X/X0 of the outer barrel, values taken from the TDR of ITS upgrade
28+
const Double_t x0OB = 0.008;
29+
// Resolution in Rphi values taken from A. Kalweit (table presented at the
30+
// Physics Forum on 24th Feb. 2021) the value is in the middle of 15 and 30
31+
// micron pitch
32+
const Double_t resRPhi = 0.0006;
33+
// Resolution in Z, values taken from A. Kalweit (table presented at the
34+
// Physics Forum on 24th Feb. 2021) the value is in the middle of 15 and 30
35+
// micron pitch
36+
const Double_t resZ = 0.0006;
37+
const Double_t eff = 0.98; // Efficiency (lower limit)
38+
const Double_t xrhoIB = 1.1646e-02; // Surface density for 50 mum thick Si
39+
const Double_t xrhoOB = 1.1646e-01; // Surface density for 500 mum thick Si
3140

3241
const Double_t x0Foam = 0.0008; // X0 ~710cm for 0.6cm thick foam
3342
float foam_radius = 9.370 * x0IB; // width of a chip

0 commit comments

Comments
 (0)