Skip to content

Commit 87bb09e

Browse files
committed
rename task
1 parent 2b700fc commit 87bb09e

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

PWGCF/TwoParticleCorrelations/Tasks/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ o2physics_add_dpl_workflow(neutron-proton-corr-zdc
5858
PUBLIC_LINK_LIBRARIES O2Physics::AnalysisCore
5959
COMPONENT_NAME Analysis)
6060

61-
o2physics_add_dpl_workflow(di-hardon-cor
62-
SOURCES diHardonCor.cxx
61+
o2physics_add_dpl_workflow(di-hadron-cor
62+
SOURCES diHadronCor.cxx
6363
PUBLIC_LINK_LIBRARIES O2::Framework O2Physics::AnalysisCore O2Physics::PWGCFCore
6464
COMPONENT_NAME Analysis)
6565

PWGCF/TwoParticleCorrelations/Tasks/diHardonCor.cxx renamed to PWGCF/TwoParticleCorrelations/Tasks/diHadronCor.cxx

Lines changed: 8 additions & 8 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-
/// \file diHardonCor.cxx
13-
/// \brief di-hardon correlation for O-O, Pb-Pb collisions
12+
/// \file diHadronCor.cxx
13+
/// \brief di-hadron correlation for O-O, Pb-Pb collisions
1414
/// \author Zhiyong Lu (zhiyong.lu@cern.ch)
1515
/// \since May/03/2025
1616

@@ -45,19 +45,19 @@ using namespace o2::framework;
4545
using namespace o2::framework::expressions;
4646
namespace o2::aod
4747
{
48-
namespace di_hardon_cor
48+
namespace di_hadron_cor
4949
{
5050
DECLARE_SOA_COLUMN(Multiplicity, multiplicity, int);
5151
}
5252
DECLARE_SOA_TABLE(Multiplicity, "AOD", "MULTIPLICITY",
53-
di_hardon_cor::Multiplicity);
53+
di_hadron_cor::Multiplicity);
5454

5555
} // namespace o2::aod
5656

5757
// define the filtered collisions and tracks
5858
#define O2_DEFINE_CONFIGURABLE(NAME, TYPE, DEFAULT, HELP) Configurable<TYPE> NAME{#NAME, DEFAULT, HELP};
5959

60-
struct DiHardonCor {
60+
struct DiHadronCor {
6161
Service<ccdb::BasicCCDBManager> ccdb;
6262

6363
O2_DEFINE_CONFIGURABLE(cfgCutVtxZ, float, 10.0f, "Accepted z-vertex range")
@@ -333,7 +333,7 @@ struct DiHardonCor {
333333

334334
fillCorrelations<CorrelationContainer::kCFStepReconstructed>(tracks, tracks, collision.posZ(), SameEvent, getMagneticField(bc.timestamp()), cent);
335335
}
336-
PROCESS_SWITCH(DiHardonCor, processSame, "Process same event", true);
336+
PROCESS_SWITCH(DiHadronCor, processSame, "Process same event", true);
337337

338338
// the process for filling the mixed events
339339
void processMixed(AodCollisions const& collisions, AodTracks const& tracks, aod::BCsWithTimestamps const&)
@@ -374,12 +374,12 @@ struct DiHardonCor {
374374
}
375375
}
376376

377-
PROCESS_SWITCH(DiHardonCor, processMixed, "Process mixed events", true);
377+
PROCESS_SWITCH(DiHadronCor, processMixed, "Process mixed events", true);
378378
};
379379

380380
WorkflowSpec defineDataProcessing(ConfigContext const& cfgc)
381381
{
382382
return WorkflowSpec{
383-
adaptAnalysisTask<DiHardonCor>(cfgc),
383+
adaptAnalysisTask<DiHadronCor>(cfgc),
384384
};
385385
}

0 commit comments

Comments
 (0)