Advertisement
Guest User

Untitled

a guest
Jul 10th, 2014
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.86 KB | None | 0 0
  1. documentclass{standalone}
  2.  
  3. usepackage{kerkis}
  4. usepackage{tikz}
  5.  
  6. begin{document}
  7.  
  8. usetikzlibrary{positioning}
  9.  
  10. tikzset{
  11. gold/.style = {
  12. top color=gray!60,
  13. bottom color=gray!20,
  14. minimum width=0.25cm,
  15. minimum height=2cm,
  16. anchor=west,
  17. },
  18. boron/.style = {
  19. top color=gray!80,
  20. bottom color=gray!40,
  21. minimum width=1cm,
  22. minimum height=2cm,
  23. anchor=west,
  24. },
  25. telescope/.style = {
  26. right color=black!70,
  27. left color=black!20,
  28. minimum width=1.2cm,
  29. minimum height=.4cm,
  30. sloped,
  31. pos=1,
  32. rotate=90,
  33. },
  34. E/.style = {
  35. top color=black!80,
  36. bottom color=black!40,
  37. minimum width=1.2cm,
  38. minimum height=1.4cm,
  39. sloped,
  40. pos=1,
  41. rotate=90,
  42. },
  43. }
  44.  
  45. begin{tikzpicture}
  46.  
  47. coordinate (beam left) at (-5,0);
  48. coordinate (beam right) at (2,0);
  49.  
  50. % Incident Beam
  51. draw[->, very thick] (beam left) -- (beam right);
  52. node[above right] at (beam left) (proton) {$p^+$};
  53.  
  54. % Target : Boron + Au
  55. node[gold, label=95:$Au$] at (6,0) (gold) {};% Au
  56. node[boron, right=0mm of gold, label=80:$^{nat}B$] (boron) {};
  57.  
  58. coordinate (hit) at (gold.west);
  59.  
  60. % Telescopes
  61. path (hit) -- +(170:8)
  62. node[telescope, label=right:$6mu m$] (telescope1) {$Delta E$};
  63. path (hit) -- +(-120:8)
  64. node[telescope, label=left:$22mu m$] (telescope2) {$Delta E$};
  65. path (hit) -- +(170:9)
  66. node[E, label=20:$1000mu m$] {$mathbf{E}$};
  67. path (hit) -- +(-120:9)
  68. node[E, label=left:$1000mu m$] {$mathbf{E}$};
  69.  
  70. % Angles
  71. draw[dashed, gray, thick] (beam right) -- (hit);
  72. draw[dashed, gray, thick] (hit) -- (telescope1);
  73. draw[dashed, gray, thick] (hit) -- (telescope2);
  74. draw[<->,thick] (hit) +(180:2) arc (180:170:2);
  75. path (hit) +(175:2) node[left] {$10^circ$};
  76. draw[<->,thick] (hit) +(180:2) arc (-180:-120:2);
  77. path (hit) +(210:2) node[left] {$60^circ$};
  78. end{tikzpicture}
  79.  
  80. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement