LAT Hologramm-Software 2.0
Loading...
Searching...
No Matches
Coherent_Verdi.m
Go to the documentation of this file.
1classdef Coherent_Verdi < Laser
2
3 properties
4
5 end
7 methods
8 function obj = Coherent_Verdi()
9 obj.wavelength = 532;
10 obj.rawBeamDiameter = 10;
11 obj.aperture=5;
12 end
13
14 function connect(obj)
15
16 end
17
18 function disconnect(obj)
19
20 end
21
22 function laserOn(obj)
24 end
25
26 function laserOff(obj)
27
28 end
29
30 function laserTime(obj, time)
31
32 end
34
35 end
36end
37
Definition: Laser.m:7