Skip to content

Commit a69b4fb

Browse files
authored
Sort includes and fixed float at line 72-73
I fixed the recent comment to sort all the includes w.r.t. directories and also double changed to float as suggested at line 72-73.
1 parent 7f18a69 commit a69b4fb

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

PWGHF/HFC/TableProducer/correlatorDplusHadrons.cxx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@
1212
/// \file correlatorDplusHadrons.cxx
1313
/// \author Shyam Kumar <shyam.kumar@cern.ch>
1414

15-
#include "Framework/AnalysisTask.h"
16-
#include "PWGHF/DataModel/CandidateReconstructionTables.h"
17-
#include "PWGHF/DataModel/CandidateSelectionTables.h"
15+
#include "Common/Core/TrackSelection.h"
1816
#include "Common/DataModel/Centrality.h"
1917
#include "Common/DataModel/EventSelection.h"
20-
#include "Framework/HistogramRegistry.h"
2118
#include "Common/DataModel/Multiplicity.h"
22-
#include "Framework/runDataProcessing.h"
23-
#include "Common/Core/TrackSelection.h"
2419
#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"
2525

2626
using namespace o2;
2727
using namespace o2::framework;
@@ -69,8 +69,8 @@ struct HfDplusSelection {
6969
SliceCache cache;
7070
Produces<aod::DmesonSelection> dplusSel;
7171
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"};
7474

7575
Partition<soa::Join<aod::HfCand3Prong, aod::HfSelDplusToPiKPi>> selectedDplusCandidates = aod::hf_sel_candidate_dplus::isSelDplusToPiKPi >= selectionFlagDplus;
7676
Partition<soa::Join<aod::HfCand3Prong, aod::HfSelDplusToPiKPi, aod::HfCand3ProngMcRec>> recoFlagDplusCandidates = aod::hf_sel_candidate_dplus::isSelDplusToPiKPi >= selectionFlagDplus;

0 commit comments

Comments
 (0)