Skip to content

Commit 0b663c5

Browse files
authored
[PWGEM/PhotonMeson] fix to process function names (AliceO2Group#10434)
1 parent d5b481d commit 0b663c5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

PWGEM/PhotonMeson/TableProducer/createEMEventPhoton.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -229,17 +229,17 @@ struct CreateEMEventPhoton {
229229
}
230230
PROCESS_SWITCH(CreateEMEventPhoton, processEventJJMC, "process event info", false);
231231

232-
void procesEeventCent(MyCollisionsCent const& collisions, MyBCs const& bcs)
232+
void processEvent_Cent(MyCollisionsCent const& collisions, MyBCs const& bcs)
233233
{
234234
skimEvent<false, EMEventType::kEventCent>(collisions, bcs);
235235
}
236-
PROCESS_SWITCH(CreateEMEventPhoton, procesEeventCent, "process event info", false);
236+
PROCESS_SWITCH(CreateEMEventPhoton, processEvent_Cent, "process event info", false);
237237

238-
void processEventCent_Qvec(MyCollisionsCentQvec const& collisions, MyBCs const& bcs)
238+
void processEvent_Cent_Qvec(MyCollisionsCentQvec const& collisions, MyBCs const& bcs)
239239
{
240240
skimEvent<false, EMEventType::kEventCent_Qvec>(collisions, bcs);
241241
}
242-
PROCESS_SWITCH(CreateEMEventPhoton, processEventCent_Qvec, "process event info", false);
242+
PROCESS_SWITCH(CreateEMEventPhoton, processEvent_Cent_Qvec, "process event info", false);
243243

244244
void processEventMC_Cent(MyCollisionsMCCent const& collisions, MyBCs const& bcs)
245245
{

0 commit comments

Comments
 (0)