Advertisement
Guest User

Untitled

a guest
Aug 6th, 2017
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
DOT 1.46 KB | None | 0 0
  1. digraph G {
  2.         size="8.5,11!";
  3.         //ratio="auto";
  4.         node [shape=note, height=1.3, width=1.05, fixedsize=true]; "fileIn.din" "fileOut.txt" "Report";
  5.         node [shape=rectangle, width=2, height=1]; "Lab Form" "Lab";
  6.         node [shape=diamond, width=2, height=1, fixedsize=true];
  7.        
  8.         subgraph clusterServer{
  9.                 label = "Server"; style=filled; bgcolor="#D0C0A0";
  10.                 "Database";
  11.         };
  12.         subgraph clusterLab{
  13.                 label = "Lab"; style=filled; bgcolor="#D0C0A0";
  14.                 "Lab";
  15.         };
  16.  
  17.         "Sample" -> "Log-in Form" [label="Goes to"];
  18.         "Log-in Form" -> "Database" [label="Updates/Writes to"];
  19.         "Log-in Form" -> "Lab Form" [label="Prints"];
  20.         "Lab Form" -> "Lab" [label="Goes to"];
  21.         "Lab" -> "Lab Form" [label="Updates"];
  22.         "Lab Form" -> "CSV Outputter" [label="Inputs to"];
  23.         "CSV Outputter" -> "fileIn.din" [label="Generates"];
  24.         "fileIn.din" -> "DH SAT" [label="Inputs to"];
  25.         "DH SAT" -> "fileOut.txt" [label="Generates"];
  26.         "fileOut.txt" -> "Parser" [label="Inputs to"];
  27.         "Parser" -> "Database" [label="Updates/Writes to"];
  28.         "Database" -> "Excel Macro" [label = "Pulls from", dir="back"];
  29.         "Excel Macro" -> "Report" [label="Generates"];
  30.  
  31.         "Sample" [shape=ellipse];
  32.         "Lab Form" [shape=component];
  33.         "Database" [shape=invtrapezium];
  34.         "Log-in Form" [shape=diamond];
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement