18 lines
526 B
Python
18 lines
526 B
Python
import ch.psi.pshell.device.HistogramGenerator as HistogramGenerator
|
|
|
|
cam_server.start("SARES20-PROF141-M1_sp", True)
|
|
|
|
channels = ["intensity",
|
|
"x_center_of_mass",
|
|
"x_fwhm",
|
|
"x_rms",
|
|
"x_fit_amplitude",
|
|
"x_fit_mean",
|
|
"x_fit_offset",
|
|
"x_fit_standard_deviation",
|
|
"x_profile"
|
|
]
|
|
for channel in channels:
|
|
dev = cam_server.stream.getChild(channel)
|
|
add_device(dev, True)
|