diff options
author | Thomas White <taw@physics.org> | 2023-09-22 16:51:53 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2023-09-22 16:51:53 +0200 |
commit | 9f9722f2fc2c24fa0d4df4cb9f1f788acb2cd0c8 (patch) | |
tree | 126b751174881c486288c870f69ff5bbbde62f3b /libcrystfel/src/datatemplate.c | |
parent | 50e758864399f53b3dc6b43551175e391e640d1a (diff) |
Don't complain about missing 'all' group until it's actually needed
Diffstat (limited to 'libcrystfel/src/datatemplate.c')
-rw-r--r-- | libcrystfel/src/datatemplate.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libcrystfel/src/datatemplate.c b/libcrystfel/src/datatemplate.c index 36c0a422..4a6ced88 100644 --- a/libcrystfel/src/datatemplate.c +++ b/libcrystfel/src/datatemplate.c @@ -2031,9 +2031,6 @@ struct detgeom *create_detgeom(struct image *image, detgeom->top_group = walk_group(dtempl, find_group(dtempl, "all"), detgeom, 0, 100); if ( detgeom->top_group != NULL ) { detgeom->top_group->parent = NULL; - } else { - ERROR("Warning: Top-level panel group ('all') not found. " - "Geometry refinement will not be possible.\n"); } return detgeom; |