Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Oleksii Turkot
CrystFEL
Commits
b965a24d
Commit
b965a24d
authored
Mar 05, 2012
by
Thomas White
Browse files
process_hkl: Get rid of -b option, since it wasn't used for anything
parent
da2fe356
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/process_hkl.c
View file @
b965a24d
...
...
@@ -41,7 +41,6 @@
#include
"reflist-utils.h"
#include
"symmetry.h"
#include
"stream.h"
#include
"beam-parameters.h"
#include
"reflist.h"
#include
"image.h"
...
...
@@ -57,7 +56,6 @@ static void show_help(const char *s)
" -o, --output=<filename> Specify output filename for merged intensities
\n
"
" Default: processed.hkl).
\n
"
" -p, --pdb=<filename> PDB file to use (default: molecule.pdb).
\n
"
" -b, --beam=<file> Get beam parameters from file (used for sigmas).
\n
"
"
\n
"
" --max-only Take the integrated intensity to be equal to the
\n
"
" maximum intensity measured for that reflection.
\n
"
...
...
@@ -444,7 +442,6 @@ int main(int argc, char *argv[])
float
hist_min
=
0
.
0
,
hist_max
=
0
.
0
;
double
*
hist_vals
=
NULL
;
int
hist_i
;
struct
beam_params
*
beam
=
NULL
;
int
space_for_hist
=
0
;
char
*
histo_params
=
NULL
;
...
...
@@ -463,7 +460,6 @@ int main(int argc, char *argv[])
{
"pdb"
,
1
,
NULL
,
'p'
},
{
"histogram"
,
1
,
NULL
,
'g'
},
{
"hist-parameters"
,
1
,
NULL
,
'z'
},
{
"beam"
,
1
,
NULL
,
'b'
},
{
0
,
0
,
NULL
,
0
}
};
...
...
@@ -508,15 +504,6 @@ int main(int argc, char *argv[])
histo_params
=
strdup
(
optarg
);
break
;
case
'b'
:
beam
=
get_beam_parameters
(
optarg
);
if
(
beam
==
NULL
)
{
ERROR
(
"Failed to load beam parameters"
" from '%s'
\n
"
,
optarg
);
return
1
;
}
break
;
case
0
:
break
;
...
...
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