aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/man/indexamajig.15
-rw-r--r--src/im-sandbox.h1
-rw-r--r--src/indexamajig.c5
3 files changed, 1 insertions, 10 deletions
diff --git a/doc/man/indexamajig.1 b/doc/man/indexamajig.1
index 11da2445..91352f3e 100644
--- a/doc/man/indexamajig.1
+++ b/doc/man/indexamajig.1
@@ -253,11 +253,6 @@ Set the minimum I/sigma(I) for a peak to be integrated successfully. The defaul
Copy the information from \fIpath\fR in the HDF5 file into the output stream. The information must be a single scalar value. This option is sometimes useful to allow data to be separated after indexing according to some condition such the presence of an optical pump pulse. You can give this option as many times as you need to copy multiple bits of information.
.PD 0
-.IP \fB--verbose\fR
-.PD
-Be more verbose about indexing.
-
-.PD 0
.IP "\fB-j\fR \fIn\fR"
.PD
Run \fIn\fR analyses in parallel. Default: 1.
diff --git a/src/im-sandbox.h b/src/im-sandbox.h
index a454d867..dfddabe6 100644
--- a/src/im-sandbox.h
+++ b/src/im-sandbox.h
@@ -45,7 +45,6 @@ struct index_args
UnitCell *cell;
int cmfilter;
int noisefilter;
- int verbose;
int satcorr;
int closer;
int bgsub;
diff --git a/src/indexamajig.c b/src/indexamajig.c
index 54ae0a5c..b88469b8 100644
--- a/src/indexamajig.c
+++ b/src/indexamajig.c
@@ -128,8 +128,7 @@ static void show_help(const char *s)
" --copy-hdf5-field <f> Copy the value of field <f> into the stream. You\n"
" can use this option as many times as you need.\n"
"\n"
-"\nOptions for greater performance or verbosity:\n\n"
-" --verbose Be verbose about indexing.\n"
+"\nOptions for greater performance:\n\n"
" -j <n> Run <n> analyses in parallel. Default 1.\n"
"\n"
"\nOptions you probably won't need:\n\n"
@@ -181,7 +180,6 @@ int main(int argc, char *argv[])
iargs.cell = NULL;
iargs.cmfilter = 0;
iargs.noisefilter = 0;
- iargs.verbose = 0;
iargs.satcorr = 1;
iargs.closer = 0;
iargs.bgsub = 1;
@@ -235,7 +233,6 @@ int main(int argc, char *argv[])
/* Long-only options with no arguments */
{"filter-cm", 0, &iargs.cmfilter, 1},
{"filter-noise", 0, &iargs.noisefilter, 1},
- {"verbose", 0, &iargs.verbose, 1},
{"no-sat-corr", 0, &iargs.satcorr, 0},
{"sat-corr", 0, &iargs.satcorr, 1},
{"no-check-prefix", 0, &config_checkprefix, 0},