Skip to content

Commit

Permalink
Merge pull request FABLE-3DXRD#401 from abmajith/master
Browse files Browse the repository at this point in the history
update on do_index() function in indexing.py file
  • Loading branch information
jadball authored Feb 14, 2025
2 parents 58a4ebc + db286f4 commit 4427139
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ImageD11/indexing.py
Original file line number Diff line number Diff line change
Expand Up @@ -1358,7 +1358,10 @@ def do_index(
cf_for_indexing = cf.copyrows(pkmask)
cf_for_indexing.parameters = cf.parameters

indexer = indexer_from_colfile(cf_for_indexing)
if unitcell:
indexer = indexer_from_colfile_and_ucell(cf_for_indexing, ucell=unitcell)
else:
indexer = indexer_from_colfile(cf_for_indexing)
indexer.ds_tol = dstol
indexer.assigntorings()

Expand Down

0 comments on commit 4427139

Please sign in to comment.