|
17 | 17 | /// \author M. Faggin (CERN) mattia.faggin@cern.ch |
18 | 18 | /// \author M. Li (CCNU) mingze.li@cern.ch |
19 | 19 |
|
20 | | -#include "PWGHF/Core/CentralityEstimation.h" |
| 20 | +#include "PWGHF/Core/DecayChannels.h" |
21 | 21 | #include "PWGHF/Core/HfHelper.h" |
22 | 22 | #include "PWGHF/DataModel/CandidateReconstructionTables.h" |
23 | 23 | #include "PWGHF/DataModel/CandidateSelectionTables.h" |
24 | 24 |
|
25 | | -#include "Common/Core/EventPlaneHelper.h" |
26 | | -#include "Common/DataModel/Qvectors.h" |
27 | | - |
28 | | -#include "Framework/AnalysisTask.h" |
29 | | -#include "Framework/HistogramRegistry.h" |
30 | | -#include "Framework/runDataProcessing.h" |
31 | | - |
32 | | -#include "Math/GenVector/Boost.h" |
33 | | -#include "Math/Vector3D.h" |
34 | | -#include "Math/Vector4D.h" |
35 | | -#include "TRandom3.h" |
36 | | - |
| 25 | +#include "Common/Core/RecoDecay.h" |
| 26 | + |
| 27 | +#include <CommonConstants/MathConstants.h> |
| 28 | +#include <CommonConstants/PhysicsConstants.h> |
| 29 | +#include <Framework/ASoA.h> |
| 30 | +#include <Framework/AnalysisDataModel.h> |
| 31 | +#include <Framework/AnalysisHelpers.h> |
| 32 | +#include <Framework/AnalysisTask.h> |
| 33 | +#include <Framework/Configurable.h> |
| 34 | +#include <Framework/HistogramRegistry.h> |
| 35 | +#include <Framework/HistogramSpec.h> |
| 36 | +#include <Framework/InitContext.h> |
| 37 | +#include <Framework/Logger.h> |
| 38 | +#include <Framework/runDataProcessing.h> |
| 39 | + |
| 40 | +#include <Math/GenVector/Boost.h> |
| 41 | +#include <Math/Vector3D.h> // IWYU pragma: keep (do not replace with Math/Vector3Dfwd.h) |
| 42 | +#include <Math/Vector3Dfwd.h> |
| 43 | +#include <Math/Vector4D.h> // IWYU pragma: keep (do not replace with Math/Vector4Dfwd.h) |
| 44 | +#include <Math/Vector4Dfwd.h> |
| 45 | +#include <TPDGCode.h> |
| 46 | +#include <TRandom3.h> |
| 47 | + |
| 48 | +#include <Rtypes.h> |
| 49 | + |
| 50 | +#include <array> |
| 51 | +#include <cmath> |
| 52 | +#include <cstdint> |
| 53 | +#include <cstdlib> |
| 54 | +#include <numeric> |
37 | 55 | #include <vector> |
38 | 56 |
|
39 | 57 | using namespace o2; |
|
0 commit comments