|
13 | 13 | /// \file jetChargedV2.cxx |
14 | 14 | /// \brief This file contains the implementation for the Charged Jet v2 analysis in the ALICE experiment |
15 | 15 |
|
16 | | -#include <chrono> |
17 | | -#include <string> |
18 | | -#include <vector> |
19 | | -#include <cmath> |
20 | | -#include <TRandom3.h> |
21 | | -#include <THn.h> |
22 | | -#include <THnSparse.h> |
23 | | -#include <algorithm> |
24 | | -#include <TComplex.h> |
25 | | -#include <TH1F.h> |
26 | | -#include <TH2D.h> |
27 | | -#include <TMath.h> |
28 | | -#include <TVector2.h> |
29 | | - |
30 | | -#include "Framework/ASoA.h" |
31 | | -#include "Framework/AnalysisDataModel.h" |
32 | | -#include "Framework/AnalysisTask.h" |
33 | | -#include "Framework/O2DatabasePDGPlugin.h" |
34 | | -#include "Framework/HistogramRegistry.h" |
35 | | -#include "Framework/runDataProcessing.h" |
36 | | - |
37 | 16 | #include "PWGJE/Core/FastJetUtilities.h" |
| 17 | +#include "PWGJE/Core/JetDerivedDataUtilities.h" |
38 | 18 | #include "PWGJE/Core/JetFinder.h" |
39 | 19 | #include "PWGJE/Core/JetFindingUtilities.h" |
40 | 20 | #include "PWGJE/DataModel/Jet.h" |
41 | | -#include "PWGJE/Core/JetDerivedDataUtilities.h" |
42 | 21 |
|
| 22 | +#include "Common/Core/EventPlaneHelper.h" |
43 | 23 | #include "Common/Core/TrackSelection.h" |
44 | 24 | #include "Common/Core/TrackSelectionDefaults.h" |
45 | 25 | #include "Common/DataModel/EventSelection.h" |
| 26 | +#include "Common/DataModel/Qvectors.h" |
46 | 27 | #include "Common/DataModel/TrackSelectionTables.h" |
47 | | - |
48 | | -#include "Framework/ASoAHelpers.h" |
49 | 28 | #include "EventFiltering/filterTables.h" |
50 | 29 |
|
| 30 | +#include "CommonConstants/PhysicsConstants.h" |
| 31 | +#include "Framework/ASoA.h" |
| 32 | +#include "Framework/ASoAHelpers.h" |
| 33 | +#include "Framework/AnalysisDataModel.h" |
| 34 | +#include "Framework/AnalysisTask.h" |
| 35 | +#include "Framework/HistogramRegistry.h" |
| 36 | +#include "Framework/O2DatabasePDGPlugin.h" |
51 | 37 | #include "Framework/RunningWorkflowInfo.h" |
52 | 38 | #include "Framework/StaticFor.h" |
53 | | -#include "Common/DataModel/Qvectors.h" |
54 | | -#include "Common/Core/EventPlaneHelper.h" |
55 | | -#include "CommonConstants/PhysicsConstants.h" |
| 39 | +#include "Framework/runDataProcessing.h" |
| 40 | + |
| 41 | +#include <TComplex.h> |
| 42 | +#include <TH1F.h> |
| 43 | +#include <TH2D.h> |
| 44 | +#include <THn.h> |
| 45 | +#include <THnSparse.h> |
| 46 | +#include <TMath.h> |
| 47 | +#include <TRandom3.h> |
| 48 | +#include <TVector2.h> |
| 49 | + |
| 50 | +#include <algorithm> |
| 51 | +#include <chrono> |
| 52 | +#include <cmath> |
| 53 | +#include <string> |
| 54 | +#include <vector> |
56 | 55 |
|
57 | 56 | using namespace o2; |
58 | 57 | using namespace o2::framework; |
|
0 commit comments