Coverage for bim2sim / plugins / PluginIFCCheck / bim2sim_ifccheck / sim_settings.py: 0%
3 statements
« prev ^ index » next coverage.py v7.13.4, created at 2026-03-12 10:59 +0000
« prev ^ index » next coverage.py v7.13.4, created at 2026-03-12 10:59 +0000
1from bim2sim.sim_settings import BaseSimSettings, PathSetting
2# from bim2sim.utilities.types import LOD, ZoningCriteria
5class CheckIFCSimSettings(BaseSimSettings):
6 """Defines simulation settings for Check IFC Plugin.
8 This class defines the "simulation" settings for the Check IFC Plugin. It
9 inherits all choices from the BaseSimSettings settings. Specific settings
10 for the IFC Check are added here.
12 """
14 ids_file_path = PathSetting(
15 value=None,
16 description='Path to the IDS(Information Delivery Specification) file'
17 'that should be used for the check of the IFC file. '
18 'The file is a xml file, with .ids extension'
19 'An Example can be find in'
20 '/bim2sim/plugins/PluginIFCCheck/bim2sim_ifccheck',
21 for_frontend=True,
22 mandatory=True
23 )