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
1 change: 0 additions & 1 deletion DPG/Tasks/AOTTrack/PID/HMPID/tableHMPID.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 DPG/Tasks/AOTTrack/PID/HMPID/tableHMPID.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,18 +8,17 @@
// 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 DPG/Tasks/AOTTrack/PID/HMPID/tableHMPID.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 DPG/Tasks/AOTTrack/PID/HMPID/tableHMPID.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 DPG/Tasks/AOTTrack/PID/HMPID/tableHMPID.h

View workflow job for this annotation

GitHub Actions / O2 linter

[doc/file]

Documentation for \file is missing, incorrect or misplaced.

#ifndef O2_ANALYSIS_HMPIDTABLE_H
#define O2_ANALYSIS_HMPIDTABLE_H

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

using namespace o2;

Check failure on line 18 in DPG/Tasks/AOTTrack/PID/HMPID/tableHMPID.h

View workflow job for this annotation

GitHub Actions / O2 linter

[using-directive]

Do not put using directives at global scope in headers.
using namespace o2::framework;

Check failure on line 19 in DPG/Tasks/AOTTrack/PID/HMPID/tableHMPID.h

View workflow job for this annotation

GitHub Actions / O2 linter

[using-directive]

Do not put using directives at global scope in headers.
using namespace o2::framework::expressions;

Check failure on line 20 in DPG/Tasks/AOTTrack/PID/HMPID/tableHMPID.h

View workflow job for this annotation

GitHub Actions / O2 linter

[using-directive]

Do not put using directives at global scope in headers.
using namespace o2::constants::physics;

Check failure on line 21 in DPG/Tasks/AOTTrack/PID/HMPID/tableHMPID.h

View workflow job for this annotation

GitHub Actions / O2 linter

[using-directive]

Do not put using directives at global scope in headers.

namespace o2::aod
{
Expand All @@ -37,9 +36,9 @@
DECLARE_SOA_COLUMN(Ymip, ymip, float);
DECLARE_SOA_COLUMN(Nphotons, nphotons, float);
DECLARE_SOA_COLUMN(ChargeMIP, chargeMIP, float);
DECLARE_SOA_COLUMN(ClusterSize, clustersize, float);

Check failure on line 39 in DPG/Tasks/AOTTrack/PID/HMPID/tableHMPID.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(Chamber, chamber, float);
DECLARE_SOA_COLUMN(Photons_charge, photons_charge, float[10]);

Check failure on line 41 in DPG/Tasks/AOTTrack/PID/HMPID/tableHMPID.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(EtaTrack, etatrack, float);
DECLARE_SOA_COLUMN(PhiTrack, phitrack, float);
Expand Down
Loading