Skip to content

Commit 37fe29a

Browse files
committed
Update
1 parent 0c6cf85 commit 37fe29a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

ALICE3/Core/FastTracker.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ void FastTracker::AddSiliconALICE3v2(std::vector<float> pixelResolution)
144144
AddLayer("B10", 80., 250, x0OT, xrhoOT, resRPhiOT, resZOT, eff, 1);
145145
}
146146

147-
void FastTracker::AddSiliconALICE3(float VDX0Scale, std::vector<float> pixelResolution)
147+
void FastTracker::AddSiliconALICE3(float scaleX0VD, std::vector<float> pixelResolution)
148148
{
149149
float x0Pipe0 = 0.001592; // 200 um AlBe
150150
float x0VDL0 = 0.00076; // 30 um Si + 50 um glue + carbon foam 0.03%
@@ -170,9 +170,9 @@ void FastTracker::AddSiliconALICE3(float VDX0Scale, std::vector<float> pixelReso
170170
float eff = 1.00;
171171

172172
AddLayer("bpipe0", 0.48, 250, x0Pipe0, xrhoPipe0, 0.0f, 0.0f, 0.0f, 0); // 150 mum Be
173-
AddLayer("B00", 0.5, 250, x0VDL0 * VDX0Scale, xrhoVDL0, resRPhiVD, resZVD, eff, 1);
174-
AddLayer("B01", 1.2, 250, x0VDL1 * VDX0Scale, xrhoVDL1, resRPhiVD, resZVD, eff, 1);
175-
AddLayer("B02", 2.5, 250, x0VDL2 * VDX0Scale, xrhoVDL2, resRPhiVD, resZVD, eff, 1);
173+
AddLayer("B00", 0.5, 250, x0VDL0 * scaleX0VD, xrhoVDL0, resRPhiVD, resZVD, eff, 1);
174+
AddLayer("B01", 1.2, 250, x0VDL1 * scaleX0VD, xrhoVDL1, resRPhiVD, resZVD, eff, 1);
175+
AddLayer("B02", 2.5, 250, x0VDL2 * scaleX0VD, xrhoVDL2, resRPhiVD, resZVD, eff, 1);
176176
AddLayer("coldplate", 2.6, 250, x0Coldplate, xrhoColdplate, 0.0f, 0.0f, 0.0f, 0); // 500 mum Be
177177
AddLayer("bpipe1", 5.7, 250, x0Pipe1, xrhoPipe1, 0.0f, 0.0f, 0.0f, 0); // 500 mum Be
178178
AddLayer("B03", 7., 250, x0OT, xrhoOT, resRPhiOT, resZOT, eff, 1);

ALICE3/Core/FastTracker.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class FastTracker
5959

6060
void AddSiliconALICE3v4(std::vector<float> pixelResolution);
6161
void AddSiliconALICE3v2(std::vector<float> pixelResolution);
62-
void AddSiliconALICE3(float VDX0Scale, std::vector<float> pixelResolution);
62+
void AddSiliconALICE3(float scaleX0VD, std::vector<float> pixelResolution);
6363
void AddTPC(float phiResMean, float zResMean);
6464

6565
void Print();

0 commit comments

Comments
 (0)