Skip to content
Merged
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
3 changes: 1 addition & 2 deletions Common/TableProducer/Converters/run2bcinfosConverter.cxx
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 warning on line 1 in Common/TableProducer/Converters/run2bcinfosConverter.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 @@ -17,7 +17,7 @@
/// and the ITSClusterMap column is evaluated dynamically from it.
/// In the converter a dummy ITSClusterSize column is filled with overflows if a hit in the layer is present

/// \author F.Mazzaschi <[email protected]>

Check warning on line 20 in Common/TableProducer/Converters/run2bcinfosConverter.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 @@ -27,7 +27,7 @@
using namespace o2::framework;

struct Run2BCInfosConverter {
Produces<aod::Run2TrackExtras_001> Run2TrackExtras_001;

Check warning on line 30 in Common/TableProducer/Converters/run2bcinfosConverter.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[name/function-variable]

Use lowerCamelCase for names of functions and variables.
void process(aod::Run2BCInfos_000 const& Run2BCInfos_000)
{

Expand All @@ -46,6 +46,5 @@
WorkflowSpec defineDataProcessing(ConfigContext const& cfgc)
{
return WorkflowSpec{
adaptAnalysisTask<Run2BCInfosConverter>(cfgc)
};
adaptAnalysisTask<Run2BCInfosConverter>(cfgc)};
}
Loading