|
13 | 13 | /// \brief Standalone Lambda* deuteron-proxy task extracted from nucleibalance.cxx. |
14 | 14 | /// \author Sushanta Tripathy <sushanta.tripathy@cern.ch> |
15 | 15 |
|
| 16 | + |
16 | 17 | #include "Common/CCDB/EventSelectionParams.h" |
17 | 18 | #include "Common/Core/RecoDecay.h" |
18 | 19 | #include "Common/DataModel/Centrality.h" |
19 | 20 | #include "Common/DataModel/EventSelection.h" |
20 | | -#include "Common/DataModel/Multiplicity.h" |
21 | 21 | #include "Common/DataModel/PIDResponseTOF.h" |
22 | 22 | #include "Common/DataModel/PIDResponseTPC.h" |
23 | 23 | #include "Common/DataModel/TrackSelectionTables.h" |
24 | 24 |
|
25 | | -#include <CCDB/BasicCCDBManager.h> |
26 | 25 | #include <CommonConstants/MathConstants.h> |
27 | 26 | #include <CommonConstants/PhysicsConstants.h> |
28 | | -#include <DataFormatsParameters/GRPObject.h> |
29 | 27 | #include <Framework/AnalysisDataModel.h> |
30 | | -#include <Framework/AnalysisHelpers.h> |
31 | 28 | #include <Framework/AnalysisTask.h> |
32 | | -#include <Framework/Array2D.h> |
33 | | -#include <Framework/BinningPolicy.h> |
34 | 29 | #include <Framework/Configurable.h> |
35 | | -#include <Framework/DataTypes.h> |
36 | | -#include <Framework/GroupedCombinations.h> |
37 | 30 | #include <Framework/HistogramRegistry.h> |
38 | 31 | #include <Framework/HistogramSpec.h> |
39 | 32 | #include <Framework/InitContext.h> |
40 | | -#include <Framework/StepTHn.h> |
41 | 33 | #include <Framework/runDataProcessing.h> |
42 | 34 |
|
43 | | -#include <TDirectory.h> |
44 | | -#include <TFile.h> |
45 | | -#include <TFormula.h> |
46 | 35 | #include <THn.h> |
47 | 36 | #include <TPDGCode.h> |
48 | 37 |
|
49 | | -#include <sys/types.h> |
50 | 38 |
|
51 | | -#include <algorithm> |
52 | 39 | #include <array> |
53 | | -#include <chrono> |
54 | 40 | #include <cmath> |
55 | | -#include <cstdint> |
56 | 41 | #include <cstring> |
57 | 42 | #include <deque> |
58 | | -#include <iterator> |
59 | | -#include <memory> |
60 | 43 | #include <string> |
61 | | -#include <tuple> |
62 | | -#include <type_traits> |
63 | 44 | #include <utility> |
64 | 45 | #include <vector> |
65 | 46 |
|
@@ -2068,7 +2049,7 @@ struct Lambdastarproxy { |
2068 | 2049 | PROCESS_SWITCH(Lambdastarproxy, process, "Lambda* proxy via (d/2)+K", true); |
2069 | 2050 | }; |
2070 | 2051 |
|
2071 | | -WorkflowSpec defineDataProcessing(ConfigContext const& cfgc) |
| 2052 | +WorkflowSpec defineDataProcessing(ConfigContext const& context) |
2072 | 2053 | { |
2073 | | - return WorkflowSpec{adaptAnalysisTask<Lambdastarproxy>(cfgc)}; |
| 2054 | + return WorkflowSpec{adaptAnalysisTask<Lambdastarproxy>(context)}; |
2074 | 2055 | } |
0 commit comments