| Classes | Job Modules | Data Objects | Services | Algorithms | Tools | Packages | Directories | Tracs |

In This Package:

GenDecay::g4data::NuclideState Class Reference

List of all members.

Public Member Functions

def __init__
def __str__

Public Attributes

 name
 halflife
 excitation
 decays

Detailed Description

Definition at line 41 of file g4data.py.


Member Function Documentation

def GenDecay::g4data::NuclideState::__init__ (   self,
  name,
  halflife = None 
)

Definition at line 43 of file g4data.py.

00043                                          :
00044         self.name = name
00045         self.halflife = halflife
00046         self.excitation = 0.0
00047         self.decays = []
00048         return
00049 
    def __str__(self):

def GenDecay::g4data::NuclideState::__str__ (   self  ) 

Definition at line 50 of file g4data.py.

00050                      :
00051         ret = ['\tstate %s (%s) [%.2f] %d decays:'%(self.name,self.halflife,self.excitation,len(self.decays))]
00052         for dk in self.decays:
00053             ret.append(str(dk))
00054             continue
00055         return '\n'.join(ret)
00056     pass


Member Data Documentation

GenDecay::g4data::NuclideState::name

Definition at line 44 of file g4data.py.

GenDecay::g4data::NuclideState::halflife

Definition at line 45 of file g4data.py.

GenDecay::g4data::NuclideState::excitation

Definition at line 46 of file g4data.py.

GenDecay::g4data::NuclideState::decays

Definition at line 47 of file g4data.py.


The documentation for this class was generated from the following file:
| Classes | Job Modules | Data Objects | Services | Algorithms | Tools | Packages | Directories | Tracs |

Generated on Mon Apr 11 21:01:10 2011 for GenDecay by doxygen 1.4.7