Skip to content

Commit

Permalink
Update src/BeamAdapter/component/controller/InterventionalRadiologyCo…
Browse files Browse the repository at this point in the history
…ntroller.inl

Co-authored-by: Hugo <[email protected]>
  • Loading branch information
epernod and hugtalbot authored May 17, 2023
1 parent fc22c1e commit abd30fa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@ void InterventionalRadiologyController<DataTypes>::interventionalRadiologyComput
m_instrumentsList[i]->getSamplingParameters(xP_noticeable_I, density_I);

// check each interval of noticeable point to see if they go out (>0) and use corresponding density to sample the interval.
for (auto j=0; j<(int)(xP_noticeable_I.size()-1); j++)
for (int j=0; j<(int)(xP_noticeable_I.size()-1); j++)
{
const Real xP = xP_noticeable_I[j];
const Real nxP = xP_noticeable_I[j + 1];
Expand Down

0 comments on commit abd30fa

Please sign in to comment.