| 44 | |
| 45 | @dataclass |
| 46 | class settings: |
| 47 | debug : bool = False |
| 48 | verbose : bool = False |
| 49 | resolution : float = 1.e-5 |
| 50 | voxel_prefiltering : bool = True |
| 51 | detailed_element_substitution : bool = True |
| 52 | element_categories : list = None |
| 53 | element_guids : list = None |
| 54 | store_mapping : bool = False |
| 55 | existing_mapping : bool = False |
| 56 | |
| 57 | |
| 58 | @dataclass |