Skip to content

Instantly share code, notes, and snippets.

@remram44
Created August 16, 2013 15:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save remram44/051c8aef1d6f50b56ca3 to your computer and use it in GitHub Desktop.
Save remram44/051c8aef1d6f50b56ca3 to your computer and use it in GitHub Desktop.
digraph G {
//"core.uvcdat" -> uvcdat_cdms;
//"gui.uvcdat" -> uvcdat_cdms;
//"gui.uvcdat" -> vtDV3D [color=blue];
//gui -> ParaView [color=darkgreen];
//gui -> VisIt [color=darkgreen];
//gui -> vtDV3D;
cdat -> spreadsheet;
ParaView -> spreadsheet;
ParaView -> vtk;
pvclimate -> uvcdat;
pvclimate -> uvcdat_cdms;
pvclimate -> spreadsheet [color=red];
pvclimate -> vtk [color=grey];
pylab -> spreadsheet;
pylab -> uvcdat_cdms;
uvcdat_cdms -> spreadsheet;
uvcdat_cdms -> uvcdat;
uvcdat_cdms -> vtDV3D [color=blue];
VisIt -> uvcdat;
VisIt -> uvcdat_cdms;
VisIt -> spreadsheet [color=red];
vtDV3D -> spreadsheet;
vtDV3D -> vtk ;
vtDV3D -> uvcdat;
vtDV3D -> uvcdat_cdms;
vtDV3D -> pylab [color=grey];
vtk -> spreadsheet [color=red];
// blue: temp stuff
// grey: conditional dep
// red: problem
// darkgreen: not a problem, but not sure why needed
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment