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
4 changes: 1 addition & 3 deletions Detectors/ITSMFT/ITS/tracking/src/TrackingInterface.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -120,17 +120,15 @@ void ITSTrackingInterface::initialise()
for (auto& params : trackParams) {
params.CorrType = o2::base::PropagatorImpl<float>::MatCorrType::USEMatCorrLUT;
}

// adjust pT settings to actual mag. field
for (size_t ip = 0; ip < trackParams.size(); ip++) {
auto& param = trackParams[ip];
param.TrackletMinPt *= bFactor;
for (int ilg = trackConf.MaxTrackLenght; ilg >= trackConf.MinTrackLenght; ilg--) {
int lslot = trackConf.MaxTrackLenght - ilg;
param.MinPt[lslot] *= bFactor;
param.TrackletMinPt *= bFactor;
}
}

mTracker->setParameters(trackParams);
mVertexer->setParameters(vertParams);
}
Expand Down
2 changes: 1 addition & 1 deletion GPU/GPUTracking/ITS/GPUITSFitterKernels.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#include "ITStracking/Cell.h"
#include "CommonConstants/MathConstants.h"

#ifdef CA_DEBUG
#if defined(CA_DEBUG) && !defined(GPUCA_GPUCODE_DEVICE)
#include <cstdio>
#endif

Expand Down