Skip to content

Commit b5ddce2

Browse files
victor-gonzalezVictor
andauthored
[PWGCF] DptDpt - First step in implementing linter recommendations (#11252)
Co-authored-by: Victor <victor@cern.ch>
1 parent b63d750 commit b5ddce2

File tree

10 files changed

+14
-14
lines changed

10 files changed

+14
-14
lines changed

PWGCF/TableProducer/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ o2physics_add_dpl_workflow(filter-correlations-2prong
1919
PUBLIC_LINK_LIBRARIES O2::Framework O2Physics::AnalysisCore O2Physics::PWGCFCore
2020
COMPONENT_NAME Analysis)
2121

22-
o2physics_add_dpl_workflow(dptdpt-filter
23-
SOURCES dptdptfilter.cxx
22+
o2physics_add_dpl_workflow(dpt-dpt-filter
23+
SOURCES dptDptFilter.cxx
2424
PUBLIC_LINK_LIBRARIES O2::Framework O2Physics::AnalysisCore O2Physics::PWGCFCore
2525
COMPONENT_NAME Analysis)
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// granted to it by virtue of its status as an Intergovernmental Organization
1010
// or submit itself to any jurisdiction.
1111

12-
/// \file dptdptfilter.cxx
12+
/// \file dptDptFilter.cxx
1313
/// \brief Filters collisions and tracks according to selection criteria
1414
/// \author victor.gonzalez.sebastian@gmail.com
1515

@@ -46,7 +46,7 @@
4646
#include <TH3.h>
4747
#include <TProfile3D.h>
4848

49-
#include "PWGCF/TableProducer/dptdptfilter.h"
49+
#include "PWGCF/TableProducer/dptDptFilter.h"
5050

5151
using namespace o2;
5252
using namespace o2::framework;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// granted to it by virtue of its status as an Intergovernmental Organization
1010
// or submit itself to any jurisdiction.
1111

12-
/// \file dptdptfilter.h
12+
/// \file dptDptFilter.h
1313
/// \brief Filters collisions and tracks according to selection criteria
1414
/// \author victor.gonzalez.sebastian@gmail.com
1515

PWGCF/Tasks/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
# granted to it by virtue of its status as an Intergovernmental Organization
1010
# or submit itself to any jurisdiction.
1111

12-
o2physics_add_dpl_workflow(dptdptcorrelations
13-
SOURCES dptdptcorrelations.cxx
12+
o2physics_add_dpl_workflow(dpt-dpt-correlations
13+
SOURCES dptDptCorrelations.cxx
1414
PUBLIC_LINK_LIBRARIES O2::Framework O2Physics::AnalysisCore O2Physics::PWGCFCore
1515
COMPONENT_NAME Analysis)
1616

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// granted to it by virtue of its status as an Intergovernmental Organization
1010
// or submit itself to any jurisdiction.
1111

12-
/// \file dptdptcorrelations.cxx
12+
/// \file dptDptCorrelations.cxx
1313
/// \brief implements two-particle correlations base data collection
1414
/// \author victor.gonzalez.sebastian@gmail.com
1515

@@ -44,7 +44,7 @@
4444
#include "PWGCF/Core/AnalysisConfigurableCuts.h"
4545
#include "PWGCF/Core/PairCuts.h"
4646
#include "PWGCF/DataModel/DptDptFiltered.h"
47-
#include "PWGCF/TableProducer/dptdptfilter.h"
47+
#include "PWGCF/TableProducer/dptDptFilter.h"
4848

4949
using namespace o2;
5050
using namespace o2::framework;

PWGCF/Tasks/dptDptFilterQa.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
#include "Framework/AnalysisTask.h"
2222
#include "Framework/runDataProcessing.h"
2323
#include "PWGCF/DataModel/DptDptFiltered.h"
24-
#include "PWGCF/TableProducer/dptdptfilter.h"
24+
#include "PWGCF/TableProducer/dptDptFilter.h"
2525

2626
using namespace o2;
2727
using namespace o2::framework;

PWGCF/Tasks/matchRecoGen.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
#include "Framework/runDataProcessing.h"
3232
#include "PWGCF/Core/AnalysisConfigurableCuts.h"
3333
#include "PWGCF/DataModel/DptDptFiltered.h"
34-
#include "PWGCF/TableProducer/dptdptfilter.h"
34+
#include "PWGCF/TableProducer/dptDptFilter.h"
3535
#include <TDirectory.h>
3636
#include <TFolder.h>
3737
#include <TH1.h>

PWGCF/TwoParticleCorrelations/Tasks/dptDptEfficiencyAndQc.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
#include "PWGCF/Core/AnalysisConfigurableCuts.h"
4343
#include "PWGCF/DataModel/DptDptFiltered.h"
44-
#include "PWGCF/TableProducer/dptdptfilter.h"
44+
#include "PWGCF/TableProducer/dptDptFilter.h"
4545

4646
using namespace o2;
4747
using namespace o2::framework;

PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunExtraQc.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#include "Framework/runDataProcessing.h"
2525

2626
#include "PWGCF/DataModel/DptDptFiltered.h"
27-
#include "PWGCF/TableProducer/dptdptfilter.h"
27+
#include "PWGCF/TableProducer/dptDptFilter.h"
2828

2929
using namespace o2;
3030
using namespace o2::framework;

PWGCF/TwoParticleCorrelations/Tasks/dptDptPerRunQc.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
#include "Framework/runDataProcessing.h"
3636

3737
#include "PWGCF/DataModel/DptDptFiltered.h"
38-
#include "PWGCF/TableProducer/dptdptfilter.h"
38+
#include "PWGCF/TableProducer/dptDptFilter.h"
3939

4040
using namespace o2;
4141
using namespace o2::framework;

0 commit comments

Comments
 (0)