Skip to content
Closed
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 @@ -28,7 +28,6 @@
#include "Framework/Task.h"
#include "ITSMFTTracking/Configuration.h"
#include "ITSCAWorkflow/ConfigPreflight.h"
#include "ITSMFTTracking/ClusterDecoding.h"
#include "ITSCAWorkflow/PublicationAdapter.h"
#include "ITSMFTTracking/Tracker.h"
#include "ITSMFTTracking/TrackerTraits.h"
Expand Down Expand Up @@ -77,7 +76,6 @@ class CATrackerDPL : public o2::framework::Task
o2::itsmft::tracking::WorkflowSession mSession{"ITS", o2::itsmft::tracking::ITSNLayers};
std::unique_ptr<o2::itsmft::tracking::TrackerTraits> mTrackerTraits;
std::unique_ptr<o2::itsmft::tracking::Tracker> mTracker;
std::unique_ptr<o2::itsmft::tracking::ClusterDecoder> mClusterDecoder;
const o2::itsmft::TopologyDictionary* mDictionary = nullptr;
PublicationAdapter mPublication;
};
Expand Down
2 changes: 0 additions & 2 deletions Detectors/ITSMFT/ITS/workflow-ca/src/CATrackerSpec.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,6 @@ bool completePublication(PublicationAdapter& publication,
CATrackerDPL::CATrackerDPL(std::shared_ptr<o2::base::GRPGeomRequest> gr, WorkflowOptions options)
: mGGCCDBRequest(std::move(gr)), mUseMC(options.useMC), mOptions(std::move(options))
{
mClusterDecoder = std::make_unique<o2::itsmft::tracking::ITSGeometryClusterDecoder>();
}

void CATrackerDPL::addTruthSeedingVertices(const o2::InteractionRecord& origin, gsl::span<const o2::itsmft::ROFRecord> rofs)
Expand Down Expand Up @@ -363,7 +362,6 @@ o2::itsmft::tracking::TrackingOutcome CATrackerDPL::processTimeFrame(
source.dictionary = mDictionary;
source.labels = labels;
source.layerToSurface = kLayerToLayout;
source.decoder = mClusterDecoder.get();
return mSession.process(*mTracker, *mTrackerTraits, source, [&](const o2::InteractionRecord& origin) {
if (mOptions.vertexSource == VertexSource::Truth) {
addTruthSeedingVertices(origin, rofs);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
#include "Framework/Task.h"
#include "ITSMFTTracking/Configuration.h"
#include "MFTWorkflow/CAWorkflowOptions.h"
#include "ITSMFTTracking/ClusterDecoding.h"
#include "ITSMFTTracking/IOUtils.h"
#include "ITSMFTTracking/ITSMFTDetectorDefinitions.h"
#include "ITSMFTTracking/WorkflowSession.h"
Expand Down Expand Up @@ -74,7 +73,6 @@ class CATrackerDPL : public o2::framework::Task
o2::itsmft::tracking::WorkflowSession mSession{"MFT", o2::itsmft::tracking::MFTNLayers};
std::unique_ptr<o2::itsmft::tracking::TrackerTraits> mTrackerTraits;
std::unique_ptr<o2::itsmft::tracking::Tracker> mTracker;
std::unique_ptr<o2::itsmft::tracking::ClusterDecoder> mClusterDecoder;
const o2::itsmft::TopologyDictionary* mDictionary = nullptr;
int mMFTROFrameLengthInBC = 0;
};
Expand Down
2 changes: 0 additions & 2 deletions Detectors/ITSMFT/MFT/workflow/src/CATrackerSpec.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,6 @@ bool rofOverlapsIRFrames(const o2::itsmft::ROFRecord& rof, int rofLengthInBC,
CATrackerDPL::CATrackerDPL(std::shared_ptr<o2::base::GRPGeomRequest> gr, ca::TrackerOptions options)
: mGGCCDBRequest(std::move(gr)), mUseMC(options.useMC), mOptions(options)
{
mClusterDecoder = std::make_unique<o2::itsmft::tracking::MFTGeometryClusterDecoder>();
}

void CATrackerDPL::configureROFViews(gsl::span<const o2::itsmft::ROFRecord> rofs,
Expand Down Expand Up @@ -307,7 +306,6 @@ o2::itsmft::tracking::TrackingOutcome CATrackerDPL::processTimeFrame(
source.dictionary = mDictionary;
source.labels = labels;
source.layerToSurface = kLayerToLayout;
source.decoder = mClusterDecoder.get();
return mSession.process(*mTracker, *mTrackerTraits, source, [](const o2::InteractionRecord&) {}, [](const o2::itsmft::tracking::TrackingResult&) {});
}

Expand Down
1 change: 0 additions & 1 deletion Detectors/ITSMFT/common/tracking/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ o2_add_library(ITSMFTTracking
src/PropagatorBarrelOperations.cxx
src/PropagatorForwardOperations.cxx
src/MaterialPhysics.cxx
src/FamilyMaterialOperations.cxx
src/IndexTableConfiguration.cxx
src/TraversalTopology.cxx
src/Tracker.cxx
Expand Down

This file was deleted.

Loading
Loading