Source code for fudge.gnds.reactions.fissionComponent
# <<BEGIN-copyright>>
# <<END-copyright>>
"""
This module contains the fissionComponent class
"""
import fudge
from . import base as baseModule
__metaclass__ = type
[docs]class fissionComponent( baseModule.base_reaction ) :
"""
Special case of reaction, for storing 1st, 2nd, 3rd, etc fission chances when we also have total.
"""
moniker = 'fissionComponent'
def __init__( self, outputChannel, ENDF_MT, documentation = None, label = None, process = None ) :
"""Creates a new reaction object of type outputChannel (that is, use 2-body outputChannel for 2-body reaction)."""
baseModule.base_reaction.__init__( self, outputChannel, ENDF_MT, documentation, label = label, process = process )
[docs] def isBasicReaction( self ) :
return( False )
[docs] def isCompleteReaction( self ):
return( False )