|
13 | 13 | /// \brief Standalone QA task for UPC event tagging and charged-jet information. |
14 | 14 | /// \author Jaehyeok Ryu |
15 | 15 |
|
| 16 | +#include "PWGUD/Core/SGCutParHolder.h" |
| 17 | +#include "PWGUD/Core/SGSelector.h" |
| 18 | + |
| 19 | +#include "Common/DataModel/Centrality.h" |
| 20 | +#include "Common/DataModel/EventSelection.h" |
| 21 | +#include "Common/DataModel/Multiplicity.h" |
| 22 | +#include "Common/DataModel/TrackSelectionTables.h" |
| 23 | + |
| 24 | +#include <CommonConstants/PhysicsConstants.h> |
16 | 25 | #include <Framework/AnalysisDataModel.h> |
| 26 | +#include <Framework/AnalysisHelpers.h> |
| 27 | +#include <Framework/AnalysisTask.h> |
| 28 | +#include <Framework/Configurable.h> |
| 29 | +#include <Framework/HistogramRegistry.h> |
| 30 | +#include <Framework/HistogramSpec.h> |
| 31 | +#include <Framework/InitContext.h> |
| 32 | +#include <Framework/runDataProcessing.h> |
| 33 | + |
| 34 | +#include <TPDGCode.h> |
| 35 | + |
| 36 | +#include <fastjet/AreaDefinition.hh> |
| 37 | +#include <fastjet/ClusterSequenceArea.hh> |
| 38 | +#include <fastjet/GhostedAreaSpec.hh> |
| 39 | +#include <fastjet/JetDefinition.hh> |
| 40 | +#include <fastjet/PseudoJet.hh> |
| 41 | + |
| 42 | +#include <cmath> |
| 43 | +#include <cstdint> |
| 44 | +#include <string> |
| 45 | +#include <vector> |
| 46 | + |
| 47 | +using namespace o2; |
| 48 | +using namespace o2::framework; |
| 49 | +using namespace o2::framework::expressions; |
17 | 50 |
|
18 | 51 | namespace o2::aod |
19 | 52 | { |
@@ -241,36 +274,6 @@ using UpcJetTrackMCP = UpcJetTracksMCP::iterator; |
241 | 274 |
|
242 | 275 | } // namespace o2::aod |
243 | 276 |
|
244 | | -#include "PWGUD/Core/SGCutParHolder.h" |
245 | | -#include "PWGUD/Core/SGSelector.h" |
246 | | - |
247 | | -#include "Common/DataModel/Centrality.h" |
248 | | -#include "Common/DataModel/EventSelection.h" |
249 | | -#include "Common/DataModel/Multiplicity.h" |
250 | | -#include "Common/DataModel/TrackSelectionTables.h" |
251 | | - |
252 | | -#include <CommonConstants/PhysicsConstants.h> |
253 | | -#include <Framework/ASoAHelpers.h> |
254 | | -#include <Framework/AnalysisTask.h> |
255 | | -#include <Framework/HistogramRegistry.h> |
256 | | -#include <Framework/runDataProcessing.h> |
257 | | - |
258 | | -#include <TPDGCode.h> |
259 | | - |
260 | | -#include <fastjet/AreaDefinition.hh> |
261 | | -#include <fastjet/ClusterSequenceArea.hh> |
262 | | -#include <fastjet/GhostedAreaSpec.hh> |
263 | | -#include <fastjet/JetDefinition.hh> |
264 | | -#include <fastjet/PseudoJet.hh> |
265 | | - |
266 | | -#include <cmath> |
267 | | -#include <string> |
268 | | -#include <vector> |
269 | | - |
270 | | -using namespace o2; |
271 | | -using namespace o2::framework; |
272 | | -using namespace o2::framework::expressions; |
273 | | - |
274 | 277 | /// Stand-alone QA task for validating UPC event tagging for charged-jet studies. |
275 | 278 | /// The tagging and QA developed here are intended to guide a future integration |
276 | 279 | /// of the required UPC information into the PWGJE derived-data workflow. |
|
0 commit comments