Logo ST Silicon Tracker Software
 HOME   Documentation   Packages   DetDesc   Alignment   Tsa   DC'06   How To   Links 

DOT

Making graphs the easy way....

Examples :

ST Digitization Algorithm flow


     digraph stflow{
        MCSTDepositCreator -> MCSTDigitCreator
        MCSTDigitCreator -> STDigitCreator
        STDigitCreator -> STClusterCreator
     }


  • Then: dot -Tgif stflow.dot > stflow.gif
  • To get high quality output I go through 'xfig'
  • dot -Tfig stflow.dot > stflow.fig
  • fig2dev -Leps stflow.fig stflow.eps
ST flow diagram

Class Diagrams

     digraph G{
        DetectorElement [shape = box];
        DeSTBaseElement [shape = box];
        DeSTSector [shape = box ];
        DeITSector [shape = box ];
        DeTTSector [shape = box ];

        DetectorElement -> DeSTBaseElement [dir = back]
        DeSTBaseElement -> DeSTSector [dir = back]
        DeSTSector -> DeITSector [dir = back];
        DeSTSector -> DeTTSector [dir = back];
     }
ST sector

Last modified: Saturday 20th 2007f October 2007, 16:05    email: address   address
Valid XHTML 1.0!   Valid CSS!