File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ struct ITSResponse {
5353 static float expSignal (const float momentum)
5454 {
5555 static constexpr float inverseMass = 1 . / o2::track::pid_constants::sMasses [id];
56- static constexpr float charge = static_cast <float >(o2::track::pid_constants::sCharges [id]);
56+ // static constexpr float charge = static_cast<float>(o2::track::pid_constants::sCharges[id]);
5757 const float bg = momentum * inverseMass;
5858 if (id == o2::track::PID::Helium3 || id == o2::track::PID::Alpha) {
5959 return (mITSRespParamsZ2 [0 ] / (std::pow (bg, mITSRespParamsZ2 [1 ])) + mITSRespParamsZ2 [2 ]);
@@ -65,7 +65,7 @@ struct ITSResponse {
6565 static float expResolution (const float momentum)
6666 {
6767 static constexpr float inverseMass = 1 . / o2::track::pid_constants::sMasses [id];
68- static constexpr float charge = static_cast <float >(o2::track::pid_constants::sCharges [id]);
68+ // static constexpr float charge = static_cast<float>(o2::track::pid_constants::sCharges[id]);
6969 const float bg = momentum * inverseMass;
7070 float relRes = mResolutionParams [0 ] * std::erf ((bg - mResolutionParams [1 ]) / mResolutionParams [2 ]);
7171 return relRes;
You can’t perform that action at this time.
0 commit comments