11 lines
354 B
Python
11 lines
354 B
Python
# $Id: posLog.py,v 1.2 2003/06/16 17:06:44 dressel Exp $
|
|
# -------------------------------------------------------------------
|
|
# GEANT4 tag $Name: geant4-05-02-patch-01 $
|
|
# -------------------------------------------------------------------
|
|
#
|
|
|
|
class PosLog(object):
|
|
def __init__(self, pos, log):
|
|
self.pos = pos
|
|
self.log = log
|