Skip to content

Commit 3296600

Browse files
committed
U
1 parent d96bd26 commit 3296600

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ALICE3/TableProducer/OTF/onTheFlyDetectorGeometryProvider.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ struct OnTheFlyDetectorGeometryProvider {
4545
LOG(fatal) << "No detector configuration files provided.";
4646
return;
4747
}
48-
for (const auto& configFile : detectorConfiguration.value) {
48+
for (auto& configFile : detectorConfiguration.value) {
4949
LOG(info) << "Loading detector geometry from configuration file: " << configFile;
5050
// If the filename starts with ccdb: then take the file from the ccdb
5151
if (configFile.rfind("ccdb:", 0) == 0) {

ALICE3/TableProducer/OTF/onTheFlyTracker.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -587,7 +587,7 @@ struct OnTheFlyTracker {
587587
} else if (fastPrimaryTrackerSettings.alice3geo.value == "2") {
588588
fastPrimaryTracker.AddSiliconALICE3(1., {0.00025, 0.00025, 0.001, 0.001});
589589
} else {
590-
fastTracker[icfg]->AddGenericDetector(geoContainer.getEntry(icfg).getConfigurations(), ccdb.operator->());
590+
fastTracker[icfg]->AddGenericDetector(geoContainer.getEntry(0).getConfigurations(), ccdb.operator->());
591591
}
592592

593593
// print fastTracker settings

0 commit comments

Comments
 (0)