appl121105_iotorus.xsectΒΆ

Crosssection model.

'''Crosssection model.
'''

class CrossSectionSimplest:
    ''' Simplest cross section model.
    '''
    def __init__(self):
        pass

    def get_crosssection(self, *args, **argv):
        ''' Return the cross section in cm^2.

        For the simplest cross section model,
        1e-15 cm^2 is always returned.
        '''
        return 1e-15