Skip to content

Commit

Permalink
Please consider the following formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
alibuild committed Jun 7, 2024
1 parent b38166f commit 48e4f96
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ class TimeFrame
}
}

virtual void setDevicePropagator(const o2::base::PropagatorImpl<float>*) {};
virtual void setDevicePropagator(const o2::base::PropagatorImpl<float>*){};

const o2::base::PropagatorImpl<float>* getDevicePropagator() const { return mPropagatorDevice; }

Expand Down
3 changes: 2 additions & 1 deletion Detectors/ITSMFT/ITS/tracking/src/Vertexer.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ float Vertexer::clustersToVertices(std::function<void(std::string s)> logger)
TrackingParameters trkPars;
trkPars.PhiBins = mTraits->getVertexingParameters().PhiBins;
trkPars.ZBins = mTraits->getVertexingParameters().ZBins;
timeInit += evaluateTask(&Vertexer::initialiseVertexer, "Vertexer initialisation", [](std::string) {}, trkPars);
timeInit += evaluateTask(
&Vertexer::initialiseVertexer, "Vertexer initialisation", [](std::string) {}, trkPars);
timeTracklet = evaluateTask(&Vertexer::findTracklets, "Vertexer tracklet finding", [](std::string) {});
nTracklets01 = mTimeFrame->getTotalTrackletsTF(0);
nTracklets12 = mTimeFrame->getTotalTrackletsTF(1);
Expand Down

0 comments on commit 48e4f96

Please sign in to comment.