summaryrefslogtreecommitdiff
path: root/epostunit.pas
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2017-09-27 10:45:26 +0200
committerErich Eckner <git@eckner.net>2017-09-27 10:45:26 +0200
commit668ed643687a9dff8a5a99c2630e45c48ccdf960 (patch)
tree8af7c2ca249fd7d2904c7a3bda309c82eeadf07e /epostunit.pas
parentbeedc7da5a5bd083fdef1d784bdd06592432d0a5 (diff)
downloadepost-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.pas4
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