|
15 | 15 | /// \brief Analysis to do PID |
16 | 16 |
|
17 | 17 | #include "PWGLF/DataModel/LFStrangenessTables.h" |
18 | | - |
19 | 18 | #include "Common/Core/RecoDecay.h" |
20 | 19 | #include "Common/Core/TrackSelection.h" |
21 | 20 | #include "Common/Core/TrackSelectionDefaults.h" |
|
24 | 23 | #include "Common/DataModel/Multiplicity.h" |
25 | 24 | #include "Common/DataModel/PIDResponse.h" |
26 | 25 | #include "Common/DataModel/TrackSelectionTables.h" |
27 | | - |
28 | 26 | #include "Framework/ASoAHelpers.h" |
29 | 27 | #include "Framework/AnalysisDataModel.h" |
30 | 28 | #include "Framework/AnalysisTask.h" |
31 | 29 | #include "Framework/runDataProcessing.h" |
32 | 30 | #include "ReconstructionDataFormats/Track.h" |
33 | | - |
34 | 31 | #include "TF1.h" |
35 | 32 |
|
36 | 33 | using namespace o2; |
@@ -100,7 +97,7 @@ struct DedxAnalysis { |
100 | 97 | Configurable<float> maxMassGamma{"maxMassGamma", 0.002022f, |
101 | 98 | "Maximum Mass Gamma"}; |
102 | 99 | Configurable<bool> calibrationMode{"calibrationMode", true, "calibration mode"}; |
103 | | - Configurable<bool> additionalTrackCuts{"additionalTrackCuts", true, "additional track cuts"}; |
| 100 | + Configurable<bool> additionalCuts{"additionalCuts", true, "additional cuts"}; |
104 | 101 | // Histograms names |
105 | 102 | static constexpr std::string_view kDedxvsMomentumPos[kParticlesType] = {"dEdx_vs_Momentum_all_Pos", "dEdx_vs_Momentum_Pi_v0_Pos", "dEdx_vs_Momentum_Pr_v0_Pos", "dEdx_vs_Momentum_El_v0_Pos"}; |
106 | 103 | static constexpr std::string_view kDedxvsMomentumNeg[kParticlesType] = {"dEdx_vs_Momentum_all_Neg", "dEdx_vs_Momentum_Pi_v0_Neg", "dEdx_vs_Momentum_Pr_v0_Neg", "dEdx_vs_Momentum_El_v0_Neg"}; |
@@ -436,7 +433,7 @@ struct DedxAnalysis { |
436 | 433 | if (!collision.sel8()) |
437 | 434 | return; |
438 | 435 |
|
439 | | - if (additionalTrackCuts) { |
| 436 | + if (additionalCuts) { |
440 | 437 | if (!collision.selection_bit(o2::aod::evsel::kNoSameBunchPileup)) |
441 | 438 | return; |
442 | 439 |
|
|
0 commit comments