Skip to content

Commit

Permalink
Fix potential index swap
Browse files Browse the repository at this point in the history
  • Loading branch information
tmadlener committed Aug 23, 2024
1 parent 94f8a64 commit d00325c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/src/WeightedPoints3D.cc
Original file line number Diff line number Diff line change
Expand Up @@ -885,8 +885,8 @@ void WeightedPoints3D::propagateVecErrorsCartesian(){
Dmat[1][1] = sin(phi)*cos(theta) ;
Dmat[2][1] = -sin(theta) ;
double thph_dmat [2][3];
for ( int i =0 ; i < 3 ; i++ ) {
for ( int j=0 ; j < 2 ; j++ ) {
for ( int i =0 ; i < 2 ; i++ ) {
for ( int j=0 ; j < 3 ; j++ ) {
thph_dmat [i][j] = 0. ;
for (int k=0 ; k < 2 ; k++ ) {
thph_dmat [i][j] += _theta_phi_cov[i][k][l]*Dmat[j][k];
Expand Down

0 comments on commit d00325c

Please sign in to comment.