Waveform filter programs
foutra_options_help.cc
Go to the documentation of this file.
1 // DO NOT EDIT: this file is automatically derived from foutra_options_help.txt
2 #include "foutra_options_help.h"
4 {
5  "outfile output filename\n"
6  "infile input filename\n"
7  " t:T select traces T, where T may be any range\n"
8  " specification like '3-4' or '5,6,7-12,20'\n"
9  "\n"
10  "-help prints this help text\n"
11  "-xhelp print information concerning supported data formats\n"
12  "\n"
13  "-v be verbose\n"
14  "-D debug mode\n"
15  "-o overwrite output\n"
16  "\n"
17  "-type type select input file type\n"
18  "-Type type select output file type\n"
19  "\n"
20  "-amplitude compute Fourier amplitude spectrum\n"
21  "-power compute power spectral density (or power spectrum)\n"
22  "-harmonic scale output appropriate fro harmonic signals\n"
23  " useful for two-tone-tests of linearity (see below)\n"
24  "\n"
25  "-rms report rms values of input data\n"
26  "\n"
27  "-boxcar apply boxcar taper (i.e. no taper; default is Hanning)\n"
28  "-demean[=n] remove average from input time series\n"
29  " (determined from n samples)\n"
30  "-detrend[=n] remove trend from input time series\n"
31  " (determined from n samples)\n"
32  "-divisor[=n] FFT becomes very inefficient if the factorization\n"
33  " of the number of samples includes large prime numbers.\n"
34  " This option removes the least number of samples to\n"
35  " the total number of samples a multiple of \"n\"\n"
36  "-pad n pad time series with zeroes; n gives the integer factor\n"
37  " for the number of samples; the raw amplitude spectrum\n"
38  " has to be understood as the spectrum of the whole\n"
39  " series including the padded zeroes; PSD and harmonic\n"
40  " signals are scaled to represent the taper time window\n"
41  " only, such that padding is a means of smoothing only\n"
42  "-nsegments n subdivide input time series in \"n\" overlapping\n"
43  " sequences (overlap is 50%); spectral analysis is\n"
44  " done for each sequence individually; the result\n"
45  " is the mean of all sequences; this applies to PSD\n"
46  " and harmonic signal analysis only; it is particularly\n"
47  " useful for two-tone-test where spectral smoothing\n"
48  " of background noise is anticpated, while maintaining\n"
49  " the full resolution for harmonic peaks\n"
50  "-avg[=n] smooth power spectrum by averaging over n samples\n"
51  " values still specify power spectral density\n"
52  "-rbw[=n] smooth power spectrum by averaging over n decades\n"
53  " values still specify power spectral density\n"
54  "-derivative[=n] effectively take n-th derivative of time series\n"
55  " computation is done in the Fourier domain and has no effect on\n"
56  " time series\n"
57  "-scalerbw[=n] scale to mean value in n decades\n"
58  " output value then are not power spectral density but average\n"
59  " signal power in the specified bandwidth\n"
60  "-ASCII[=base] write result to two-column ASCII files with basename 'base'\n"
61  "-logascii[=n] write ASCII data on logarithmic frequency axis with\n"
62  " one value per 'n' decades\n"
63  "-avgascii only average values for output to ASCII file\n"
64  " this option speeds up calculation together with\n"
65  " -scalerbw which increases computation time\n"
66  " with the square of frequency\n"
67 };
char foutra_options_help[]