Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
GPIAG-Software
IFOS2D
Commits
f9e73d11
Commit
f9e73d11
authored
Feb 25, 2016
by
laura.gassner
Browse files
BUGFIX reading inverted source wavelet
parent
0904becf
Changes
3
Hide whitespace changes
Inline
Side-by-side
par/in_and_out/IFOS2D_INV_all_parameters.json
View file @
f9e73d11
...
...
@@ -157,7 +157,7 @@
"TRKILL_STF"
:
"0"
,
"TRKILL_STF_OFFSET"
:
"0"
,
"TRKILL_STF_OFFSET_LOWER , TRKILL_STF_OFFSET_UPPER"
:
"0 , 10"
,
"TRKILL_FILE_STF"
:
"./trace_kill/trace_kill
.dat
"
,
"TRKILL_FILE_STF"
:
"./trace_kill/trace_kill"
,
"Frequency filtering during inversion"
:
"comment"
,
"TIME_FILT"
:
"0"
,
...
...
par/in_and_out/toy_example/toy_example_ac_INV.json
View file @
f9e73d11
...
...
@@ -132,7 +132,7 @@
"N_STF_START"
:
"1"
,
"TAPER_STF"
:
"1"
,
"TRKILL_STF"
:
"0"
,
"TRKILL_FILE_STF"
:
"./trace_kill/trace_kill
.dat
"
,
"TRKILL_FILE_STF"
:
"./trace_kill/trace_kill"
,
"Frequency filtering during inversion"
:
"comment"
,
"TIME_FILT"
:
"0"
,
...
...
src/inseis_source_wavelet.c
View file @
f9e73d11
...
...
@@ -36,9 +36,9 @@ void inseis_source_wavelet(float *section, int ns, int ishot, int SH){
FILE
*
fpdata
;
if
(
SH
==
0
)
{
sprintf
(
data
,
"%s.shot%d"
,
SIGNAL_FILE
,
ishot
);
sprintf
(
data
,
"%s.shot%d
.su
"
,
SIGNAL_FILE
,
ishot
);
}
else
{
sprintf
(
data
,
"%s.shot%d"
,
SIGNAL_FILE_SH
,
ishot
);
sprintf
(
data
,
"%s.shot%d
.su
"
,
SIGNAL_FILE_SH
,
ishot
);
}
fpdata
=
fopen
(
data
,
"r"
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment