r""" Returns True if standard ``standard`` is user-defined and False otherwise Parameters ---------- standard: dict The dictionary holding standard information. The complete dictionary is compared with entries of internally stored lists to fi
(self, standard)
| 904 | return self.standard_selected |
| 905 | |
| 906 | def is_standard_custom(self, standard): |
| 907 | r""" |
| 908 | Returns True if standard ``standard`` is user-defined and False otherwise |
| 909 | |
| 910 | Parameters |
| 911 | ---------- |
| 912 | |
| 913 | standard: dict |
| 914 | The dictionary holding standard information. The complete dictionary |
| 915 | is compared with entries of internally stored lists to find the match. |
| 916 | """ |
| 917 | return bool(self._find_standard_custom(standard)) |
| 918 | |
| 919 | def gen_fluorescence_data_dict(self, incident_energy): |
| 920 | r""" |