Set plotting status for all the 2D images, including low and high values. Note: 'self.map_keys' must be updated before calling this function!
(self, bool_val=False)
| 445 | self.param_quant_analysis.set_experiment_incident_energy(incident_energy=self.incident_energy) |
| 446 | |
| 447 | def set_stat_for_all(self, bool_val=False): |
| 448 | """ |
| 449 | Set plotting status for all the 2D images, including low and high values. |
| 450 | Note: 'self.map_keys' must be updated before calling this function! |
| 451 | """ |
| 452 | self.stat_dict.clear() |
| 453 | self.stat_dict = {k: bool_val for k in self.map_keys} |
| 454 | |
| 455 | self.limit_dict.clear() |
| 456 | self.limit_dict = {k: {"low": 0.0, "high": 100.0} for k in self.map_keys} |
| 457 | |
| 458 | self.set_low_high_value() |
| 459 | |
| 460 | def set_low_high_value(self): |
| 461 | """Set default low and high values based on normalization for each image.""" |
no test coverage detected