additions

This commit is contained in:
Jan Kieseler
2023-09-08 17:13:30 +02:00
parent e9556b75ea
commit 0f6a8a61e1
3 changed files with 17 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
from bindings import ConstructionWrapper, SystemBuilder
cw = ConstructionWrapper()
cw.addLayer(10,"G4_Si",True)
cw.addLayer(1,"G4_Pb",False)
cw.addLayer(10,"G4_Si",False)
sb = SystemBuilder()
sb.init(cw)
sb.run_batch(100, "e-", 1000, 5000)