|
9 | 9 | // granted to it by virtue of its status as an Intergovernmental Organization |
10 | 10 | // or submit itself to any jurisdiction. |
11 | 11 |
|
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 |
14 | 14 | /// \author Zhiyong Lu (zhiyong.lu@cern.ch) |
15 | 15 | /// \since May/03/2025 |
16 | 16 |
|
@@ -45,19 +45,19 @@ using namespace o2::framework; |
45 | 45 | using namespace o2::framework::expressions; |
46 | 46 | namespace o2::aod |
47 | 47 | { |
48 | | -namespace di_hardon_cor |
| 48 | +namespace di_hadron_cor |
49 | 49 | { |
50 | 50 | DECLARE_SOA_COLUMN(Multiplicity, multiplicity, int); |
51 | 51 | } |
52 | 52 | DECLARE_SOA_TABLE(Multiplicity, "AOD", "MULTIPLICITY", |
53 | | - di_hardon_cor::Multiplicity); |
| 53 | + di_hadron_cor::Multiplicity); |
54 | 54 |
|
55 | 55 | } // namespace o2::aod |
56 | 56 |
|
57 | 57 | // define the filtered collisions and tracks |
58 | 58 | #define O2_DEFINE_CONFIGURABLE(NAME, TYPE, DEFAULT, HELP) Configurable<TYPE> NAME{#NAME, DEFAULT, HELP}; |
59 | 59 |
|
60 | | -struct DiHardonCor { |
| 60 | +struct DiHadronCor { |
61 | 61 | Service<ccdb::BasicCCDBManager> ccdb; |
62 | 62 |
|
63 | 63 | O2_DEFINE_CONFIGURABLE(cfgCutVtxZ, float, 10.0f, "Accepted z-vertex range") |
@@ -333,7 +333,7 @@ struct DiHardonCor { |
333 | 333 |
|
334 | 334 | fillCorrelations<CorrelationContainer::kCFStepReconstructed>(tracks, tracks, collision.posZ(), SameEvent, getMagneticField(bc.timestamp()), cent); |
335 | 335 | } |
336 | | - PROCESS_SWITCH(DiHardonCor, processSame, "Process same event", true); |
| 336 | + PROCESS_SWITCH(DiHadronCor, processSame, "Process same event", true); |
337 | 337 |
|
338 | 338 | // the process for filling the mixed events |
339 | 339 | void processMixed(AodCollisions const& collisions, AodTracks const& tracks, aod::BCsWithTimestamps const&) |
@@ -374,12 +374,12 @@ struct DiHardonCor { |
374 | 374 | } |
375 | 375 | } |
376 | 376 |
|
377 | | - PROCESS_SWITCH(DiHardonCor, processMixed, "Process mixed events", true); |
| 377 | + PROCESS_SWITCH(DiHadronCor, processMixed, "Process mixed events", true); |
378 | 378 | }; |
379 | 379 |
|
380 | 380 | WorkflowSpec defineDataProcessing(ConfigContext const& cfgc) |
381 | 381 | { |
382 | 382 | return WorkflowSpec{ |
383 | | - adaptAnalysisTask<DiHardonCor>(cfgc), |
| 383 | + adaptAnalysisTask<DiHadronCor>(cfgc), |
384 | 384 | }; |
385 | 385 | } |
0 commit comments