forked from nicolassmith/optickle-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo.dot
More file actions
69 lines (69 loc) · 1.88 KB
/
demo.dot
File metadata and controls
69 lines (69 loc) · 1.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
digraph G {
Laser;
AM;
PM;
Mod1;
Mod2;
PR;
BS;
IX;
IY;
EX;
EY;
ASsplit;
OMCtel1;
OMCa;
OMCb;
OMCp;
OMCh;
AttREFL [shape=box];
AttPOX [shape=box];
AttPOY [shape=box];
AttAS [shape=box];
AttOMCt [shape=box];
AttOMCr [shape=box];
REFL [shape=box];
POX [shape=box];
POY [shape=box];
AS [shape=box];
OMCT [shape=box];
OMCR [shape=box];
TRX [shape=box];
TRY [shape=box];
Laser -> AM [label="out→in"];
AM -> PM [label="out→in"];
PM -> Mod1 [label="out→in"];
Mod1 -> Mod2 [label="out→in"];
Mod2 -> PR [label="out→bk"];
PR -> BS [label="fr→frA"];
BS -> IY [label="frA→bk"];
BS -> IX [label="bkA→bk"];
IY -> BS [label="bk→frB"];
IX -> BS [label="bk→bkB"];
BS -> PR [label="frB→fr"];
IX -> EX [label="fr→fr"];
EX -> IX [label="fr→fr"];
IY -> EY [label="fr→fr"];
EY -> IY [label="fr→fr"];
BS -> ASsplit [label="bkB→fr"];
OMCa -> OMCp [label="fr→fr"];
OMCp -> OMCb [label="fr→fr"];
OMCb -> OMCh [label="fr→fr"];
OMCh -> OMCa [label="fr→fr"];
ASsplit -> OMCtel1 [label="fr→in"];
OMCtel1 -> OMCa [label="out→bk"];
PR -> AttREFL [label="bk→in"];
AttREFL -> REFL [label="out→in"];
IX -> AttPOX [label="po→in"];
AttPOX -> POX [label="out→in"];
IY -> AttPOY [label="po→in"];
AttPOY -> POY [label="out→in"];
EX -> TRX [label="bk→in"];
EY -> TRY [label="bk→in"];
ASsplit -> AttAS [label="bk→in"];
AttAS -> AS [label="out→in"];
OMCa -> AttOMCr [label="bk→in"];
AttOMCr -> OMCR [label="out→in"];
OMCb -> AttOMCt [label="bk→in"];
AttOMCt -> OMCT [label="out→in"];
}