diff --git a/Detectors/Upgrades/ALICE3/IOTOF/simulation/src/Detector.cxx b/Detectors/Upgrades/ALICE3/IOTOF/simulation/src/Detector.cxx index d6bf31e40bc72..b45d3861fa691 100644 --- a/Detectors/Upgrades/ALICE3/IOTOF/simulation/src/Detector.cxx +++ b/Detectors/Upgrades/ALICE3/IOTOF/simulation/src/Detector.cxx @@ -62,7 +62,7 @@ void Detector::configLayers(bool itof, bool otof, bool ftof, bool btof, std::str { const std::pair dInnerTof = {21.f, 124.f}; // Radius and length - std::pair dOuterTof = {95.f, 680.f}; // Radius and length + std::pair dOuterTof = {95.f, 680.f}; // Radius and length std::pair radiusRangeDiskTof = {15.f, 100.f}; float zForwardTof = 370.f; LOG(info) << "Configuring IOTOF layers with '" << pattern << "' pattern"; diff --git a/Detectors/Upgrades/ALICE3/TRK/reconstruction/src/ClustererACTS.cxx b/Detectors/Upgrades/ALICE3/TRK/reconstruction/src/ClustererACTS.cxx index 04e5e35acbc68..0cf7c26e0ea41 100644 --- a/Detectors/Upgrades/ALICE3/TRK/reconstruction/src/ClustererACTS.cxx +++ b/Detectors/Upgrades/ALICE3/TRK/reconstruction/src/ClustererACTS.cxx @@ -27,7 +27,7 @@ using namespace o2::trk; struct Cell2D { Cell2D(int rowv, int colv, uint32_t digIdx = 0) : row(rowv), col(colv), digitIdx(digIdx) {} int row, col; - uint32_t digitIdx; ///< Index of the original digit (for MC label retrieval) + uint32_t digitIdx; ///< Index of the original digit (for MC label retrieval) Acts::Ccl::Label label{Acts::Ccl::NO_LABEL}; };