Geant4  10.03.p03
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
mcscore.MCParticle Class Reference

Public Member Functions

def __init__
 
def printout
 
def __init__
 
def printout
 

Public Attributes

 name
 
 Z
 
 A
 
 kineticE
 
 px
 
 py
 
 pz
 

Detailed Description

Definition at line 28 of file mcscore.py.

Constructor & Destructor Documentation

def mcscore.MCParticle.__init__ (   self,
  aname,
  aZ,
  aA,
  akE,
  apx,
  apy,
  apz 
)

Definition at line 30 of file mcscore.py.

30 
31  def __init__(self, aname, aZ, aA, akE, apx, apy, apz):
32  self.name = aname
33  self.Z = aZ
34  self.A = aA
35  self.kineticE = akE
36  self.px = apx
37  self.py = apy
38  self.pz = apz

Here is the caller graph for this function:

def mcscore.MCParticle.__init__ (   self,
  aname,
  aZ,
  aA,
  akE,
  apx,
  apy,
  apz 
)

Definition at line 30 of file mcscore.py.

30 
31  def __init__(self, aname, aZ, aA, akE, apx, apy, apz):
32  self.name = aname
33  self.Z = aZ
34  self.A = aA
35  self.kineticE = akE
36  self.px = apx
37  self.py = apy
38  self.pz = apz

Here is the call graph for this function:

Member Function Documentation

def mcscore.MCParticle.printout (   self)

Definition at line 39 of file mcscore.py.

39 
40  def printout(self):
41  print "--- particle: %s, Z=%2d, A=%2d, kE=%g" % \
42  (self.name, self.Z, self.A, self.kineticE/MeV)
43 
44 # ------------------------------------------------------------------
45 # MCVertex
# ------------------------------------------------------------------

Here is the caller graph for this function:

def mcscore.MCParticle.printout (   self)

Definition at line 39 of file mcscore.py.

39 
40  def printout(self):
41  print("--- particle: %s, Z=%2d, A=%2d, kE=%g" % \
42  (self.name, self.Z, self.A, self.kineticE/MeV))
43 
44 # ------------------------------------------------------------------
45 # MCVertex
# ------------------------------------------------------------------
void print(G4double elem)

Here is the call graph for this function:

Member Data Documentation

mcscore.MCParticle.A

Definition at line 33 of file mcscore.py.

mcscore.MCParticle.kineticE

Definition at line 34 of file mcscore.py.

mcscore.MCParticle.name

Definition at line 31 of file mcscore.py.

mcscore.MCParticle.px

Definition at line 35 of file mcscore.py.

mcscore.MCParticle.py

Definition at line 36 of file mcscore.py.

mcscore.MCParticle.pz

Definition at line 37 of file mcscore.py.

mcscore.MCParticle.Z

Definition at line 32 of file mcscore.py.


The documentation for this class was generated from the following files: