Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
02b67a5
docs: comprehensive commenting for Beam, Composition and CompositionI…
jswift-stfc Jun 13, 2022
9ec1277
docs: comprehensive commenting for config.
jswift-stfc Jun 15, 2022
4eeb05b
docs: comprehensive commenting of Container.
jswift-stfc Jun 15, 2022
3f63c40
chore: comprehensive commenting of DataFiles.
jswift-stfc Jun 15, 2022
0144006
docs: comprehensive commenting for DensityIterator.
jswift-stfc Jun 15, 2022
e5265ae
docs: comprehensive commenting of compositiion and element.
jswift-stfc Jun 16, 2022
44bf10e
docs: comprehensive commenting of enums.
jswift-stfc Jun 16, 2022
bafdf9e
docs: comprehensive commenting for exceptions.
jswift-stfc Jun 16, 2022
d2db2db
docs: comprehensive commenting for file library.
jswift-stfc Jun 16, 2022
6ccc745
refactor: remove unnecessary extraneous line.
jswift-stfc Jun 16, 2022
1d437ef
docs: comprehensive commentung of GudFile.
jswift-stfc Jun 16, 2022
0d51acd
docs: comprehensive commenting for GudPyYAML.
jswift-stfc Jun 17, 2022
7800104
docs: comprehensive commenting of GudrunFile.
jswift-stfc Jun 17, 2022
0d124d6
docs: comprehensive commenting of GUIConfig.~
jswift-stfc Jun 17, 2022
9f05b7c
docs: comprehensive commenting of Instrument.
jswift-stfc Jun 17, 2022
3c09878
docs: comprehensive commenting of isotopes.
jswift-stfc Jun 17, 2022
1bc3874
docs: commenting for mass data.
jswift-stfc Jun 17, 2022
113d203
docs: more commenting!
jswift-stfc Jun 17, 2022
8575a20
docs: comprehensive commenting of OutputFileHandler.
jswift-stfc Jun 17, 2022
01c2f2f
docs: purge..
jswift-stfc Jun 17, 2022
3bdf8ce
docs: comprehensive commenting for radius iterator.
jswift-stfc Jun 17, 2022
3a4581e
docs: comprehensive commenting of RunContainersAsSamples.
jswift-stfc Jun 17, 2022
9b6e55c
docs: comprehensive commenting of sample background.
jswift-stfc Jun 27, 2022
65db029
docs: Sample.
jswift-stfc Jun 27, 2022
d3f3f2e
docs: SingleParamIterator.
jswift-stfc Jun 27, 2022
60dca37
docs: ThicknessIterator.
jswift-stfc Jun 27, 2022
ba37fec
docs: TweakFactorIterator.
jswift-stfc Jun 27, 2022
1eb1223
docs: utils.
jswift-stfc Jun 27, 2022
85d352f
docs: WavelengthSubtractionIterator.
jswift-stfc Jun 27, 2022
dc4a664
docs: BeamChart.
jswift-stfc Jun 27, 2022
0e990b2
docs: GudPyChart.
jswift-stfc Jun 27, 2022
ec00d76
docs: GudPyChartView.
jswift-stfc Jun 27, 2022
2009003
docs: plotting enums.
jswift-stfc Jun 27, 2022
f27af81
docs: SamplePlotConfig.
jswift-stfc Jun 27, 2022
1b12522
docs: SamplePlotData.
jswift-stfc Jun 27, 2022
27df4bc
docs: ExponentialSpinBox.
jswift-stfc Jun 27, 2022
b131afc
docs: GudPyTree.
jswift-stfc Jun 27, 2022
13297b8
docs: WIP main window.
jswift-stfc Jun 27, 2022
f52150d
Merge branch 'main' into document-codebase
jws-1 Oct 1, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 3 additions & 12 deletions gudpy/core/beam.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,16 +47,12 @@ class Beam:
Sample dependant background factor.
shieldingAttenuationCoefficient : float
Absorption coefficient for the shielding.
Methods
-------
yamlignore : str{}
Class attributes to ignore during yaml serialisation.
"""
def __init__(self):
"""
Constructs all the necessary attributes for the Beam object.

Parameters
----------
None
"""
self.sampleGeometry = Geometry.FLATPLATE
self.beamProfileValues = [1., 1.]
Expand Down Expand Up @@ -85,14 +81,9 @@ def __str__(self):
"""
Returns the string representation of the Beam object.

Parameters
----------
None

Returns
-------
string : str
String representation of Beam.
str : String representation of Beam.
"""

absorptionAndMSLine = (
Expand Down
Loading