Skip to content

Commit acf60eb

Browse files
committed
modifications to diagram after group discussion
1 parent 1da367a commit acf60eb

File tree

1 file changed

+19
-4
lines changed

1 file changed

+19
-4
lines changed

doc/ch_conceptual_design/data-products.gv

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,23 @@ digraph {
4040
py_hit_coll [label=<<b>py_hit_coll </b>>]
4141
}
4242

43+
subgraph cluster_persistent {
44+
labelloc="b"
45+
labeljust="r"
46+
label=<<b>Persistent layouts</b>>
47+
color="ivory4"
48+
fontcolor="ivory4"
49+
style="filled"
50+
fillcolor="ivory1"
51+
node[style="plaintext",
52+
peripheries=0,
53+
margin="0.25,0",
54+
fontname="Monaco",
55+
fontsize=11,
56+
fontcolor="ivory4"]
57+
hit_collection_layout
58+
}
59+
4360
subgraph cluster_object {
4461

4562
labeljust="l"
@@ -49,8 +66,6 @@ digraph {
4966

5067
hs1; hs2; hs3;
5168
}
52-
53-
persistent [shape="plaintext", label=<Persistent<br/>layout>, style="none", fontcolor="webgreen"]
5469
hs4 [style="box", width=0.1, style="filled", fontcolor="white", fillcolor="red3"]
5570

5671

@@ -64,11 +79,11 @@ digraph {
6479
std_vector -> hits [label="models"];
6580
hit_coll -> hits;
6681
py_hit_coll -> hits [label="models"];
67-
persistent -> hits;
82+
hit_collection_layout -> hits [label="models"];
6883

6984
edge [arrowhead="none", color="webgreen"]
7085
hs1 -> std_vector
7186
hs2 -> hit_coll
7287
hs3 -> py_hit_coll;
73-
hs4 -> persistent;
88+
hs4 -> hit_collection_layout;
7489
}

0 commit comments

Comments
 (0)