Skip to content

Commit d0371b9

Browse files
committed
Build fix
1 parent 8fce7ee commit d0371b9

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

PWGLF/Tasks/Strangeness/strangeCascTrack.cxx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,7 @@ struct StrangeCascTrack {
123123
Configurable<float> cutMaxV0CosPA{"cutMaxV0CosPA", 1.1f, "max V0 cosPA"};
124124
Configurable<float> cutMinBachCosPA{"cutMinBachCosPA", -1.1f, "min Bachelor cosPA"};
125125
Configurable<float> cutMaxBachCosPA{"cutMaxBachCosPA", 1.1f, "max Bachelor cosPA"};
126-
Configurable<std::vector<float>> cutMinCascCosPaVsPt{
127-
"cutMinCascCosPaVsPt",
126+
Configurable<std::vector<float>> cutMinCascCosPaVsPt{"cutMinCascCosPaVsPt",
128127
{0.993, 0.993, 0.994, 0.995, 0.996, 0.997, 0.997, 0.998, 0.998, 0.999, 0.999},
129128
"Min Casc CosPA per pT bin (same binning as axisPt)"};
130129
Configurable<float> cutRapidity{"cutRapidity", 0.5f, "max rapidity"};
@@ -1143,7 +1142,7 @@ struct StrangeCascTrack {
11431142
histos.fill(HIST("Rec-Events/Mult"), mult);
11441143
analyseCascs(collision, allCascs); // process all cascades
11451144
if (doCustomGroup) {
1146-
for (int const& idx : traCascsGrouped[collision.globalIndex()]) {
1145+
for (const int idx : traCascsGrouped[collision.globalIndex()]) {
11471146
auto casc = traCascs.rawIteratorAt(idx);
11481147
analyseCascade(collision, casc);
11491148
}

0 commit comments

Comments
 (0)