Import Geant4 8.1.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-09 14:44:26 +02:00
parent 8a51e0bc40
commit 216a75eeb1
8717 changed files with 360418 additions and 141343 deletions
+28
View File
@@ -0,0 +1,28 @@
#!/usr/bin/python
# ==================================================================
# python script for Geant4Py test
#
#
# ==================================================================
import test04, sys
atrack= test04.Track()
print "<<< ref#(atrack)=", sys.getrefcount(atrack)
astep= atrack.GetStep1()
print "<<< ref#(atrack, astep)=",\
sys.getrefcount(atrack),\
sys.getrefcount(astep)
del astep
print "<<< delete astep"
print "<<< ref#(atrack)=", sys.getrefcount(atrack)
print ""
bstep= atrack.GetStep1()
bstep= test04.Step()
print "<<< previous step is still remain?"
print ""
print "--- stderr ---"