|
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 alice3HfTask3Prong.cxx |
| 12 | +/// \file hfTask3Prong.cxx |
13 | 13 | /// \brief 3-prong candidates analysis task for ALICE 3 simulation studies |
14 | 14 | /// \author Marcello Di Costanzo <marcello.di.costanzo@cern.ch>, Polytechnic University of Turin and INFN Turin |
15 | 15 |
|
16 | | -#include "PWGHF/Core/DecayChannels.h" |
17 | | -#include "PWGHF/DataModel/CandidateSelectionTables.h" |
18 | | - |
19 | 16 | #include "ALICE3/DataModel/A3DecayFinderTables.h" |
20 | 17 | #include "ALICE3/DataModel/OTFPIDTrk.h" |
21 | 18 | #include "ALICE3/DataModel/OTFRICH.h" |
|
24 | 21 | #include "ALICE3/Utils/utilsHfAlice3.h" |
25 | 22 | #include "ALICE3/Utils/utilsSelectionsAlice3.h" |
26 | 23 | #include "Common/Core/RecoDecay.h" |
27 | | -#include "Common/DataModel/EventSelection.h" |
28 | 24 |
|
29 | 25 | #include <CCDB/BasicCCDBManager.h> |
30 | 26 | #include <CommonConstants/PhysicsConstants.h> |
@@ -57,7 +53,7 @@ using namespace o2::framework; |
57 | 53 | using namespace o2::framework::expressions; |
58 | 54 |
|
59 | 55 | /// Λc± → p± K∓ π± analysis task |
60 | | -struct Alice3Task3Prong { |
| 56 | +struct Alice3HfTask3Prong { |
61 | 57 | Configurable<double> yCandGenMax{"yCandGenMax", 0.8, "max. gen particle rapidity"}; |
62 | 58 | Configurable<double> yCandRecoMax{"yCandRecoMax", 0.8, "max. cand. rapidity"}; |
63 | 59 | Configurable<std::vector<double>> binsPt{"binsPt", std::vector<double>{hf_cuts_3prongs_alice3::vecBinsPt}, "pT bin limits"}; |
@@ -354,18 +350,18 @@ struct Alice3Task3Prong { |
354 | 350 | fillHistosMcRec<CharmHadAlice3::Lc, false>(candsLc); |
355 | 351 | fillHistosMcGen<CharmHadAlice3::Lc>(candsGenLcs); |
356 | 352 | } |
357 | | - PROCESS_SWITCH(Alice3Task3Prong, processLc, "Process Lc w/o ML sels", true); |
| 353 | + PROCESS_SWITCH(Alice3HfTask3Prong, processLc, "Process Lc w/o ML sels", true); |
358 | 354 |
|
359 | 355 | void processLcWMl(Cands3PRecoWMl const& candsLcWMl, |
360 | 356 | Cands3PGen const&) |
361 | 357 | { |
362 | 358 | fillHistosMcRec<CharmHadAlice3::Lc, true>(candsLcWMl); |
363 | 359 | fillHistosMcGen<CharmHadAlice3::Lc>(candsGenLcs); |
364 | 360 | } |
365 | | - PROCESS_SWITCH(Alice3Task3Prong, processLcWMl, "Process Lc with ML sels", false); |
| 361 | + PROCESS_SWITCH(Alice3HfTask3Prong, processLcWMl, "Process Lc with ML sels", false); |
366 | 362 | }; |
367 | 363 |
|
368 | 364 | WorkflowSpec defineDataProcessing(ConfigContext const& cfgc) |
369 | 365 | { |
370 | | - return WorkflowSpec{adaptAnalysisTask<Alice3Task3Prong>(cfgc)}; |
| 366 | + return WorkflowSpec{adaptAnalysisTask<Alice3HfTask3Prong>(cfgc)}; |
371 | 367 | } |
0 commit comments