Skip to content

Commit 4e838c1

Browse files
committed
fixing warnings
1 parent c63fdbb commit 4e838c1

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

PWGDQ/Tasks/v0selector.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ struct v0selector {
207207

208208
std::vector<int8_t> v0pidmap;
209209
v0pidmap.clear();
210-
if(produceV0ID.value) {
210+
if (produceV0ID.value) {
211211
v0pidmap.resize(V0s.size(), -1);
212212
}
213213
for (auto& V0 : V0s) {
@@ -322,7 +322,7 @@ struct v0selector {
322322
if (produceV0ID.value) {
323323
v0pidmap[gix] = id;
324324
}
325-
};
325+
};
326326
if (v0id == kGamma) { // photon conversion
327327
if (fillhisto) {
328328
registry.fill(HIST("hMassGamma"), V0radius, mGamma);
@@ -346,7 +346,7 @@ struct v0selector {
346346
if ((0.48 < mK0S && mK0S < 0.51) && std::abs(V0.posTrack_as<FullTracksExt>().tpcNSigmaPi()) < cutNsigmaPiTPC && std::abs(V0.negTrack_as<FullTracksExt>().tpcNSigmaPi()) < cutNsigmaPiTPC) {
347347
pidmap[V0.posTrackId()] |= (uint8_t(1) << kK0S);
348348
pidmap[V0.negTrackId()] |= (uint8_t(1) << kK0S);
349-
storeV0AddID(V0.globalIndex(), kK0S);
349+
storeV0AddID(V0.globalIndex(), kK0S);
350350
}
351351
} else if (v0id == kLambda) { // L->p + pi-
352352
if (fillhisto) {
@@ -371,7 +371,7 @@ struct v0selector {
371371
// printf("negTrackId = %d\n",V0.negTrackId());
372372

373373
} // end of V0 loop
374-
if (produceV0ID.value) {
374+
if (produceV0ID.value) {
375375
for (auto& V0 : V0s) {
376376
v0mapID(v0pidmap[V0.globalIndex()]);
377377
}

0 commit comments

Comments
 (0)