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
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 Tutorials/PWGCF/TwoParticleCorrelations/src/firstcfcorrelations.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[name/workflow-file]

Name of a workflow file must match the name of the main struct in it (without the PWG prefix). (Class implementation files should be in "Core" directories.)

Check failure on line 1 in Tutorials/PWGCF/TwoParticleCorrelations/src/firstcfcorrelations.cxx

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 @@ -11,7 +11,7 @@
///
/// \brief Joined tables can be used as argument to the process function.
/// \author
/// \since

Check failure on line 14 in Tutorials/PWGCF/TwoParticleCorrelations/src/firstcfcorrelations.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[doc/file]

Documentation for \author is missing, incorrect or misplaced.

Check failure on line 14 in Tutorials/PWGCF/TwoParticleCorrelations/src/firstcfcorrelations.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[doc/file]

Documentation for \file is missing, incorrect or misplaced.

#include "Framework/runDataProcessing.h"
#include "Framework/AnalysisTask.h"
Expand All @@ -30,7 +30,7 @@
using namespace o2::framework;
using namespace o2::framework::expressions;

struct firstcorrelations {

Check failure on line 33 in Tutorials/PWGCF/TwoParticleCorrelations/src/firstcfcorrelations.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[name/struct]

Use UpperCamelCase for names of structs.
void init(InitContext&)
{
LOGF(info, "Starting init");
Expand Down Expand Up @@ -71,4 +71,5 @@
return WorkflowSpec{
adaptAnalysisTask<firstcorrelations>(cfgc),
};
}
}

Check failure on line 75 in Tutorials/PWGCF/TwoParticleCorrelations/src/firstcfcorrelations.cxx

View workflow job for this annotation

GitHub Actions / PR formatting / whitespace

Trailing spaces

Remove the trailing spaces at the end of the line.
Loading