Skip to content

Commit 4b014bd

Browse files
authored
Update PiNucleiFemto.cxx
1 parent f516172 commit 4b014bd

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

PWGCF/Femto/FemtoNuclei/TableProducer/PiNucleiFemto.cxx

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1207,9 +1207,6 @@ struct PiNucleiFemto {
12071207
12081208
pairHyperEventMixing(tracks1, V0Hypers2);
12091209
}
1210-
1211-
fillPairsHyper(collisions, pitracks, V0Hypers,/*isMixedEvent*/
1212-
/*false);
12131210
}
12141211
PROCESS_SWITCH(PiNucleiFemto, processMixedEventHyper, "Process Mixed event", false);*/
12151212

@@ -1225,8 +1222,8 @@ PROCESS_SWITCH(PiNucleiFemto, processMixedEventHyper, "Process Mixed event", fal
12251222
for (auto const& collision : collisions) {
12261223
int poolIndexPi = where_pool(collision.posZ(), collision.centFT0C());
12271224
auto& pool = All_Event_pool[poolIndexPi];
1228-
1229-
if (poolIndexPi < 0 || poolIndexPi >= All_Event_pool.size()) {
1225+
1226+
if (poolIndexPi < 0 || static_cast<size_t>(poolIndexPi) >= All_Event_pool.size()) {
12301227
continue;
12311228
}
12321229

0 commit comments

Comments
 (0)