Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,12 @@
// granted to it by virtue of its status as an Intergovernmental Organization
// or submit itself to any jurisdiction.

///
/// \file ClustererACTS.h
/// \brief Definition of the TRK cluster finder
/// \author Nicolò Jacazio, Università del Piemonte Orientale (IT)
/// \since 2026-03-01
///

#ifndef ALICEO2_TRK_CLUSTERERACTS_H
#define ALICEO2_TRK_CLUSTERERACTS_H
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,12 @@
// granted to it by virtue of its status as an Intergovernmental Organization
// or submit itself to any jurisdiction.

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

#include "TRKReconstruction/ClustererACTS.h"
#include "TRKBase/GeometryTGeo.h"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,9 @@ class ClustererDPL : public o2::framework::Task
private:
bool mUseMC = true;
int mNThreads = 1;
#ifdef O2_WITH_ACTS
bool mUseACTS = false;
#endif
o2::trk::Clusterer mClusterer;
#ifdef O2_WITH_ACTS
bool mUseACTS = false;
o2::trk::ClustererACTS mClustererACTS;
#endif
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@ class TrackerDPL : public framework::Task
std::shared_ptr<tbb::task_arena> mTaskArena;
nlohmann::json mHitRecoConfig;
TStopwatch mTimer;
#ifdef O2_WITH_ACTS
bool mUseACTS = false;
#endif
};

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