|
14 | 14 | /// |
15 | 15 | /// \author Fabio Colamaria <fabio.colamaria@ba.infn.it>, INFN Bari |
16 | 16 |
|
17 | | -#include <vector> |
| 17 | +#include "PWGHF/Core/HfHelper.h" |
| 18 | +#include "PWGHF/Core/SelectorCuts.h" |
| 19 | +#include "PWGHF/HFC/DataModel/CorrelationTables.h" |
| 20 | + |
| 21 | +#include "ALICE3/DataModel/A3DecayFinderTables.h" |
| 22 | +#include "Common/Core/TrackSelection.h" |
| 23 | +#include "Common/DataModel/TrackSelectionTables.h" |
18 | 24 |
|
19 | 25 | #include "CommonConstants/PhysicsConstants.h" |
20 | 26 | #include "Framework/AnalysisTask.h" |
21 | 27 | #include "Framework/HistogramRegistry.h" |
22 | 28 | #include "Framework/runDataProcessing.h" |
23 | 29 |
|
24 | | -#include "Common/Core/TrackSelection.h" |
25 | | -#include "Common/DataModel/TrackSelectionTables.h" |
26 | | - |
27 | | -#include "ALICE3/DataModel/A3DecayFinderTables.h" |
28 | | - |
29 | | -#include "PWGHF/Core/HfHelper.h" |
30 | | -#include "PWGHF/Core/SelectorCuts.h" |
31 | | -#include "PWGHF/HFC/DataModel/CorrelationTables.h" |
| 30 | +#include <vector> |
32 | 31 |
|
33 | 32 | using namespace o2; |
34 | 33 | using namespace o2::analysis; |
@@ -240,7 +239,7 @@ struct alice3correlatorddbar { |
240 | 239 | if (candidate1.isSelD0() >= selectionFlagD0) { // only reco as D0 |
241 | 240 | if (candidate1.mcTruthInfo() == 1) { // also matched as D0 |
242 | 241 | registry.fill(HIST("hMassD0MCRecSig"), candidate1.m(), candidate1.pt(), efficiencyWeight); // here m is univoque, since a given candidate passes the selection with only a single mass option |
243 | | - registry.fill(HIST("hMassD0MCRecSig_NoEff"), candidate1.m(), candidate1.pt()); |
| 242 | + registry.fill(HIST("hMassD0MCRecSig_NoEff"), candidate1.m(), candidate1.pt()); |
244 | 243 | } else if (candidate1.mcTruthInfo() == 2) { |
245 | 244 | registry.fill(HIST("hMassD0MCRecRefl"), candidate1.m(), candidate1.pt(), efficiencyWeight); |
246 | 245 | registry.fill(HIST("hMassD0MCRecRefl_NoEff"), candidate1.m(), candidate1.pt()); |
|
0 commit comments