1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23 """The frq user function definitions for manipulating spectrometer frequencies."""
24
25
26 import generic_fns.frq
27 from graphics import WIZARD_IMAGE_PATH
28 from user_functions.data import Uf_info; uf_info = Uf_info()
29 from user_functions.objects import Desc_container
30
31
32
33 uf_class = uf_info.add_class('frq')
34 uf_class.title = "Class for manipulating spectrometer frequencies."
35 uf_class.menu_text = "&frq"
36 uf_class.gui_icon = "relax.frq"
37
38
39 uf = uf_info.add_uf('frq.set')
40 uf.title = "Set the spectrometer frequency of the experiment."
41 uf.title_short = "Spectrometer frequency setting."
42 uf.add_keyarg(
43 name = "id",
44 py_type = "str",
45 desc_short = "experiment ID",
46 desc = "The experiment identification string."
47 )
48 uf.add_keyarg(
49 name = "frq",
50 py_type = "num",
51 desc_short = "spectrometer frequency",
52 desc = "The spectrometer frequency in Hertz."
53 )
54
55 uf.desc.append(Desc_container())
56 uf.desc[-1].add_paragraph("This allows the spectrometer frequency of a given experiment to be set.")
57 uf.backend = generic_fns.frq.set
58 uf.menu_text = "&set"
59 uf.gui_icon = "oxygen.actions.edit-rename"
60 uf.wizard_size = (700, 400)
61