|
12 | 12 | /// \file correlatorDplusHadrons.cxx |
13 | 13 | /// \author Shyam Kumar <shyam.kumar@cern.ch> |
14 | 14 |
|
15 | | -#include "Framework/AnalysisTask.h" |
16 | | -#include "PWGHF/DataModel/CandidateReconstructionTables.h" |
17 | | -#include "PWGHF/DataModel/CandidateSelectionTables.h" |
| 15 | +#include "Common/Core/TrackSelection.h" |
18 | 16 | #include "Common/DataModel/Centrality.h" |
19 | 17 | #include "Common/DataModel/EventSelection.h" |
20 | | -#include "Framework/HistogramRegistry.h" |
21 | 18 | #include "Common/DataModel/Multiplicity.h" |
22 | | -#include "Framework/runDataProcessing.h" |
23 | | -#include "Common/Core/TrackSelection.h" |
24 | 19 | #include "Common/DataModel/TrackSelectionTables.h" |
| 20 | +#include "Framework/AnalysisTask.h" |
| 21 | +#include "Framework/HistogramRegistry.h" |
| 22 | +#include "Framework/runDataProcessing.h" |
| 23 | +#include "PWGHF/DataModel/CandidateReconstructionTables.h" |
| 24 | +#include "PWGHF/DataModel/CandidateSelectionTables.h" |
25 | 25 |
|
26 | 26 | using namespace o2; |
27 | 27 | using namespace o2::framework; |
@@ -69,8 +69,8 @@ struct HfDplusSelection { |
69 | 69 | SliceCache cache; |
70 | 70 | Produces<aod::DmesonSelection> dplusSel; |
71 | 71 | Configurable<int> selectionFlagDplus{"selectionFlagDplus", 1, "Selection Flag for Dplus"}; |
72 | | - Configurable<double> yCandMax{"yCandMax", 0.8, "max. cand. rapidity"}; |
73 | | - Configurable<double> ptCandMin{"ptCandMin", 1., "min. cand. pT"}; |
| 72 | + Configurable<float> yCandMax{"yCandMax", 0.8, "max. cand. rapidity"}; |
| 73 | + Configurable<float> ptCandMin{"ptCandMin", 1., "min. cand. pT"}; |
74 | 74 |
|
75 | 75 | Partition<soa::Join<aod::HfCand3Prong, aod::HfSelDplusToPiKPi>> selectedDplusCandidates = aod::hf_sel_candidate_dplus::isSelDplusToPiKPi >= selectionFlagDplus; |
76 | 76 | Partition<soa::Join<aod::HfCand3Prong, aod::HfSelDplusToPiKPi, aod::HfCand3ProngMcRec>> recoFlagDplusCandidates = aod::hf_sel_candidate_dplus::isSelDplusToPiKPi >= selectionFlagDplus; |
|
0 commit comments