mirror of
https://github.com/gwm17/spspy.git
synced 2024-11-22 10:18:49 -05:00
Fix bug in ReactionDialog where reaction angle was displayed in radians not degrees
This commit is contained in:
parent
b0a4cc3609
commit
106e8ea70c
|
@ -5,6 +5,7 @@ from PySide6.QtWidgets import QVBoxLayout, QFormLayout, QGroupBox
|
|||
from PySide6.QtWidgets import QSpinBox, QDoubleSpinBox, QComboBox
|
||||
from PySide6.QtWidgets import QDialog, QDialogButtonBox
|
||||
from PySide6.QtCore import Signal
|
||||
from numpy import rad2deg
|
||||
|
||||
MAXIMUM_NUCLEAR_Z: int = 110
|
||||
MAXIMUM_NUCLEAR_A: int = 270
|
||||
|
@ -116,6 +117,6 @@ class ReactionDialog(QDialog):
|
|||
self.aeInput.setValue(rxn.params.ejectile.A)
|
||||
self.aeInput.setEnabled(False)
|
||||
self.bkeInput.setValue(rxn.params.beamEnergy)
|
||||
self.thetaInput.setValue(rxn.params.spsAngle)
|
||||
self.thetaInput.setValue(rad2deg(rxn.params.spsAngle))
|
||||
self.bfieldInput.setValue(rxn.params.magneticField)
|
||||
|
Loading…
Reference in New Issue
Block a user