--- trunk/mdtools/md_code/DirectionalAtom.cpp 2002/07/16 21:10:49 30 +++ trunk/mdtools/md_code/DirectionalAtom.cpp 2002/07/16 21:38:22 31 @@ -41,17 +41,17 @@ void DirectionalAtom::getA( double the_A[3][3] ){ void DirectionalAtom::getA( double the_A[3][3] ){ - A[0][0] = Axx; - A[0][1] = Axy; - A[0][2] = Axz; + the_A[0][0] = Axx; + the_A[0][1] = Axy; + the_A[0][2] = Axz; - A[1][0] = Ayx; - A[1][1] = Ayy; - A[1][2] = Ayz; + the_A[1][0] = Ayx; + the_A[1][1] = Ayy; + the_A[1][2] = Ayz; - A[2][0] = Azx; - A[2][1] = Azy; - A[2][2] = Azz; + the_A[2][0] = Azx; + the_A[2][1] = Azy; + the_A[2][2] = Azz; }