diff options
author | Erich Eckner <git@eckner.net> | 2017-09-27 10:45:26 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2017-09-27 10:45:26 +0200 |
commit | 668ed643687a9dff8a5a99c2630e45c48ccdf960 (patch) | |
tree | 8af7c2ca249fd7d2904c7a3bda309c82eeadf07e /epostunit.pas | |
parent | beedc7da5a5bd083fdef1d784bdd06592432d0a5 (diff) | |
download | epost-668ed643687a9dff8a5a99c2630e45c48ccdf960.tar.xz |
epostunit.pas: sinnvollere Standardwerte für tStart und tStop für Andor-Inputdateien
Diffstat (limited to 'epostunit.pas')
-rw-r--r-- | epostunit.pas | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/epostunit.pas b/epostunit.pas index c386e69..f36215b 100644 --- a/epostunit.pas +++ b/epostunit.pas @@ -1684,6 +1684,10 @@ begin s:=trim(s); (dateien[i] as tAndorInputDateiInfo).detektorGroesze['x']:=strToInt64(erstesArgument(s,' ',false)); (dateien[i] as tAndorInputDateiInfo).detektorGroesze['y']:=strToInt64(erstesArgument(s,' ',false)); + if (dateien[i].tStart=-myInf) and (dateien[i].tStop=myInf) then begin + dateien[i].tStart:=0; + dateien[i].tStop:=(dateien[i] as tAndorInputDateiInfo).detektorGroesze['y']-1; + end; try readAnAndorString(f,(dateien[i] as tAndorInputDateiInfo).dateiName,strToInt64(s),true); except |