Skip to content

Commit 221b9f3

Browse files
author
Norraphat
committed
add SimDB geometry
1 parent 328dc94 commit 221b9f3

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Configuration/Applications/python/ConfigBuilder.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1157,7 +1157,10 @@ def inGeometryKeys(opt):
11571157
if opt in GeometryConf:
11581158
return GeometryConf[opt]
11591159
else:
1160-
raise Exception("Geometry "+opt+" does not exist!")
1160+
if (opt=='SimDB'):
1161+
return opt
1162+
else:
1163+
raise Exception("Geometry "+opt+" does not exist!")
11611164

11621165
geoms=self._options.geometry.split(',')
11631166
if len(geoms)==1: geoms=inGeometryKeys(geoms[0]).split(',')

0 commit comments

Comments
 (0)