From 5e904bd2c92e0464823f2ee25f9b20d67cd1830d Mon Sep 17 00:00:00 2001 From: Victor Date: Mon, 19 May 2025 16:40:38 +0200 Subject: [PATCH] [PWGCF] DptDpt - First step in implementing linter recommendations It will take a few steps because we wanted to keep track of the changes This first step is just source file renaming when needed --- PWGCF/TableProducer/CMakeLists.txt | 4 ++-- PWGCF/TableProducer/{dptdptfilter.cxx => dptDptFilter.cxx} | 4 ++-- PWGCF/TableProducer/{dptdptfilter.h => dptDptFilter.h} | 2 +- PWGCF/Tasks/CMakeLists.txt | 4 ++-- .../Tasks/{dptdptcorrelations.cxx => dptDptCorrelations.cxx} | 4 ++-- PWGCF/Tasks/dptDptFilterQa.cxx | 2 +- PWGCF/Tasks/matchRecoGen.cxx | 2 +- PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx | 2 +- PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunExtraQc.cxx | 2 +- PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunQc.cxx | 2 +- 10 files changed, 14 insertions(+), 14 deletions(-) rename PWGCF/TableProducer/{dptdptfilter.cxx => dptDptFilter.cxx} (99%) rename PWGCF/TableProducer/{dptdptfilter.h => dptDptFilter.h} (99%) rename PWGCF/Tasks/{dptdptcorrelations.cxx => dptDptCorrelations.cxx} (99%) diff --git a/PWGCF/TableProducer/CMakeLists.txt b/PWGCF/TableProducer/CMakeLists.txt index 1bfef915ff3..6438d45a5fe 100644 --- a/PWGCF/TableProducer/CMakeLists.txt +++ b/PWGCF/TableProducer/CMakeLists.txt @@ -19,7 +19,7 @@ o2physics_add_dpl_workflow(filter-correlations-2prong PUBLIC_LINK_LIBRARIES O2::Framework O2Physics::AnalysisCore O2Physics::PWGCFCore COMPONENT_NAME Analysis) -o2physics_add_dpl_workflow(dptdpt-filter - SOURCES dptdptfilter.cxx +o2physics_add_dpl_workflow(dpt-dpt-filter + SOURCES dptDptFilter.cxx PUBLIC_LINK_LIBRARIES O2::Framework O2Physics::AnalysisCore O2Physics::PWGCFCore COMPONENT_NAME Analysis) diff --git a/PWGCF/TableProducer/dptdptfilter.cxx b/PWGCF/TableProducer/dptDptFilter.cxx similarity index 99% rename from PWGCF/TableProducer/dptdptfilter.cxx rename to PWGCF/TableProducer/dptDptFilter.cxx index cc29cd7ece8..5f99e3ff1d7 100644 --- a/PWGCF/TableProducer/dptdptfilter.cxx +++ b/PWGCF/TableProducer/dptDptFilter.cxx @@ -9,7 +9,7 @@ // granted to it by virtue of its status as an Intergovernmental Organization // or submit itself to any jurisdiction. -/// \file dptdptfilter.cxx +/// \file dptDptFilter.cxx /// \brief Filters collisions and tracks according to selection criteria /// \author victor.gonzalez.sebastian@gmail.com @@ -46,7 +46,7 @@ #include #include -#include "PWGCF/TableProducer/dptdptfilter.h" +#include "PWGCF/TableProducer/dptDptFilter.h" using namespace o2; using namespace o2::framework; diff --git a/PWGCF/TableProducer/dptdptfilter.h b/PWGCF/TableProducer/dptDptFilter.h similarity index 99% rename from PWGCF/TableProducer/dptdptfilter.h rename to PWGCF/TableProducer/dptDptFilter.h index 474e341907d..8638e56959e 100644 --- a/PWGCF/TableProducer/dptdptfilter.h +++ b/PWGCF/TableProducer/dptDptFilter.h @@ -9,7 +9,7 @@ // granted to it by virtue of its status as an Intergovernmental Organization // or submit itself to any jurisdiction. -/// \file dptdptfilter.h +/// \file dptDptFilter.h /// \brief Filters collisions and tracks according to selection criteria /// \author victor.gonzalez.sebastian@gmail.com diff --git a/PWGCF/Tasks/CMakeLists.txt b/PWGCF/Tasks/CMakeLists.txt index 233cb351d13..22e2b0f9f21 100644 --- a/PWGCF/Tasks/CMakeLists.txt +++ b/PWGCF/Tasks/CMakeLists.txt @@ -9,8 +9,8 @@ # granted to it by virtue of its status as an Intergovernmental Organization # or submit itself to any jurisdiction. -o2physics_add_dpl_workflow(dptdptcorrelations - SOURCES dptdptcorrelations.cxx +o2physics_add_dpl_workflow(dpt-dpt-correlations + SOURCES dptDptCorrelations.cxx PUBLIC_LINK_LIBRARIES O2::Framework O2Physics::AnalysisCore O2Physics::PWGCFCore COMPONENT_NAME Analysis) diff --git a/PWGCF/Tasks/dptdptcorrelations.cxx b/PWGCF/Tasks/dptDptCorrelations.cxx similarity index 99% rename from PWGCF/Tasks/dptdptcorrelations.cxx rename to PWGCF/Tasks/dptDptCorrelations.cxx index 10849b9901b..bdd119944c0 100644 --- a/PWGCF/Tasks/dptdptcorrelations.cxx +++ b/PWGCF/Tasks/dptDptCorrelations.cxx @@ -9,7 +9,7 @@ // granted to it by virtue of its status as an Intergovernmental Organization // or submit itself to any jurisdiction. -/// \file dptdptcorrelations.cxx +/// \file dptDptCorrelations.cxx /// \brief implements two-particle correlations base data collection /// \author victor.gonzalez.sebastian@gmail.com @@ -44,7 +44,7 @@ #include "PWGCF/Core/AnalysisConfigurableCuts.h" #include "PWGCF/Core/PairCuts.h" #include "PWGCF/DataModel/DptDptFiltered.h" -#include "PWGCF/TableProducer/dptdptfilter.h" +#include "PWGCF/TableProducer/dptDptFilter.h" using namespace o2; using namespace o2::framework; diff --git a/PWGCF/Tasks/dptDptFilterQa.cxx b/PWGCF/Tasks/dptDptFilterQa.cxx index ebb50785a61..97557016ffa 100644 --- a/PWGCF/Tasks/dptDptFilterQa.cxx +++ b/PWGCF/Tasks/dptDptFilterQa.cxx @@ -21,7 +21,7 @@ #include "Framework/AnalysisTask.h" #include "Framework/runDataProcessing.h" #include "PWGCF/DataModel/DptDptFiltered.h" -#include "PWGCF/TableProducer/dptdptfilter.h" +#include "PWGCF/TableProducer/dptDptFilter.h" using namespace o2; using namespace o2::framework; diff --git a/PWGCF/Tasks/matchRecoGen.cxx b/PWGCF/Tasks/matchRecoGen.cxx index 486eae85e37..795a23e4152 100644 --- a/PWGCF/Tasks/matchRecoGen.cxx +++ b/PWGCF/Tasks/matchRecoGen.cxx @@ -31,7 +31,7 @@ #include "Framework/runDataProcessing.h" #include "PWGCF/Core/AnalysisConfigurableCuts.h" #include "PWGCF/DataModel/DptDptFiltered.h" -#include "PWGCF/TableProducer/dptdptfilter.h" +#include "PWGCF/TableProducer/dptDptFilter.h" #include #include #include diff --git a/PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx b/PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx index 1f835ca8db2..6ef8f58b49b 100644 --- a/PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx +++ b/PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx @@ -41,7 +41,7 @@ #include "PWGCF/Core/AnalysisConfigurableCuts.h" #include "PWGCF/DataModel/DptDptFiltered.h" -#include "PWGCF/TableProducer/dptdptfilter.h" +#include "PWGCF/TableProducer/dptDptFilter.h" using namespace o2; using namespace o2::framework; diff --git a/PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunExtraQc.cxx b/PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunExtraQc.cxx index d6500b88617..8617a65de2f 100644 --- a/PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunExtraQc.cxx +++ b/PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunExtraQc.cxx @@ -24,7 +24,7 @@ #include "Framework/runDataProcessing.h" #include "PWGCF/DataModel/DptDptFiltered.h" -#include "PWGCF/TableProducer/dptdptfilter.h" +#include "PWGCF/TableProducer/dptDptFilter.h" using namespace o2; using namespace o2::framework; diff --git a/PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunQc.cxx b/PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunQc.cxx index fb179838563..598d3305539 100644 --- a/PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunQc.cxx +++ b/PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunQc.cxx @@ -35,7 +35,7 @@ #include "Framework/runDataProcessing.h" #include "PWGCF/DataModel/DptDptFiltered.h" -#include "PWGCF/TableProducer/dptdptfilter.h" +#include "PWGCF/TableProducer/dptDptFilter.h" using namespace o2; using namespace o2::framework;