- Fixed some serious bugs in amor2t having to do with recent extensions

- fixed velocity selector code to properly display data at list
- got hkl to give proper answers when a psi value was specified and
  limited psi to 360 max.
- fixed a minor spelling  error in fitcenter messages
- fixed badly working soft zeros with  negative sign
This commit is contained in:
cvs
2000-08-18 14:45:56 +00:00
parent e7e85d7b13
commit f3e4add7b5
6 changed files with 55 additions and 20 deletions

4
velo.c
View File

@@ -1184,9 +1184,9 @@
SCWrite(pCon,pBueffel,eError);
return 0;
}
fRot = fVal;
}
fRot = fVal;
/* do drive if we really need to */
if(iDrive)
{
@@ -1219,7 +1219,7 @@
/* list command */
if(strcmp(argv[1],"list") == 0)
{
sprintf(pBueffel,"%s.rotation = %f\n%s.Tilt = %f",argv[0], fRot,
sprintf(pBueffel,"%s.rotation = %f\n%s.Tilt = %f",argv[0], fRot,
argv[0],fTilt);
SCWrite(pCon,pBueffel,eValue);
return 1;