|
| 1 | +digraph { |
| 2 | + rankdir=LR |
| 3 | + ranksep=2 |
| 4 | + |
| 5 | + node [fontname="Arial"] |
| 6 | + Source [label=<<b>Source</b>> style="filled" shape="cylinder" fillcolor="#666666" fontcolor="white"] |
| 7 | + |
| 8 | + node [shape="box" peripheries=2] |
| 9 | + DB [label=<<b>DB</b><br/> 2 tokens>] |
| 10 | + ROOT [label=<<b>ROOT</b><br/> 1 token>] |
| 11 | + GENIE [label=<<b>GENIE</b><br/> 1 token>] |
| 12 | + |
| 13 | + {rank=same; Source; DB; ROOT; GENIE} |
| 14 | + |
| 15 | + node [shape="box" style=filled width=2.7 peripheries=1] |
| 16 | + |
| 17 | + propagating [ |
| 18 | + label=< |
| 19 | + <table cellpadding="0" border="0" cellborder="0"> |
| 20 | + <tr><td align="LEFT" colspan="2"><b>Propagating</b></td></tr> |
| 21 | + <tr><td align="LEFT">Concurrency:</td><td align="LEFT"><font color="lightblue">unlimited</font></td></tr> |
| 22 | + <tr><td align="LEFT">Resources:</td><td align="LEFT"><i>(none)</i></td></tr> |
| 23 | + </table> |
| 24 | + > |
| 25 | + fillcolor="#BF5B17" |
| 26 | + fontcolor="white" |
| 27 | + ] |
| 28 | + |
| 29 | + histogramming [ |
| 30 | + label=< |
| 31 | + <table cellpadding="0" border="0" cellborder="0"> |
| 32 | + <tr><td align="LEFT" colspan="2"><b>Histogramming</b></td></tr> |
| 33 | + <tr><td align="LEFT">Concurrency:</td><td align="LEFT"><font color="lightblue">unlimited</font></td></tr> |
| 34 | + <tr><td align="LEFT">Resources:</td><td align="LEFT">ROOT</td></tr> |
| 35 | + </table> |
| 36 | + > |
| 37 | + fillcolor="#F02A7F" |
| 38 | + fontcolor="white" |
| 39 | + ] |
| 40 | + |
| 41 | + generating [ |
| 42 | + label=< |
| 43 | + <table cellpadding="0" border="0" cellborder="0"> |
| 44 | + <tr><td align="LEFT" colspan="2"><b>Generating</b></td></tr> |
| 45 | + <tr><td align="LEFT">Concurrency:</td><td align="LEFT"><font color="blue">unlimited</font></td></tr> |
| 46 | + <tr><td align="LEFT">Resources:</td><td align="LEFT">GENIE</td></tr> |
| 47 | + </table> |
| 48 | + > |
| 49 | + fillcolor="#FFFD99" |
| 50 | + ] |
| 51 | + |
| 52 | + histo_generating [ |
| 53 | + label=< |
| 54 | + <table cellpadding="0" border="0" cellborder="0"> |
| 55 | + <tr><td align="LEFT" colspan="2"><b>Histo-generating</b></td></tr> |
| 56 | + <tr><td align="LEFT">Concurrency:</td><td align="LEFT"><font color="lightblue">unlimited</font></td></tr> |
| 57 | + <tr><td align="LEFT">Resources:</td><td align="LEFT">ROOT, GENIE</td></tr> |
| 58 | + </table> |
| 59 | + > |
| 60 | + fillcolor="#386CB0" |
| 61 | + fontcolor="white" |
| 62 | + ] |
| 63 | + |
| 64 | + calA [ |
| 65 | + label=< |
| 66 | + <table cellpadding="0" border="0" cellborder="0"> |
| 67 | + <tr><td align="LEFT" colspan="2"><b>Calibration[A]</b></td></tr> |
| 68 | + <tr><td align="LEFT">Concurrency:</td><td align="LEFT"><font color="blue">unlimited</font></td></tr> |
| 69 | + <tr><td align="LEFT">Resources:</td><td align="LEFT">DB</td></tr> |
| 70 | + </table> |
| 71 | + > |
| 72 | + fillcolor="#7FC97F" |
| 73 | + ] |
| 74 | + |
| 75 | + calB [ |
| 76 | + label=< |
| 77 | + <table cellpadding="0" border="0" cellborder="0"> |
| 78 | + <tr><td align="LEFT" colspan="2"><b>Calibration[B]</b></td></tr> |
| 79 | + <tr><td align="LEFT">Concurrency:</td><td align="LEFT"><font color="blue">unlimited</font></td></tr> |
| 80 | + <tr><td align="LEFT">Resources:</td><td align="LEFT">DB</td></tr> |
| 81 | + </table> |
| 82 | + > |
| 83 | + fillcolor="#BEAED4" |
| 84 | + ] |
| 85 | + |
| 86 | + calC [ |
| 87 | + label=< |
| 88 | + <table cellpadding="0" border="0" cellborder="0"> |
| 89 | + <tr><td align="LEFT" colspan="2"><b>Calibration[C]</b></td></tr> |
| 90 | + <tr><td align="LEFT">Concurrency:</td><td align="LEFT"><font color="red">serial</font></td></tr> |
| 91 | + <tr><td align="LEFT">Resources:</td><td align="LEFT">DB</td></tr> |
| 92 | + </table> |
| 93 | + > |
| 94 | + fillcolor="#FDC086" |
| 95 | + ] |
| 96 | + |
| 97 | + Source -> { |
| 98 | + calA |
| 99 | + calB |
| 100 | + calC |
| 101 | + generating |
| 102 | + histo_generating |
| 103 | + histogramming |
| 104 | + propagating |
| 105 | + } |
| 106 | + |
| 107 | + GENIE -> {generating histo_generating} -> GENIE [style="dotted" color="blue" arrowhead="empty"] |
| 108 | + ROOT -> {histogramming histo_generating} -> ROOT [style="dotted" color="blue" arrowhead="empty"] |
| 109 | + DB -> {calA calB calC} -> DB [style="dotted" color="blue" arrowhead="empty"] |
| 110 | +} |
0 commit comments