Skip to content

Commit

Permalink
Fix const
Browse files Browse the repository at this point in the history
  • Loading branch information
dpgrote committed Jan 20, 2025
1 parent 7a91252 commit 2b087e8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ BremsstrahlungFunc::UploadCrossSection (int Z)
std::vector<std::vector<amrex::ParticleReal>> & kdsigdk = m_kdsigdk_map.at(Z);

// kdsigdk at the default cutoff
int i0_cut = 0;
int const i0_cut = 0;
amrex::ParticleReal const koT1_cut = m_exe.m_koT1_cut_default;
amrex::ParticleReal const w00 = (m_exe.m_koT1_grid[i0_cut+1] - koT1_cut)/(m_exe.m_koT1_grid[i0_cut+1] - m_exe.m_koT1_grid[i0_cut]);

Expand Down

0 comments on commit 2b087e8

Please sign in to comment.