Skip to content

Commit

Permalink
removing testing
Browse files Browse the repository at this point in the history
  • Loading branch information
amyjaynethompson committed Mar 20, 2024
1 parent 40ee361 commit 983a8a2
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/xia2/Modules/MultiCrystal/ScaleAndMerge.py
Original file line number Diff line number Diff line change
Expand Up @@ -544,28 +544,20 @@ def __init__(self, experiments, reflections, params):
max_cluster_height_cos = max_cluster_height

if n_processed_cos == max_clusters and c == "cos":
logger.info("1")
continue
if n_processed_cc == max_clusters and c == "cc":
logger.info("2")
continue
if cluster.completeness < min_completeness:
logger.info("3")
continue
if cluster.multiplicity < min_multiplicity:
logger.info("4")
continue
if len(cluster.labels) == len(self._data_manager_original.experiments):
logger.info("5")
continue
if cluster.height > max_cluster_height_cc and c == "cc":
logger.info("6")
continue
if cluster.height > max_cluster_height_cos and c == "cos":
logger.info("7")
continue
if len(cluster.labels) < min_cluster_size:
logger.info("8")
continue

data_manager = copy.deepcopy(self._data_manager_original)
Expand Down

0 comments on commit 983a8a2

Please sign in to comment.