source: trunk/environments/g4py/tests/test02/test.py @ 1337

Last change on this file since 1337 was 1337, checked in by garnier, 14 years ago

tag geant4.9.4 beta 1 + modifs locales

  • Property svn:executable set to *
File size: 523 bytes
Line 
1#!/usr/bin/python
2# ==================================================================
3# python script for Geant4Py test
4#
5#
6# ==================================================================
7import test02
8
9print "importing created module...\n"
10
11a= test02.AClass()
12b= test02.BClass()
13
14print ">>a<<",
15a.AMethod()
16print ""
17
18print ">>b<<",
19b.AMethod()
20print ""
21
22print "%%% a.VMethod(a)=", a.VMethod(a)
23print "%%% a.VMethod(b)=", a.VMethod(b)
24
25print "%%% b.VMethod(a)=", b.VMethod(a)
26print "%%% b.VMethod(b)=", b.VMethod(b)
27
Note: See TracBrowser for help on using the repository browser.