Index: trunk/src/transform_field/phys.m
===================================================================
--- trunk/src/transform_field/phys.m	(revision 241)
+++ trunk/src/transform_field/phys.m	(revision 250)
@@ -116,5 +116,9 @@
     DataOut.PlaneCoord=Calib.SliceCoord(Data.ZIndex,:);% transfer the slice position
     if isfield(Calib,'SliceAngle') % transfer the slice rotation angles
-        DataOut.PlaneAngle=Calib.SliceAngle(Data.ZIndex,:);
+        if isequal(size(Calib.SliceAngle,1),1)
+             DataOut.PlaneAngle=Calib.SliceAngle;
+        else
+            DataOut.PlaneAngle=Calib.SliceAngle(Data.ZIndex,:);
+        end
     end
 end
