-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclasses.dot
41 lines (39 loc) · 2.6 KB
/
classes.dot
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
digraph "classes" {
charset="utf-8"
rankdir=BT
"Compilator" [shape="record", style=filled, fillcolor=gray];
"DiagramPickleable" [shape="record", style=filled, fillcolor="#D8FFD8"];
"Equations" [shape="record", style=filled, fillcolor=gray];
"Experiment" [shape="record", style=filled, fillcolor=pink];
"ExperimentPickleable" [shape="record", style=filled, fillcolor="#D8FFD8"];
"LaueDiagram" [shape="record", style=filled, fillcolor=pink];
"OrderedExperiment" [shape="record", style=filled, fillcolor=pink];
"OrderedExperimentPickleable" [shape="record", style=filled, fillcolor="#D8FFD8"];
"Recordable" [shape="record", style=filled, fillcolor="#A0E0FF"];
"Splitable" [shape="record"];
"Spot" [shape="record", style=filled, fillcolor=pink];
"SpotPickleable" [shape="record", style=filled, fillcolor="#D8FFD8"];
"Thread" [shape="record", style=filled, fillcolor="#A0E0FF"];
"Transformer" [shape="record", style=filled, fillcolor=gray];
"TransformerPickleable" [shape="record", style=filled, fillcolor="#D8FFD8"];
"ZoneAxis" [shape="record", style=filled, fillcolor=pink];
"ZoneAxisPickleable" [shape="record", style=filled, fillcolor="#D8FFD8"];
"Compilator" -> "Equations" [arrowhead="empty", arrowtail="none"];
"Experiment" -> "ExperimentPickleable" [arrowhead="empty", arrowtail="none"];
"Experiment" -> "Recordable" [arrowhead="empty", arrowtail="none"];
"ExperimentPickleable" -> "OrderedExperimentPickleable" [arrowhead="empty", arrowtail="none"];
"LaueDiagram" -> "DiagramPickleable" [arrowhead="empty", arrowtail="none"];
"LaueDiagram" -> "Splitable" [arrowhead="empty", arrowtail="none"];
"OrderedExperiment" -> "Experiment" [arrowhead="empty", arrowtail="none"];
"Recordable" -> "Thread" [arrowhead="empty", arrowtail="none"];
"Spot" -> "SpotPickleable" [arrowhead="empty", arrowtail="none"];
"Transformer" -> "Compilator" [arrowhead="empty", arrowtail="none"];
"Transformer" -> "TransformerPickleable" [arrowhead="empty", arrowtail="none"];
"ZoneAxis" -> "ZoneAxisPickleable" [arrowhead="empty", arrowtail="none"];
"Transformer" -> "Experiment" [arrowhead="diamond", arrowtail="none", style="solid"];
"LaueDiagram" -> "Experiment" [arrowhead="diamond", arrowtail="none", style="solid"];
"Spot" -> "LaueDiagram" [arrowhead="diamond", arrowtail="none", style="solid"];
"ZoneAxis" -> "LaueDiagram" [arrowhead="diamond", arrowtail="none", style="solid"];
"Spot" -> "ZoneAxis" [arrowhead="diamond", arrowtail="none", style="solid"];
"ZoneAxis" -> "Spot" [arrowhead="diamond", arrowtail="none", style="solid"];
}