File tree 1 file changed +21
-0
lines changed
scripts/SANS/sans/state/StateObjects
1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Mantid Repository : https://github.com/mantidproject/mantid
2
+ #
3
+ # Copyright © 2023 ISIS Rutherford Appleton Laboratory UKRI,
4
+ # NScD Oak Ridge National Laboratory, European Spallation Source,
5
+ # Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS
6
+ # SPDX - License - Identifier: GPL - 3.0 +
7
+ """Defines the state of the polarization taking place during the run."""
8
+
9
+ from sans .state .JsonSerializable import JsonSerializable
10
+
11
+ # ----------------------------------------------------------------------------------------------------------------------
12
+ # State
13
+ # ----------------------------------------------------------------------------------------------------------------------
14
+
15
+
16
+ class StatePolarization (metaclass = JsonSerializable ):
17
+ def __init__ (self ):
18
+ super (StatePolarization , self ).__init__ ()
19
+
20
+ self .flipper_configuraiton = None # : Str()
21
+ self .spin_configuration = None # : Str()
You can’t perform that action at this time.
0 commit comments