From 0b09b1c47b26ad0a0b14de9bc3b370286f2bd96e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADt=20Ku=C4=8Dera?= <26327373+vkucera@users.noreply.github.com> Date: Thu, 2 Apr 2026 16:06:44 +0200 Subject: [PATCH] Fix compilation errors in macros --- ALICE3/Macros/drawFastTracker.C | 2 +- ALICE3/Macros/testFastTracker.C | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ALICE3/Macros/drawFastTracker.C b/ALICE3/Macros/drawFastTracker.C index f15ebaacc68..71f44970d37 100644 --- a/ALICE3/Macros/drawFastTracker.C +++ b/ALICE3/Macros/drawFastTracker.C @@ -75,7 +75,7 @@ void drawFastTracker(float magneticField = 5.f, // in units of kGauss fastTracker.AddLayer("B11", 100., 250, x0OB, xrhoOB, resRPhiOB, resZOB, eff, 1); } else { std::vector pixelRes{0.025, 0.025, 0.01, 0.01}; - fastTracker.AddSiliconALICE3v4(pixelRes); + // fastTracker.AddSiliconALICE3v4(pixelRes); // FIXME } fastTracker.Print(); diff --git a/ALICE3/Macros/testFastTracker.C b/ALICE3/Macros/testFastTracker.C index c07b7e3ac98..68d416295a8 100644 --- a/ALICE3/Macros/testFastTracker.C +++ b/ALICE3/Macros/testFastTracker.C @@ -27,7 +27,7 @@ void testFastTracker(std::string geometryFile = "a3geo.ini") // auto& ccdb = o2::ccdb::BasicCCDBManager::instance(); // ccdb.setURL("http://alice-ccdb.cern.ch"); o2::fastsim::FastTracker fastTracker; - fastTracker.AddGenericDetector(geometryFile); + // fastTracker.AddGenericDetector(geometryFile); // FIXME // fastTracker.AddGenericDetector(geometryFile, &ccdb); fastTracker.Print(); }