Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion PWGJE/TableProducer/quarkGluonJetsProducer.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@

namespace qgmlconst
{
DECLARE_SOA_INDEX_COLUMN(QGMLJet, qGMLJet);
DECLARE_SOA_INDEX_COLUMN(QGMLJET, qGMLJet);

Check failure on line 97 in PWGJE/TableProducer/quarkGluonJetsProducer.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[name/o2-column]

Use UpperCamelCase for names of O2 columns and matching lowerCamelCase names for their getters.

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What are you trying to fix?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

When I try to run on the Hyperloop I get the error: Index on O2qgmljet but no tree found

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is not going to fix it. You need the name of the iterator here which was correct. Your change does not even compile which is the minimum to test before you even commit your changes locally. Your problem on Hyperloop is caused by something else. Maybe you don't save the referenced table in the output which makes the merging step fail.

DECLARE_SOA_COLUMN(Pt, pt, float);
DECLARE_SOA_COLUMN(P, p, float);
DECLARE_SOA_COLUMN(Eta, eta, float);
Expand Down
Loading