1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
|
program ROM;
{$DEFINE UseCThreads}
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Classes
{ you can add units after this },
SysUtils,ROMunit, matheunit, Math;
var inPulsO,inPuls,refPulsO,refPuls,surTraj,cRefPuls: tExtPointArray;
smooth,betaSmooth: longint;
tmax,wmax,absShift,betaBound: extended;
force,fourier,mitAmplMod: boolean;
f: textfile;
s,t,u,lpicIn,rohIn,rohRef,outIn,outRef,outRefC,outSur: string;
//const Verwendung='Verwendung: ROM ($Einfallspuls_Datei $Ausfallspuls_Datei)/(- $trace-Datei-Prefix) $output_inPuls $output_refPuls $output_Trajektorie $output_cRefPuls '+
// '[-s/--smooth $n] [-f/--force] [-t/--tmax $t] [-w/--wmax $w] [-F/--FFT] [-d/--dt $dt]';
const Verwendung='Verwendung: ROM $Parameterdatei';
begin
if (paramcount<>1) or not fileexists(paramstr(1)) then Fehler(Verwendung);
force:=false;
smooth:=1;
betaSmooth:=1;
tmax:=-1;
wmax:=-1;
absShift:=-1e9;
betaBound:=0.95;
fourier:=false;
mitAmplMod:=true;
lpicIn:='';
rohIn:='';
rohRef:='';
outIn:='';
outRef:='';
outRefC:='';
outSur:='';
assignfile(f,paramstr(1));
reset(f);
while not eof(f) do begin
readln(f,s);
s:=shellSubst(s);
if pos('#',s)>0 then
delete(s,pos('#',s),length(s));
s:=trim(s);
if s='' then continue;
if pos('?',s)=1 then begin
delete(s,1,1);
t:=trim(leftStr(s,pos('=',s)-1));
delete(s,1,pos('=',s));
u:=trim(leftStr(s,pos(':',s)-1));
delete(s,1,pos(':',s));
s:=trim(s);
if t<>u then
continue;
end;
if s='mit Gewalt' then begin
force:=true;
continue;
end;
if s='ohne Gewalt' then begin
force:=false;
continue;
end;
if s='mit Amplitudenmodulation' then begin
mitAmplMod:=true;
continue;
end;
if (s='ohne Amplitudenmodulation') or
(s='nur Phasenmodulation') then begin
mitAmplMod:=false;
continue;
end;
if pos('Glätte:',s)=1 then begin
delete(s,1,pos(':',s));
s:=trim(s);
smooth:=strtoint(s);
continue;
end;
if pos('Betaglätte:',s)=1 then begin
delete(s,1,pos(':',s));
s:=trim(s);
betaSmooth:=strtoint(s);
continue;
end;
if pos('Maximalgeschwindigkeit:',s)=1 then begin
delete(s,1,pos(':',s));
s:=trim(s);
betaBound:=strtofloat(s);
continue;
end;
if pos('tmax:',s)=1 then begin
delete(s,1,pos(':',s));
s:=trim(s);
tmax:=strtofloat(s);
continue;
end;
if (pos('wmax:',s)=1) or (pos('ωmax:',s)=1) then begin
delete(s,1,pos(':',s));
s:=trim(s);
wmax:=strtofloat(s);
continue;
end;
if (pos('Absolutverschiebung:',s)=1) then begin
delete(s,1,pos(':',s));
s:=trim(s);
if s='auto' then begin
absShift:=-1e9;
continue;
end;
if s='input' then begin
absShift:=-2e9;
continue;
end;
absShift:=strtofloat(s);
continue;
end;
if s='mit FFT' then begin
fourier:=true;
continue;
end;
if s='ohne FFT' then begin
fourier:=false;
continue;
end;
if pos('lpic-Quelle:',s)=1 then begin
delete(s,1,pos(':',s));
lpicIn:=trim(s);
continue;
end;
if pos('in-Quelle:',s)=1 then begin
delete(s,1,pos(':',s));
rohIn:=trim(s);
continue;
end;
if pos('reflex-Quelle:',s)=1 then begin
delete(s,1,pos(':',s));
rohRef:=trim(s);
continue;
end;
if pos('in-Ziel:',s)=1 then begin
delete(s,1,pos(':',s));
outIn:=trim(s);
continue;
end;
if pos('reflex-Ziel:',s)=1 then begin
delete(s,1,pos(':',s));
outRef:=trim(s);
continue;
end;
if pos('reflex-Approx-Ziel:',s)=1 then begin
delete(s,1,pos(':',s));
outRefC:=trim(s);
continue;
end;
if pos('trajektorie-Ziel:',s)=1 then begin
delete(s,1,pos(':',s));
outSur:=trim(s);
continue;
end;
Fehler('Unbekannter Parameter '''+s+''' in Inputdatei '''+paramstr(1)+'''!');
end;
closefile(f);
if (absShift<-1.5e9) and (lpicIn='') then
Fehler('Ich brauche zur Bestimmung der Gesamtverschiebung die Inputdatei vom LPIC!');
if (lpicIn<>'') and
((rohIn<>'') or
(rohRef<>'')) then
Fehler('lpic-Quelle und rohe Input-/Reflex-Quelle können nicht gleichzeitig angegeben werden!');
if ((rohIn<>'') xor
(rohRef<>'')) then
Fehler('Ich brauche den rohen Input- und Reflex-Puls, oder aber nur die lpic-Quelle!');
if (not force) and (outIn<>'') and fileexists(outIn+'.ori') then
Fehler('Die Ausgabedatei '''+outIn+'.ori'' existiert bereits!');
if (not force) and (outIn<>'') and fileexists(outIn) then
Fehler('Die Ausgabedatei '''+outIn+''' existiert bereits!');
if (not force) and (outRef<>'') and fileexists(outRef+'.ori') then
Fehler('Die Ausgabedatei '''+outRef+'.ori'' existiert bereits!');
if (not force) and (outRef<>'') and fileexists(outRef) then
Fehler('Die Ausgabedatei '''+outRef+''' existiert bereits!');
if (not force) and (outRefC<>'') and fileexists(outRefC) then
Fehler('Die Ausgabedatei '''+outRefC+''' existiert bereits!');
if (not force) and (outSur<>'') and fileexists(outSur) then
Fehler('Die Ausgabedatei '''+outSur+''' existiert bereits!');
if lpicIn<>'' then
readRawInputs(lpicIn,inPulsO,refPulsO,absShift)
else begin
readTextInput(rohIn,inPulsO);
readTextInput(rohRef,refPulsO);
end;
write(stderr,'Input sortieren ...');
sort(inPulsO);
sort(refPulsO);
writeln(stderr,' fertig');
uniq(inPulsO,false);
uniq(refPulsO,false);
write(stderr,'Input interpolieren ...');
interpoliere(inPulsO);
interpoliere(refPulsO);
writeln(stderr,' fertig');
flip(inPulsO);
if mitAmplMod then begin
integrate(inPulsO,inPuls);
integrate(refPulsO,refPuls);
end
else begin
copyArray(inPulsO,inPuls);
copyArray(refPulsO,refPuls);
end;
removeLinearOffset(inPuls);
removeLinearOffset(refPuls);
if smooth>1 then begin
write(stderr,'glätten ...');
smoothen(inPuls,smooth);
smoothen(refPuls,smooth);
writeln(stderr,' fertig');
end;
cut(inPuls,tmax);
cut(refPuls,tmax);
gesamtverschiebung(inPuls,refPuls,absShift);
write(stderr,'Trajektorie berechnen ...');
berechneTrajektorie(inPuls,refPuls,surTraj,absShift*byte(not fourier));
writeln(stderr,' fertig');
write(stderr,'Ergebnis sortieren ...');
sort(surTraj);
writeln(stderr,' fertig');
uniq(surTraj,false);
write(stderr,'Reflektierten Puls berechnen ...');
berechneRefPuls(inPulsO,surTraj,betaSmooth,betaBound,cRefPuls);
writeln(stderr,' fertig');
if fourier then begin
write(stderr,'Ergebnis interpolieren ...');
interpoliere(surTraj);
writeln(stderr,' fertig');
fft(inPuls);
fft(refPuls);
fft(surTraj);
inPuls[0].y:=0;
refPuls[0].y:=0;
surTraj[0].y:=0;
if wmax<0 then begin
cut(surTraj,min(refPuls[length(refPuls)-1].x,inPuls[length(inPuls)-1].x)/2);
cut(inPuls,surTraj[length(surTraj)-1].x);
cut(refPuls,surTraj[length(surTraj)-1].x);
end
else begin
cut(surTraj,wmax);
cut(inPuls,wmax);
cut(refPuls,wmax);
end;
write(stderr,'alles normieren ...');
normiere(inPuls);
normiere(refPuls);
normiere(surTraj);
writeln(stderr,' fertig');
end;
if outIn<>'' then begin
writeOutput(outIn+'.ori',inPulsO);
writeOutput(outIn,inPuls);
end;
if outRef<>'' then begin
writeOutput(outRef+'.ori',refPulsO);
writeOutput(outRef,refPuls);
end;
if outSur<>'' then writeOutput(outSur,surTraj);
if outRefC<>'' then writeOutput(outRefC,cRefPuls);
end.
|