Skip to content

Commit 76098d4

Browse files
committed
[ALICE3] Fix missing bool in ACTS integration
- specify since
1 parent 3df669b commit 76098d4

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,12 @@
99
// granted to it by virtue of its status as an Intergovernmental Organization
1010
// or submit itself to any jurisdiction.
1111

12+
///
1213
/// \file ClustererACTS.h
1314
/// \brief Definition of the TRK cluster finder
15+
/// \author Nicolò Jacazio, Università del Piemonte Orientale (IT)
16+
/// \since 2026-03-01
17+
///
1418

1519
#ifndef ALICEO2_TRK_CLUSTERERACTS_H
1620
#define ALICEO2_TRK_CLUSTERERACTS_H

Detectors/Upgrades/ALICE3/TRK/reconstruction/src/ClustererACTS.cxx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,12 @@
99
// granted to it by virtue of its status as an Intergovernmental Organization
1010
// or submit itself to any jurisdiction.
1111

12+
///
1213
/// \file ClustererACTS.cxx
1314
/// \brief Implementation of the TRK cluster finder with the ACTS
15+
/// \author Nicolò Jacazio, Università del Piemonte Orientale (IT)
16+
/// \since 2026-03-01
17+
///
1418

1519
#include "TRKReconstruction/ClustererACTS.h"
1620
#include "TRKBase/GeometryTGeo.h"

Detectors/Upgrades/ALICE3/TRK/workflow/include/TRKWorkflow/ClustererSpec.h

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,9 @@ class ClustererDPL : public o2::framework::Task
3232
private:
3333
bool mUseMC = true;
3434
int mNThreads = 1;
35-
#ifdef O2_WITH_ACTS
36-
bool mUseACTS = false;
37-
#endif
3835
o2::trk::Clusterer mClusterer;
3936
#ifdef O2_WITH_ACTS
37+
bool mUseACTS = false;
4038
o2::trk::ClustererACTS mClustererACTS;
4139
#endif
4240
};

Detectors/Upgrades/ALICE3/TRK/workflow/include/TRKWorkflow/TrackerSpec.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,9 @@ class TrackerDPL : public framework::Task
5858
std::shared_ptr<tbb::task_arena> mTaskArena;
5959
nlohmann::json mHitRecoConfig;
6060
TStopwatch mTimer;
61+
#ifdef O2_WITH_ACTS
62+
bool mUseACTS = false;
63+
#endif
6164
};
6265

6366
framework::DataProcessorSpec getTrackerSpec(bool useMC, const std::string& hitRecoConfig, gpu::gpudatatypes::DeviceType dType = gpu::gpudatatypes::DeviceType::CPU);

0 commit comments

Comments
 (0)