Report problems to ATLAS LXR Team (with time and IP address indicated)

The LXR Cross Referencer

source navigation ]
diff markup ]
identifier search ]
general search ]
 
 
Architecture: linux ]
Version: head ] [ nightly ] [ GaudiDev ]
  Links to LXR source navigation pages for stable releases [ 12.*.* ]   [ 13.*.* ]   [ 14.*.* ] 

001 %!PS-Adobe-2.0
002 %%Creator: dot version 2.2 (Tue Mar 22 18:02:44 UTC 2005)
003 %%For: (jb) Juerg Beringer
004 %%Title: test
005 %%Pages: (atend)
006 %%BoundingBox: 35 35 468 325
007 %%EndComments
008 save
009 %%BeginProlog
010 /DotDict 200 dict def
011 DotDict begin
012 
013 /setupLatin1 {
014 mark
015 /EncodingVector 256 array def
016  EncodingVector 0
017 
018 ISOLatin1Encoding 0 255 getinterval putinterval
019 
020 EncodingVector
021   dup 306 /AE
022   dup 301 /Aacute
023   dup 302 /Acircumflex
024   dup 304 /Adieresis
025   dup 300 /Agrave
026   dup 305 /Aring
027   dup 303 /Atilde
028   dup 307 /Ccedilla
029   dup 311 /Eacute
030   dup 312 /Ecircumflex
031   dup 313 /Edieresis
032   dup 310 /Egrave
033   dup 315 /Iacute
034   dup 316 /Icircumflex
035   dup 317 /Idieresis
036   dup 314 /Igrave
037   dup 334 /Udieresis
038   dup 335 /Yacute
039   dup 376 /thorn
040   dup 337 /germandbls
041   dup 341 /aacute
042   dup 342 /acircumflex
043   dup 344 /adieresis
044   dup 346 /ae
045   dup 340 /agrave
046   dup 345 /aring
047   dup 347 /ccedilla
048   dup 351 /eacute
049   dup 352 /ecircumflex
050   dup 353 /edieresis
051   dup 350 /egrave
052   dup 355 /iacute
053   dup 356 /icircumflex
054   dup 357 /idieresis
055   dup 354 /igrave
056   dup 360 /dcroat
057   dup 361 /ntilde
058   dup 363 /oacute
059   dup 364 /ocircumflex
060   dup 366 /odieresis
061   dup 362 /ograve
062   dup 365 /otilde
063   dup 370 /oslash
064   dup 372 /uacute
065   dup 373 /ucircumflex
066   dup 374 /udieresis
067   dup 371 /ugrave
068   dup 375 /yacute
069   dup 377 /ydieresis  
070 
071 % Set up ISO Latin 1 character encoding
072 /starnetISO {
073         dup dup findfont dup length dict begin
074         { 1 index /FID ne { def }{ pop pop } ifelse
075         } forall
076         /Encoding EncodingVector def
077         currentdict end definefont
078 } def
079 /Times-Roman starnetISO def
080 /Times-Italic starnetISO def
081 /Times-Bold starnetISO def
082 /Times-BoldItalic starnetISO def
083 /Helvetica starnetISO def
084 /Helvetica-Oblique starnetISO def
085 /Helvetica-Bold starnetISO def
086 /Helvetica-BoldOblique starnetISO def
087 /Courier starnetISO def
088 /Courier-Oblique starnetISO def
089 /Courier-Bold starnetISO def
090 /Courier-BoldOblique starnetISO def
091 cleartomark
092 } bind def
093 
094 %%BeginResource: procset graphviz 0 0
095 /coord-font-family /Times-Roman def
096 /default-font-family /Times-Roman def
097 /coordfont coord-font-family findfont 8 scalefont def
098 
099 /InvScaleFactor 1.0 def
100 /set_scale {
101         dup 1 exch div /InvScaleFactor exch def
102         dup scale
103 } bind def
104 
105 % styles
106 /solid { [] 0 setdash } bind def
107 /dashed { [9 InvScaleFactor mul dup ] 0 setdash } bind def
108 /dotted { [1 InvScaleFactor mul 6 InvScaleFactor mul] 0 setdash } bind def
109 /invis {/fill {newpath} def /stroke {newpath} def /show {pop newpath} def} bind def
110 /bold { 2 setlinewidth } bind def
111 /filled { } bind def
112 /unfilled { } bind def
113 /rounded { } bind def
114 /diagonals { } bind def
115 
116 % hooks for setting color 
117 /nodecolor { sethsbcolor } bind def
118 /edgecolor { sethsbcolor } bind def
119 /graphcolor { sethsbcolor } bind def
120 /nopcolor {pop pop pop} bind def
121 
122 /beginpage {    % i j npages
123         /npages exch def
124         /j exch def
125         /i exch def
126         /str 10 string def
127         npages 1 gt {
128                 gsave
129                         coordfont setfont
130                         0 0 moveto
131                         (\() show i str cvs show (,) show j str cvs show (\)) show
132                 grestore
133         } if
134 } bind def
135 
136 /set_font {
137         findfont exch
138         scalefont setfont
139 } def
140 
141 % draw aligned label in bounding box aligned to current point
142 /alignedtext {                  % width adj text
143         /text exch def
144         /adj exch def
145         /width exch def
146         gsave
147                 width 0 gt {
148                         text stringwidth pop adj mul 0 rmoveto
149                 } if
150                 [] 0 setdash
151                 text show
152         grestore
153 } def
154 
155 /boxprim {                              % xcorner ycorner xsize ysize
156                 4 2 roll
157                 moveto
158                 2 copy
159                 exch 0 rlineto
160                 0 exch rlineto
161                 pop neg 0 rlineto
162                 closepath
163 } bind def
164 
165 /ellipse_path {
166         /ry exch def
167         /rx exch def
168         /y exch def
169         /x exch def
170         matrix currentmatrix
171         newpath
172         x y translate
173         rx ry scale
174         0 0 1 0 360 arc
175         setmatrix
176 } bind def
177 
178 /endpage { showpage } bind def
179 /showpage { } def
180 
181 /layercolorseq
182         [       % layer color sequence - darkest to lightest
183                 [0 0 0]
184                 [.2 .8 .8]
185                 [.4 .8 .8]
186                 [.6 .8 .8]
187                 [.8 .8 .8]
188         ]
189 def
190 
191 /layerlen layercolorseq length def
192 
193 /setlayer {/maxlayer exch def /curlayer exch def
194         layercolorseq curlayer 1 sub layerlen mod get
195         aload pop sethsbcolor
196         /nodecolor {nopcolor} def
197         /edgecolor {nopcolor} def
198         /graphcolor {nopcolor} def
199 } bind def
200 
201 /onlayer { curlayer ne {invis} if } def
202 
203 /onlayers {
204         /myupper exch def
205         /mylower exch def
206         curlayer mylower lt
207         curlayer myupper gt
208         or
209         {invis} if
210 } def
211 
212 /curlayer 0 def
213 
214 %%EndResource
215 %%EndProlog
216 %%BeginSetup
217 14 default-font-family set_font
218 1 setmiterlimit
219 % /arrowlength 10 def
220 % /arrowwidth 5 def
221 
222 % make sure pdfmark is harmless for PS-interpreters other than Distiller
223 /pdfmark where {pop} {userdict /pdfmark /cleartomark load put} ifelse
224 % make '<<' and '>>' safe on PS Level 1 devices
225 /languagelevel where {pop languagelevel}{1} ifelse
226 2 lt {
227     userdict (<<) cvn ([) cvn load put
228     userdict (>>) cvn ([) cvn load put
229 } if
230 
231 %%EndSetup
232 %%Page: 1 1
233 %%PageBoundingBox: 36 36 468 325
234 %%PageOrientation: Portrait
235 gsave
236 35 35 433 290 boxprim clip newpath
237 36 36 translate
238 0 0 1 beginpage
239 0 0 translate 0 rotate
240 0.000 0.000 0.000 graphcolor
241 10.00 /Times-Roman set_font
242 
243 %       D1A_B02_S2_M1
244 gsave 10 dict begin
245 0.000 1.000 1.000 nodecolor
246 227 30 52 21 ellipse_path
247 stroke
248 gsave 10 dict begin
249 0.000 0.000 0.000 nodecolor
250 188 32 moveto
251 (D1A_B02_S2_M1)
252 [7.2 5.04 7.2 5.04 6.72 5.04 5.04 5.04 5.52 5.04 5.04 8.88 5.04]
253 xshow
254 202 21 moveto
255 (\(MODULE\))
256 [3.36 8.88 7.2 7.2 7.2 6 6 3.36]
257 xshow
258 end grestore
259 end grestore
260 
261 %       D1A_B02_S2
262 gsave 10 dict begin
263 227 144 43 21 ellipse_path
264 stroke
265 gsave 10 dict begin
266 197 146 moveto
267 (D1A_B02_S2)
268 [7.2 5.04 7.2 5.04 6.72 5.04 5.04 5.04 5.52 5.04]
269 xshow
270 215 135 moveto
271 (\(PP0\))
272 [3.36 5.52 5.52 5.04 3.36]
273 xshow
274 end grestore
275 end grestore
276 
277 %       D1A_B02_S2 -> D1A_B02_S2_M1
278 gsave 10 dict begin
279 filled
280 newpath 227 123 moveto
281 227 106 227 81 227 61 curveto
282 stroke
283 gsave 10 dict begin
284 solid
285 1 setlinewidth
286 0.000 0.000 0.000 edgecolor
287 newpath 231 61 moveto
288 227 51 lineto
289 224 61 lineto
290 closepath
291 fill
292 0.000 0.000 0.000 edgecolor
293 newpath 231 61 moveto
294 227 51 lineto
295 224 61 lineto
296 closepath
297 stroke
298 end grestore
299 gsave 10 dict begin
300 7.00 /Times-Roman set_font
301 217 112 moveto
302 (M1)
303 [6.24 3.6]
304 xshow
305 end grestore
306 end grestore
307 
308 %       PP0S
309 gsave 10 dict begin
310 65 257 46 21 ellipse_path
311 stroke
312 gsave 10 dict begin
313 53 259 moveto
314 (PP0S)
315 [5.52 5.52 5.04 5.52]
316 xshow
317 33 248 moveto
318 (\(CONTAINER\))
319 [3.36 6.72 7.2 7.2 5.52 7.2 3.36 7.2 6 6.72 3.36]
320 xshow
321 end grestore
322 end grestore
323 
324 %       PP0S -> D1A_B02_S2
325 gsave 10 dict begin
326 filled
327 newpath 90 239 moveto
328 118 220 163 188 193 167 curveto
329 stroke
330 gsave 10 dict begin
331 solid
332 1 setlinewidth
333 0.000 0.000 0.000 edgecolor
334 newpath 196 169 moveto
335 202 161 lineto
336 192 164 lineto
337 closepath
338 fill
339 0.000 0.000 0.000 edgecolor
340 newpath 196 169 moveto
341 202 161 lineto
342 192 164 lineto
343 closepath
344 stroke
345 end grestore
346 gsave 10 dict begin
347 7.00 /Times-Roman set_font
348 74 228 moveto
349 (D1A_B02_S2)
350 [5.04 3.6 5.04 3.6 4.56 3.6 3.6 3.6 3.84 3.6]
351 xshow
352 end grestore
353 end grestore
354 
355 %       D1A_B02_S2_OB
356 gsave 10 dict begin
357 227 257 52 21 ellipse_path
358 stroke
359 gsave 10 dict begin
360 188 259 moveto
361 (D1A_B02_S2_OB)
362 [7.2 5.04 7.2 5.04 6.72 5.04 5.04 5.04 5.52 5.04 5.04 7.2 6.72]
363 xshow
364 193 248 moveto
365 (\(OPTOBOARD\))
366 [3.36 7.2 5.52 6 7.2 6.48 6.72 7.2 6.72 7.2 3.36]
367 xshow
368 end grestore
369 end grestore
370 
371 %       D1A_B02_S2_OB -> D1A_B02_S2
372 gsave 10 dict begin
373 dashed
374 newpath 227 236 moveto
375 227 219 227 194 227 175 curveto
376 stroke
377 gsave 10 dict begin
378 solid
379 1 setlinewidth
380 0.000 0.000 0.000 edgecolor
381 newpath 231 175 moveto
382 227 165 lineto
383 224 175 lineto
384 closepath
385 fill
386 0.000 0.000 0.000 edgecolor
387 newpath 231 175 moveto
388 227 165 lineto
389 224 175 lineto
390 closepath
391 stroke
392 end grestore
393 gsave 10 dict begin
394 7.00 /Times-Roman set_font
395 226 172 moveto
396 (OB)
397 [5.04 4.56]
398 xshow
399 end grestore
400 gsave 10 dict begin
401 7.00 /Times-Roman set_font
402 216 225 moveto
403 (PP0)
404 [3.84 3.84 3.6]
405 xshow
406 end grestore
407 end grestore
408 
409 %       node1
410 gsave 10 dict begin
411 378 257 38 21 ellipse_path
412 stroke
413 gsave 10 dict begin
414 354 259 moveto
415 (R-OHV3_1)
416 [6.24 3.36 7.2 7.2 7.2 5.04 5.04 5.04]
417 xshow
418 358 248 moveto
419 (\(HV-PP1\))
420 [3.36 7.2 6.48 3.36 5.52 5.52 5.04 3.36]
421 xshow
422 end grestore
423 end grestore
424 
425 %       node1 -> D1A_B02_S2
426 gsave 10 dict begin
427 dashed
428 newpath 355 240 moveto
429 330 221 287 189 258 168 curveto
430 stroke
431 gsave 10 dict begin
432 solid
433 1 setlinewidth
434 0.000 0.000 0.000 edgecolor
435 newpath 260 165 moveto
436 250 162 lineto
437 256 171 lineto
438 closepath
439 fill
440 0.000 0.000 0.000 edgecolor
441 newpath 260 165 moveto
442 250 162 lineto
443 256 171 lineto
444 closepath
445 stroke
446 end grestore
447 gsave 10 dict begin
448 7.00 /Times-Roman set_font
449 249 162 moveto
450 (HV-B3)
451 [5.04 4.56 2.4 4.56 3.6]
452 xshow
453 end grestore
454 gsave 10 dict begin
455 7.00 /Times-Roman set_font
456 333 236 moveto
457 (SLOT-3)
458 [3.84 4.32 5.04 3.84 2.4 3.6]
459 xshow
460 end grestore
461 end grestore
462 endpage
463 showpage
464 grestore
465 %%PageTrailer
466 %%EndPage: 1
467 %%Trailer
468 %%Pages: 1
469 end
470 restore
471 %%EOF

source navigation ] diff markup ] identifier search ] general search ]

Due to the LXR bug, the updates fail sometimes to remove references to deleted files. The Saturday's full rebuilds fix these problems
This page was automatically generated by the LXR engine. Valid HTML 4.01!