Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions PWGHF/TableProducer/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -250,12 +250,12 @@ o2physics_add_dpl_workflow(tree-creator-omegac-st
COMPONENT_NAME Analysis)

o2physics_add_dpl_workflow(tree-creator-omegac0-to-omega-ka
SOURCES treeCreatorOmegacToOmegaKa.cxx
SOURCES treeCreatorOmegac0ToOmegaKa.cxx
PUBLIC_LINK_LIBRARIES O2Physics::AnalysisCore
COMPONENT_NAME Analysis)

o2physics_add_dpl_workflow(tree-creator-omegac0-to-omega-pi
SOURCES treeCreatorOmegacToOmegaPi.cxx
SOURCES treeCreatorOmegac0ToOmegaPi.cxx
PUBLIC_LINK_LIBRARIES O2Physics::AnalysisCore
COMPONENT_NAME Analysis)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
// granted to it by virtue of its status as an Intergovernmental Organization
// or submit itself to any jurisdiction.

/// \file treeCreatorOmegacToOmegaKa.cxx
/// \file treeCreatorOmegac0ToOmegaKa.cxx
/// \brief Writer of the omegac0 to Omega Ka candidates in the form of flat tables to be stored in TTrees.
/// In this file are defined and filled the output tables
///
Expand Down
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 PWGHF/TableProducer/treeCreatorOmegac0ToOmegaPi.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.)
// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
// All rights not expressly granted are reserved.
//
Expand All @@ -9,7 +9,7 @@
// granted to it by virtue of its status as an Intergovernmental Organization
// or submit itself to any jurisdiction.

/// \file treeCreatorOmegacToOmegaPi.cxx
/// \file treeCreatorOmegac0ToOmegaPi.cxx
/// \brief Writer of the omegac0 to Omega Pi candidates in the form of flat tables to be stored in TTrees.
/// In this file are defined and filled the output tables
///
Expand Down Expand Up @@ -217,7 +217,7 @@
} // namespace o2::aod

/// Writes the full information in an output TTree
struct HfTreeCreatorOmegacToOmegaPi {
struct HfTreeCreatorOmegacToOmegaPi { // FIXME: Rename to HfTreeCreatorOmegac0ToOmegaPi

Produces<o2::aod::HfOmegac0ToOmegaPiLites> rowCandidateLite;
Produces<o2::aod::HfKfOmegacFulls> rowKfCandidateFull;
Expand Down
Loading