Skip to content
Closed
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/DataModel/SlimTables.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@
#define PWGJE_DATAMODEL_SLIMTABLES_H_

#include "PWGJE/Core/JetDerivedDataUtilities.h"

#include <Framework/ASoA.h>
#include <Framework/AnalysisDataModel.h>

#include <Rtypes.h>

#include <cstdint>


namespace o2::aod
{

Expand Down Expand Up @@ -71,12 +71,12 @@

namespace slimtracks
{
DECLARE_SOA_INDEX_COLUMN(Collision, collisionId);

Check failure on line 74 in PWGJE/DataModel/SlimTables.h

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.
DECLARE_SOA_INDEX_COLUMN(Track, track);
DECLARE_SOA_COLUMN(Pt, pt, float);
DECLARE_SOA_COLUMN(Eta, eta, float);
DECLARE_SOA_COLUMN(Phi, phi, float);
DECLARE_SOA_COLUMN(DCAXY, dcaXY, float);

Check failure on line 79 in PWGJE/DataModel/SlimTables.h

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.
DECLARE_SOA_DYNAMIC_COLUMN(Px, px,
[](float pt, float phi) -> float { return pt * std::cos(phi); });
DECLARE_SOA_DYNAMIC_COLUMN(Py, py,
Expand All @@ -100,7 +100,7 @@

namespace slimparticles
{
DECLARE_SOA_INDEX_COLUMN(McCollision, mcCollisionId);

Check failure on line 103 in PWGJE/DataModel/SlimTables.h

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.
DECLARE_SOA_INDEX_COLUMN(McParticle, mcParticle);
DECLARE_SOA_COLUMN(Pt, pt, float);
DECLARE_SOA_COLUMN(Eta, eta, float);
Expand Down
Loading