|
14 | 14 | /// \author Hyunji Lim (hyunji.lim@cern.ch) |
15 | 15 | /// \since 14/01/2026 |
16 | 16 |
|
17 | | -#include <Framework/Configurable.h> |
18 | | -#include "Math/Vector4D.h" |
19 | | - |
20 | | -#include "DataFormatsParameters/GRPObject.h" |
21 | | - |
22 | 17 | #include "PWGLF/DataModel/LFResonanceTables.h" |
23 | 18 | #include "PWGLF/DataModel/mcCentrality.h" |
24 | 19 | #include "PWGLF/Utils/inelGt.h" |
|
29 | 24 | #include "Common/DataModel/PIDResponse.h" |
30 | 25 |
|
31 | 26 | #include "CommonConstants/PhysicsConstants.h" |
| 27 | +#include "DataFormatsParameters/GRPObject.h" |
32 | 28 | #include "Framework/ASoAHelpers.h" |
33 | 29 | #include "Framework/AnalysisTask.h" |
34 | 30 | #include "Framework/O2DatabasePDGPlugin.h" |
35 | 31 | #include "Framework/runDataProcessing.h" |
| 32 | +#include <Framework/Configurable.h> |
| 33 | + |
| 34 | +#include "Math/Vector4D.h" |
36 | 35 |
|
37 | 36 | using namespace o2; |
38 | 37 | using namespace o2::framework; |
@@ -83,8 +82,8 @@ struct rho770analysis { |
83 | 82 | Configurable<int> cfgTPCRows{"cfgTPCRows", 80, "Minimum Number of TPC Crossed Rows "}; |
84 | 83 |
|
85 | 84 | // PID |
86 | | - Configurable<double> cMaxTOFnSigmaPion{"cMaxTOFnSigmaPion", 3.0, "TOF nSigma cut for Pion"}; // TOF |
87 | | - Configurable<double> cMaxTPCnSigmaPion{"cMaxTPCnSigmaPion", 5.0, "TPC nSigma cut for Pion"}; // TPC |
| 85 | + Configurable<double> cMaxTOFnSigmaPion{"cMaxTOFnSigmaPion", 3.0, "TOF nSigma cut for Pion"}; // TOF |
| 86 | + Configurable<double> cMaxTPCnSigmaPion{"cMaxTPCnSigmaPion", 5.0, "TPC nSigma cut for Pion"}; // TPC |
88 | 87 | Configurable<double> cMaxTPCnSigmaPionnoTOF{"cMaxTPCnSigmaPionnoTOF", 3.0, "TPC nSigma cut for Pion in no TOF case"}; // TPC |
89 | 88 | Configurable<double> nsigmaCutCombinedPion{"nsigmaCutCombinedPion", 3.0, "Combined nSigma cut for Pion"}; |
90 | 89 | Configurable<PionPIDMode> selectType{"selectType", TrackPIDMode::OnlyTPC, "Pion PID selection mode"}; |
@@ -188,7 +187,7 @@ struct rho770analysis { |
188 | 187 | if (track.tpcNSigmaPi() * track.tpcNSigmaPi() + track.tofNSigmaPi() * track.tofNSigmaPi() >= nsigmaCutCombinedPion * nsigmaCutCombinedPion) |
189 | 188 | return false; |
190 | 189 | } |
191 | | - if (selectType == TrackPIDMode::TPCWithTOFVeto) { //TPC TOF veto |
| 190 | + if (selectType == TrackPIDMode::TPCWithTOFVeto) { // TPC TOF veto |
192 | 191 | if (track.hasTOF()) { |
193 | 192 | if (std::fabs(track.tpcNSigmaPi()) >= cMaxTPCnSigmaPion || std::fabs(track.tofNSigmaPi()) >= cMaxTOFnSigmaPion) |
194 | 193 | return false; |
|
0 commit comments