]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Correct sign for calculated b_y (outside measured region).
authormorsch <morsch@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 17 Jul 2007 20:56:04 +0000 (20:56 +0000)
committermorsch <morsch@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 17 Jul 2007 20:56:04 +0000 (20:56 +0000)
STEER/AliMagFMapsV1.cxx

index 1f747c7c7502888e3bfb04dec2738c04bdd4d263..bc6d16318175c5636dad8a302281586be437a414 100644 (file)
@@ -108,7 +108,7 @@ void AliMagFMapsV1::Field(Float_t *x, Float_t *b) const
        // Match to measure map
        b[0] = - b[0] * kScale;
        b[2] = - b[2] * kScale;
-       b[1] =   b[1] * kScale;
+       b[1] = - b[1] * kScale;
     }
 }