MCPcopy Create free account
hub / github.com/NSLS2/PyXRF / get_total_count_range

Method get_total_count_range

pyxrf/model/fileio.py:754–764  ·  view source on GitHub ↗

Get the range of values of total count map Returns ------- tuple(float) (value_min, value_max)

(self)

Source from the content-addressed store, hash-verified

752 self._get_sum(client=client)
753
754 def get_total_count_range(self):
755 """
756 Get the range of values of total count map
757
758 Returns
759 -------
760 tuple(float)
761 (value_min, value_max)
762 """
763 total_count = self.get_total_count()
764 return total_count.min(), total_count.max()
765
766 @observe(str("selected_for_preview"))
767 def _update_roi(self, change):

Calls 1

get_total_countMethod · 0.95

Tested by

no test coverage detected