Skip to content

Commit 20d4ac9

Browse files
committed
Adapt to the new output structure of ITS vertexing
Requires AliceO2Group/AliceO2#15188
1 parent 8fc229f commit 20d4ac9

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Modules/ITS/src/ITSTrackTask.cxx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@
1919
#include <DataFormatsITS/TrackITS.h>
2020
#include <DataFormatsITSMFT/ROFRecord.h>
2121
#include <Framework/InputRecord.h>
22-
#include "ReconstructionDataFormats/Vertex.h"
23-
#include "ReconstructionDataFormats/PrimaryVertex.h"
22+
#include "DataFormatsITS/Vertex.h"
2423
#include "ITStracking/IOUtils.h"
2524
#include <DataFormatsITSMFT/ClusterTopology.h>
2625
#include "Common/Utils.h"
@@ -138,7 +137,7 @@ void ITSTrackTask::monitorData(o2::framework::ProcessingContext& ctx)
138137
auto trackRofArr = ctx.inputs().get<gsl::span<o2::itsmft::ROFRecord>>("rofs");
139138
auto clusRofArr = ctx.inputs().get<gsl::span<o2::itsmft::ROFRecord>>("clustersrof");
140139
auto clusArr = ctx.inputs().get<gsl::span<o2::itsmft::CompClusterExt>>("compclus");
141-
auto vertexArr = ctx.inputs().get<gsl::span<o2::dataformats::Vertex<o2::dataformats::TimeStamp<int>>>>("Vertices");
140+
auto vertexArr = ctx.inputs().get<gsl::span<o2::its::Vertex>>("Vertices");
142141
auto vertexRofArr = ctx.inputs().get<gsl::span<o2::itsmft::ROFRecord>>("Verticesrof");
143142

144143
auto clusIdx = ctx.inputs().get<gsl::span<int>>("clusteridx");

0 commit comments

Comments
 (0)