Skip to content

Commit 4ae9f70

Browse files
miranov25miranov25
andauthored
[Common] Fix the bug -PR8901 (#8961)
Co-authored-by: miranov25 <marian.ivanov@cern.cg>
1 parent 3c5f92e commit 4ae9f70

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Common/TableProducer/Converters/trackQA002Converter.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ using namespace o2::framework;
2020
struct TrackQAConverter002 {
2121
Produces<aod::TracksQA_002> tracksQA_002;
2222

23-
void process000(aod::TracksQA_000 const& tracksQA_002)
23+
void process000(aod::TracksQA_000 const& tracksQA_000)
2424
{
2525
for (const auto& trackQA : tracksQA_000) {
2626
tracksQA_002(
@@ -54,7 +54,7 @@ struct TrackQAConverter002 {
5454
}
5555
PROCESS_SWITCH(TrackQAConverter002, process000, "process v000-to-v002 conversion", false);
5656

57-
void process001(aod::TracksQA_001 const& tracksQA_002)
57+
void process001(aod::TracksQA_001 const& tracksQA_001)
5858
{
5959
for (const auto& trackQA : tracksQA_001) {
6060
tracksQA_002(

0 commit comments

Comments
 (0)