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
2 changes: 1 addition & 1 deletion PWGLF/TableProducer/Nuspex/hyperRecoTask.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ struct hyperRecoTask {
}
auto& heTrack = isHe ? posTrack : negTrack;
auto& piTrack = isHe ? negTrack : posTrack;
if (heTrack.tpcNClsFound() < nTPCClusMin || piTrack.tpcNClsFound() < nTPCClusMin){
if (heTrack.tpcNClsFound() < nTPCClusMin || piTrack.tpcNClsFound() < nTPCClusMin) {
continue;
}

Expand Down
2 changes: 1 addition & 1 deletion PWGLF/Utils/svPoolCreator.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class svPoolCreator

void setTimeMargin(float timeMargin) { timeMarginNS = timeMargin; }
void setFitter(const o2::vertexing::DCAFitterN<2>& fitter) { this->fitter = fitter; }
void setSkipAmbiTracks(){ skipAmbiTracks = true; }
void setSkipAmbiTracks() { skipAmbiTracks = true; }
o2::vertexing::DCAFitterN<2>* getFitter() { return &fitter; }
std::array<std::vector<TrackCand>, 4> getTrackCandPool() { return trackCandPool; }

Expand Down