Warning, /snippets/JetsAndHF/SecondaryVertex_Chi2/SVRes_Vertical_Image.tex is written in an unsupported language. File is not indexed.
0001 \documentclass[tikz,border=3pt]{standalone}
0002 \usepackage{amsmath}
0003 \usepackage{xcolor}
0004
0005 \begin{document}
0006
0007 \begin{tikzpicture}[
0008 line cap=round,
0009 line join=round,
0010 every node/.style={font=\small}
0011 ]
0012
0013 \definecolor{kblue}{RGB}{35,75,170}
0014 \definecolor{pired}{RGB}{190,45,45}
0015 \definecolor{vtxgray}{RGB}{70,70,70}
0016
0017 % -----------------------------
0018 % Top: generated topology
0019 % -----------------------------
0020 \coordinate (svmc) at (0,0);
0021
0022 \node[anchor=east] at (-0.15,-0.18) {$D^{0}$};
0023
0024 \draw[kblue, line width=0.9pt]
0025 (svmc)
0026 .. controls (0.65,0.18) and (1.10,0.72) ..
0027 (1.45,1.18);
0028
0029 \draw[pired, line width=0.9pt]
0030 (svmc)
0031 .. controls (0.70,0.18) and (1.28,0.12) ..
0032 (1.78,-0.10);
0033
0034 \fill[vtxgray] (svmc) circle (1.5pt);
0035
0036 \node[kblue, anchor=south west] at (1.37,1.10) {$K^{-}$};
0037 \node[pired, anchor=west] at (1.80,-0.10) {$\pi^{+}$};
0038
0039 \node[vtxgray, anchor=north] at (0.18,-0.18)
0040 {$\mathrm{SV}_{\mathrm{Mc}}$};
0041
0042 % -----------------------------
0043 % Vertical reconstruction arrow
0044 % -----------------------------
0045 \draw[-latex, line width=0.8pt]
0046 (0.90,-0.65) -- (0.90,-1.55)
0047 node[midway,right=4pt] {Reco};
0048
0049 % -----------------------------
0050 % Bottom: reconstructed topology
0051 % -----------------------------
0052 \begin{scope}[shift={(-3.85,-3.10)}]
0053
0054 \coordinate (svrec) at (3.85,0.18);
0055
0056 \draw[kblue, line width=0.9pt]
0057 (3.55,0.08)
0058 .. controls (4.20,0.28) and (4.75,0.78) ..
0059 (5.15,1.28);
0060
0061 \draw[pired, line width=0.9pt]
0062 (3.62,0.00)
0063 .. controls (4.28,0.22) and (4.90,0.25) ..
0064 (5.45,0.08);
0065
0066 \fill[vtxgray]
0067 ([xshift=1mm,yshift=-0.1mm]svrec) circle (1.5pt);
0068
0069 \node[kblue, anchor=south west] at (5.08,1.20) {$K^{-}$};
0070 \node[pired, anchor=west] at (5.46,0.08) {$\pi^{+}$};
0071
0072 \node[vtxgray, anchor=north] at (4.05,-0.05)
0073 {$\mathrm{SV}_{\mathrm{Rec}}$};
0074
0075 \end{scope}
0076
0077 \end{tikzpicture}
0078
0079 \end{document}