Skip to content
Merged
5 changes: 3 additions & 2 deletions PWGLF/DataModel/LFStrangenessMLTables.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

#include <cmath>
#include <cstdint>
#include <vector>

// Creating output TTree for ML analysis
namespace o2::aod
Expand All @@ -34,12 +35,12 @@
DECLARE_SOA_COLUMN(NegTPCSigmaPr, negTPCSigmaPr, float);
DECLARE_SOA_COLUMN(PosTPCSigmaEl, posTPCSigmaEl, float);
DECLARE_SOA_COLUMN(NegTPCSigmaEl, negTPCSigmaEl, float);
DECLARE_SOA_COLUMN(TOFSigmaLaPr, tofSigmaLaPr, float);

Check failure on line 38 in PWGLF/DataModel/LFStrangenessMLTables.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_COLUMN(TOFSigmaLaPi, tofSigmaLaPi, float);

Check failure on line 39 in PWGLF/DataModel/LFStrangenessMLTables.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_COLUMN(TOFSigmaALaPi, tofSigmaALaPi, float);

Check failure on line 40 in PWGLF/DataModel/LFStrangenessMLTables.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_COLUMN(TOFSigmaALaPr, tofSigmaALaPr, float);

Check failure on line 41 in PWGLF/DataModel/LFStrangenessMLTables.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_COLUMN(TOFSigmaK0PiPlus, tofSigmaK0PiPlus, float);

Check failure on line 42 in PWGLF/DataModel/LFStrangenessMLTables.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_COLUMN(TOFSigmaK0PiMinus, tofSigmaK0PiMinus, float);

Check failure on line 43 in PWGLF/DataModel/LFStrangenessMLTables.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_COLUMN(LambdaMass, lambdaMass, float);
DECLARE_SOA_COLUMN(AntiLambdaMass, antiLambdaMass, float);
DECLARE_SOA_COLUMN(GammaMass, gammaMass, float);
Expand All @@ -52,10 +53,10 @@
DECLARE_SOA_COLUMN(V0Eta, v0Eta, float);
DECLARE_SOA_COLUMN(Z, z, float);
DECLARE_SOA_COLUMN(V0radius, v0radius, float);
DECLARE_SOA_COLUMN(PA, pa, float);

Check failure on line 56 in PWGLF/DataModel/LFStrangenessMLTables.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_COLUMN(DCApostopv, dcapostopv, float);

Check failure on line 57 in PWGLF/DataModel/LFStrangenessMLTables.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_COLUMN(DCAnegtopv, dcanegtopv, float);

Check failure on line 58 in PWGLF/DataModel/LFStrangenessMLTables.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_COLUMN(DCAV0daughters, dcaV0daughters, float);

Check failure on line 59 in PWGLF/DataModel/LFStrangenessMLTables.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_COLUMN(DCAv0topv, dcav0topv, float);
DECLARE_SOA_COLUMN(PsiPair, psiPair, float);
DECLARE_SOA_COLUMN(V0type, v0type, uint8_t);
Expand Down Expand Up @@ -237,8 +238,8 @@

namespace CascMLSelection
{
DECLARE_SOA_COLUMN(XiBDTScore, xiBDTScore, float);
DECLARE_SOA_COLUMN(OmegaBDTScore, omegaBDTScore, float);
DECLARE_SOA_COLUMN(XiBDTScore, xiBDTScore, std::vector<float>);
DECLARE_SOA_COLUMN(OmegaBDTScore, omegaBDTScore, std::vector<float>);
} // namespace CascMLSelection

DECLARE_SOA_TABLE(CascXiMLScores, "AOD", "CASCXIMLSCORES",
Expand Down
Loading
Loading