Skip to content
Merged
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 @@ -353,7 +353,7 @@ struct HfCandidateCreatorCharmResoReduced {

int numFills = (cfgTrackRotation.enable) ? cfgTrackRotation.numRotations : 1; // number of times we fil the tables: default 1, but more in case of track rotation

for (int iFill{0}; iFill<numFills; ++iFill) {
for (int iFill{0}; iFill < numFills; ++iFill) {

std::array<float, 3> pVecV0Tr = candV0Tr.pVector();
if (cfgTrackRotation.enable) { // let's rotate
Expand Down
Loading