Skip to content

Commit d10bb4b

Browse files
committed
ALICE3: clang-format
1 parent 3cda4e9 commit d10bb4b

4 files changed

Lines changed: 7 additions & 8 deletions

File tree

Detectors/Upgrades/ALICE3/GlobalReconstruction/reconstruction/include/ALICE3GlobalReconstruction/GPUExternalAllocator.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ class GPUExternalAllocator final : public o2::its::ExternalAllocator
3838
void releaseAll();
3939

4040
private:
41-
enum class AllocationSpace { Host, Device };
41+
enum class AllocationSpace { Host,
42+
Device };
4243

4344
struct AllocationMeta {
4445
AllocationSpace space;

Detectors/Upgrades/ALICE3/GlobalReconstruction/reconstruction/include/ALICE3GlobalReconstruction/TimeFrameMixin.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -533,10 +533,10 @@ void TimeFrameMixin<nLayers, Base>::addTruthSeedingVertices(gsl::span<const o2::
533533
clockLayer.getROFStartInBC(rofId),
534534
static_cast<o2::its::TimeStampErrorType>(rofLength)});
535535
vert.setNContributors(std::max(1L, std::ranges::count_if(
536-
mcReader.getTracks(iSrc, iEve),
537-
[](const auto& trk) {
538-
return trk.isPrimary() && trk.GetPt() > 0.05 && std::abs(trk.GetEta()) < 1.1;
539-
})));
536+
mcReader.getTracks(iSrc, iEve),
537+
[](const auto& trk) {
538+
return trk.isPrimary() && trk.GetPt() > 0.05 && std::abs(trk.GetEta()) < 1.1;
539+
})));
540540
vert.setXYZ((float)eve.GetX(), (float)eve.GetY(), (float)eve.GetZ());
541541
vert.setChi2(1);
542542
constexpr float cov = 50e-9f;

Detectors/Upgrades/ALICE3/GlobalReconstruction/workflow/src/TrackerSpec.cxx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,8 +227,6 @@ std::vector<o2::its::TrackingParameters> TrackerDPL::createTrackingParamsFromCon
227227
}
228228
};
229229

230-
231-
232230
if (mHitRecoConfig.contains("trackingparams") && mHitRecoConfig["trackingparams"].is_array()) {
233231
loadTrackingParamsFromJson(trackingParams, mHitRecoConfig["trackingparams"]);
234232
} else if (mClusterRecoConfig.contains("trackingparams") && mClusterRecoConfig["trackingparams"].is_array()) {

Detectors/Upgrades/ALICE3/TRK/reconstruction/include/TRKReconstruction/Clusterer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ class Clusterer
173173
std::vector<o2::trk::MC2ROFRecord>* clusterMC2ROFs = nullptr);
174174

175175
static o2::math_utils::Point3D<float> getClusterLocalCoordinates(const Cluster& cluster, const uint8_t* patt,
176-
float yPlaneMLOT = 0.f) noexcept;
176+
float yPlaneMLOT = 0.f) noexcept;
177177

178178
protected:
179179
int mNHugeClus = 0;

0 commit comments

Comments
 (0)