関数tws_check_source マニュアル

(The documentation of function tws_check_source)

Last Update: 2021/12/8


◆機能・用途(Purpose)

地震波動ソースの設定ファイルから読み込んだ設定のチェックを行う。 関数tws_set_sourceからの内部呼び出しとして用いられる。
Check the source configurations for seismic wave sources read from a file. This function is called internally from function tws_set_source.


◆形式(Format)

#include <tws/source.h>
inline void tws_check_source
(const int Nsource,const char ∗source_file, const struct tws_source ∗source)


◆引数(Arguments)

Nsource ソースの個数。
The number of sources.
source_file 読み込んだ地震波動ソースの設定ファイル名。
The name of the configuration file for seismic wave sources to have read.
source 地震波動ソースの設定ファイルから読み込んだソースの設定。
The source configurations read from the configuration file for seismic wave sources.


◆使用例(Example)

int Nsource=tws_count_source("source.ini");
struct TF_parameters parameters;
char ∗∗type;
struct tws_source source= tws_set_source(Nsource,"source.ini",&parameters,type);
TF_check_source(Nsource,"source.ini",source);