Skip to content

Commit e74e8ba

Browse files
committed
Fixing MegaLinter
1 parent 9ce92df commit e74e8ba

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

DPG/Tasks/AOTTrack/PID/HMPID/hmpidTableProducer.cxx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -252,11 +252,14 @@ struct HmpidTableProducer {
252252
}
253253

254254
int getHmpidChamber(
255-
std::array<double, 3> x,
256-
std::array<double, 3> p,
255+
std::array<double, 3> xIn,
256+
std::array<double, 3> pIn,
257257
double bz,
258258
int charge)
259259
{
260+
auto x = xIn;
261+
auto p = pIn;
262+
260263
auto* param = o2::hmpid::Param::instance();
261264

262265
for (int ch = o2::hmpid::Param::kMinCh; ch <= o2::hmpid::Param::kMaxCh; ++ch) {

0 commit comments

Comments
 (0)