|
23 | 23 | #include <Framework/InitContext.h> |
24 | 24 | #include <Framework/OutputObjHeader.h> |
25 | 25 | #include <Framework/runDataProcessing.h> |
26 | | -// For centrality: |
27 | 26 | #include "Common/DataModel/Centrality.h" |
28 | 27 | #include "Common/DataModel/EventSelection.h" |
29 | | -// For TPC Mult |
30 | 28 | #include "Common/DataModel/Multiplicity.h" |
31 | | -// For DCA and TrackSelection |
32 | 29 | #include "Common/DataModel/TrackSelectionTables.h" |
33 | | -// For EP |
34 | 30 | #include "Common/Core/EventPlaneHelper.h" |
35 | 31 | #include "Common/DataModel/Qvectors.h" |
36 | | -// For occupancy bit |
37 | 32 | #include "Common/CCDB/EventSelectionParams.h" |
38 | 33 |
|
39 | 34 | // Event selection: Only events that contain track above some threshold |
@@ -139,7 +134,7 @@ struct tableDiffWake { |
139 | 134 | void init(InitContext const&) |
140 | 135 | { |
141 | 136 | const AxisSpec axisEta{30, -1.5, +1.5, "#eta"}; |
142 | | - const AxisSpec axispT{nBinsPt, 0, 10, "p_{T}"}; |
| 137 | + const AxisSpec axispT{nBinsPt, 0, 250, "p_{T}"}; |
143 | 138 |
|
144 | 139 | histos.add("etaHistogram", "etaHistogram", kTH1F, {axisEta}); |
145 | 140 | histos.add("pTHistogram", "pTHistogram", kTH1F, {axispT}); |
@@ -208,6 +203,9 @@ struct tableDiffWake { |
208 | 203 | if (!track.isGlobalTrack()) |
209 | 204 | continue; // General track cuts |
210 | 205 |
|
| 206 | + if (abs(track.px()) > 173.0 || abs(track.py()) > 173.0 || abs(track.pz()) > 173.0) |
| 207 | + continue; // to avoid overflow in Substitute_p |
| 208 | + |
211 | 209 | histos.fill(HIST("etaHistogram"), track.eta()); |
212 | 210 | histos.fill(HIST("pTHistogram"), track.pt()); |
213 | 211 |
|
|
0 commit comments