2022-07-22 15:01:16 +02:00
|
|
|
from lyse import *
|
2022-08-09 17:48:22 +02:00
|
|
|
from HelperClasses import DyTransition, Camera, AbsorptionImaging
|
2022-07-22 15:01:16 +02:00
|
|
|
|
|
|
|
absorption_imaging_transition = DyTransition.creat_Dy421()
|
|
|
|
mot_3D_camera = Camera.c11440_36u(absorption_imaging_transition['wavelength'])
|
|
|
|
|
|
|
|
with AbsorptionImaging.absorption_imaging(path, 'MOT_3D_Camera', 'in_situ_absorption',
|
|
|
|
absorption_imaging_transition, mot_3D_camera, 0, 0) as absorption_image:
|
2022-08-09 17:48:22 +02:00
|
|
|
# Please selecte the effective area here
|
|
|
|
# The first tuple is the center position (x,y)
|
|
|
|
# The second tuple is the span in x and y direction (x_span, y_span)
|
|
|
|
absorption_image.select_effective_data((900, 600), (200, 200))
|
2022-07-26 09:57:45 +02:00
|
|
|
absorption_image.get_atom_number()
|
2022-07-22 15:01:16 +02:00
|
|
|
|
2022-08-09 17:48:22 +02:00
|
|
|
# print(absorption_image.atom_number)
|
2022-07-30 21:50:53 +02:00
|
|
|
|