Skip to content

Commit

Permalink
Merge pull request #307 from hpc4cmb/new_aatm
Browse files Browse the repository at this point in the history
new libaatm uses 64bit unsigned integers (size_t)
  • Loading branch information
tskisner authored Nov 11, 2019
2 parents e95b7c6 + 38db3c1 commit 40260ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libtoast/src/toast_atm_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ int toast::atm_get_atmospheric_loading_vec(double altitude,
atm::SkyStatus ss = get_sky_status_vec(altitude, temperature, pressure,
freqmin, freqmax, nfreq);
ss.setUserWH2O(pwv, "mm");
for (unsigned int i = 0; i < nfreq; ++i) {
for (size_t i = 0; i < nfreq; ++i) {
loading[i] = ss.getTebbSky(i).get();
}

Expand Down

0 comments on commit 40260ec

Please sign in to comment.