Skip to content

Commit

Permalink
Fix the bug -PR8901
Browse files Browse the repository at this point in the history
  • Loading branch information
miranov25 committed Dec 12, 2024
1 parent d671b4c commit 77e6d4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Common/TableProducer/Converters/trackQA002Converter.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ using namespace o2::framework;
struct TrackQAConverter002 {
Produces<aod::TracksQA_002> tracksQA_002;

Check warning on line 21 in Common/TableProducer/Converters/trackQA002Converter.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[name/function-variable]

Use lowerCamelCase for names of functions and variables.

void process000(aod::TracksQA_000 const& tracksQA_002)
void process000(aod::TracksQA_000 const& tracksQA_000)
{
for (const auto& trackQA : tracksQA_000) {
tracksQA_002(
Expand Down Expand Up @@ -54,7 +54,7 @@ struct TrackQAConverter002 {
}
PROCESS_SWITCH(TrackQAConverter002, process000, "process v000-to-v002 conversion", false);

void process001(aod::TracksQA_001 const& tracksQA_002)
void process001(aod::TracksQA_001 const& tracksQA_001)
{
for (const auto& trackQA : tracksQA_001) {
tracksQA_002(
Expand Down

0 comments on commit 77e6d4b

Please sign in to comment.