Skip to content
28 changes: 1 addition & 27 deletions PWGLF/DataModel/LFClusterStudiesTable.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019-2020 CERN and copyright holders of ALICE O2.

Check failure on line 1 in PWGLF/DataModel/LFClusterStudiesTable.h

View workflow job for this annotation

GitHub Actions / O2 linter

[doc/file]

Provide mandatory file documentation.
// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
// All rights not expressly granted are reserved.
//
Expand All @@ -8,11 +8,11 @@
// In applying this license CERN does not waive the privileges and immunities
// granted to it by virtue of its status as an Intergovernmental Organization
// or submit itself to any jurisdiction.
//

Check failure on line 11 in PWGLF/DataModel/LFClusterStudiesTable.h

View workflow job for this annotation

GitHub Actions / O2 linter

[doc/file]

Documentation for \author is missing, incorrect or misplaced.

Check failure on line 11 in PWGLF/DataModel/LFClusterStudiesTable.h

View workflow job for this annotation

GitHub Actions / O2 linter

[doc/file]

Documentation for \brief is missing, incorrect or misplaced.

Check failure on line 11 in PWGLF/DataModel/LFClusterStudiesTable.h

View workflow job for this annotation

GitHub Actions / O2 linter

[doc/file]

Documentation for \file is missing, incorrect or misplaced.
// Author: Giorgio Alberto Lucia

#include "Framework/AnalysisDataModel.h"
#include "Framework/ASoAHelpers.h"
#include "Framework/AnalysisDataModel.h"

#ifndef PWGLF_DATAMODEL_LFCLUSTERSTUDIESTABLE_H_
#define PWGLF_DATAMODEL_LFCLUSTERSTUDIESTABLE_H_
Expand All @@ -20,7 +20,7 @@
namespace o2::aod
{

namespace LFClusterStudiesTables

Check failure on line 23 in PWGLF/DataModel/LFClusterStudiesTable.h

View workflow job for this annotation

GitHub Actions / O2 linter

[name/namespace]

Use snake_case for names of namespaces. Double underscores are not allowed.
{
DECLARE_SOA_COLUMN(PMother, pMother, float);
DECLARE_SOA_COLUMN(PtMother, ptMother, float);
Expand Down Expand Up @@ -53,8 +53,8 @@
DECLARE_SOA_COLUMN(Eta, eta, float);
DECLARE_SOA_COLUMN(Phi, phi, float);
DECLARE_SOA_COLUMN(PTPC, pTPC, float);
DECLARE_SOA_COLUMN(PIDinTrk, pidInTrk, uint32_t);

Check failure on line 56 in PWGLF/DataModel/LFClusterStudiesTable.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(PDGCode, pdgCode, int);

Check failure on line 57 in PWGLF/DataModel/LFClusterStudiesTable.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(DcaToPV, dcaToPV, float);
DECLARE_SOA_COLUMN(ItsClusterSize, itsClusterSize, uint32_t);
DECLARE_SOA_COLUMN(TpcSignal, tpcSignal, float);
Expand All @@ -69,7 +69,7 @@

} // namespace LFClusterStudiesTables

DECLARE_SOA_TABLE(

Check failure on line 72 in PWGLF/DataModel/LFClusterStudiesTable.h

View workflow job for this annotation

GitHub Actions / O2 linter

[name/o2-table]

Use UpperCamelCase for names of O2 tables.
ClStTable, "AOD", "CLSTTABLE",
LFClusterStudiesTables::P,
LFClusterStudiesTables::Eta,
Expand All @@ -77,38 +77,12 @@
LFClusterStudiesTables::ItsClusterSize,
LFClusterStudiesTables::PartID);

DECLARE_SOA_TABLE(

Check failure on line 80 in PWGLF/DataModel/LFClusterStudiesTable.h

View workflow job for this annotation

GitHub Actions / O2 linter

[name/o2-table]

Use UpperCamelCase for names of O2 tables.
ClStTableMc, "AOD", "CLSTTABLEMC",
LFClusterStudiesTables::P,
LFClusterStudiesTables::Eta,
LFClusterStudiesTables::Phi,
LFClusterStudiesTables::ItsClusterSize,
LFClusterStudiesTables::PartID,
LFClusterStudiesTables::PartIDMc);

DECLARE_SOA_TABLE(

Check failure on line 84 in PWGLF/DataModel/LFClusterStudiesTable.h

View workflow job for this annotation

GitHub Actions / O2 linter

[name/o2-table]

Use UpperCamelCase for names of O2 tables.
ClStTableExtra, "AOD", "CLSTTABLEEXTRA",
LFClusterStudiesTables::P,
LFClusterStudiesTables::Eta,
LFClusterStudiesTables::Phi,
LFClusterStudiesTables::ItsClusterSize,
LFClusterStudiesTables::PartID,
LFClusterStudiesTables::PTPC,
LFClusterStudiesTables::PIDinTrk,
LFClusterStudiesTables::TpcNSigma,
LFClusterStudiesTables::TofNSigma,
LFClusterStudiesTables::TofMass,
LFClusterStudiesTables::CosPAMother,
LFClusterStudiesTables::MassMother);

DECLARE_SOA_TABLE(
ClStTableMcExt, "AOD", "CLSTTABLEMCEXT",
LFClusterStudiesTables::P,
LFClusterStudiesTables::Eta,
LFClusterStudiesTables::Phi,
LFClusterStudiesTables::ItsClusterSize,
LFClusterStudiesTables::PartID,
LFClusterStudiesTables::PartIDMc,
LFClusterStudiesTables::PTPC,
LFClusterStudiesTables::PIDinTrk,
LFClusterStudiesTables::TpcNSigma,
Expand Down
Loading
Loading