Newer
Older
Presentations / Magnet_Stations / 26_10_2016 / mchrzasz.tex
@mchrzasz mchrzasz on 26 Sep 2016 16 KB addfed magnet station slides -a
  1. \documentclass[11 pt,xcolor={dvipsnames,svgnames,x11names,table}]{beamer}
  2.  
  3. \usepackage[english]{babel}
  4. \usepackage{polski}
  5.  
  6.  
  7. \usetheme[
  8. bullet=circle, % Other option: square
  9. bigpagenumber, % circled page number on lower right
  10. topline=true, % colored bar at the top of the frame
  11. shadow=false, % Shading for beamer blocks
  12. watermark=BG_lower, % png file for the watermark
  13. ]{Flip}
  14.  
  15. %\logo{\kern+1.em\includegraphics[height=1cm]{SHiP-3_LightCharcoal}}
  16.  
  17.  
  18. \usepackage[lf]{berenis}
  19. \usepackage[LY1]{fontenc}
  20. \usepackage[utf8]{inputenc}
  21.  
  22. \usepackage{emerald}
  23. \usefonttheme{professionalfonts}
  24. \usepackage[no-math]{fontspec}
  25. \defaultfontfeatures{Mapping=tex-text} % This seems to be important for mapping glyphs properly
  26.  
  27. \setmainfont{Gillius ADF} % Beamer ignores "main font" in favor of sans font
  28. \setsansfont{Gillius ADF} % This is the font that beamer will use by default
  29. % \setmainfont{Gill Sans Light} % Prettier, but harder to read
  30.  
  31. \setbeamerfont{title}{family=\fontspec{Gillius ADF}}
  32.  
  33. \input t1augie.fd
  34.  
  35. %\newcommand{\handwriting}{\fontspec{augie}} % From Emerald City, free font
  36. %\newcommand{\handwriting}{\usefont{T1}{fau}{m}{n}} % From Emerald City, free font
  37. % \newcommand{\handwriting}{} % If you prefer no special handwriting font or don't have augie
  38.  
  39. %% Gill Sans doesn't look very nice when boldfaced
  40. %% This is a hack to use Helvetica instead
  41. %% Usage: \textbf{\forbold some stuff}
  42. %\newcommand{\forbold}{\fontspec{Arial}}
  43.  
  44. \usepackage{graphicx}
  45. \usepackage[export]{adjustbox}
  46.  
  47. \usepackage{amsmath}
  48. \usepackage{amsfonts}
  49. \usepackage{amssymb}
  50. \usepackage{bm}
  51. \usepackage{colortbl}
  52. \usepackage{mathrsfs} % For Weinberg-esque letters
  53. \usepackage{cancel} % For "SUSY-breaking" symbol
  54. \usepackage{slashed} % for slashed characters in math mode
  55. \usepackage{bbm} % for \mathbbm{1} (unit matrix)
  56. \usepackage{amsthm} % For theorem environment
  57. \usepackage{multirow} % For multi row cells in table
  58. \usepackage{arydshln} % For dashed lines in arrays and tables
  59. \usepackage{siunitx}
  60. \usepackage{xhfill}
  61. \usepackage{grffile}
  62. \usepackage{textpos}
  63. \usepackage{subfigure}
  64. \usepackage{tikz}
  65.  
  66. %\usepackage{hepparticles}
  67. \usepackage[italic]{hepparticles}
  68.  
  69. \usepackage{hepnicenames}
  70.  
  71. % Drawing a line
  72. \tikzstyle{lw} = [line width=20pt]
  73. \newcommand{\topline}{%
  74. \tikz[remember picture,overlay] {%
  75. \draw[crimsonred] ([yshift=-23.5pt]current page.north west)
  76. -- ([yshift=-23.5pt,xshift=\paperwidth]current page.north west);}}
  77.  
  78.  
  79.  
  80. % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
  81. \usepackage{tikzfeynman} % For Feynman diagrams
  82. \usetikzlibrary{arrows,shapes}
  83. \usetikzlibrary{trees}
  84. \usetikzlibrary{matrix,arrows} % For commutative diagram
  85. % http://www.felixl.de/commu.pdf
  86. \usetikzlibrary{positioning} % For "above of=" commands
  87. \usetikzlibrary{calc,through} % For coordinates
  88. \usetikzlibrary{decorations.pathreplacing} % For curly braces
  89. % http://www.math.ucla.edu/~getreuer/tikz.html
  90. \usepackage{pgffor} % For repeating patterns
  91.  
  92. \usetikzlibrary{decorations.pathmorphing} % For Feynman Diagrams
  93. \usetikzlibrary{decorations.markings}
  94. \tikzset{
  95. % >=stealth', %% Uncomment for more conventional arrows
  96. vector/.style={decorate, decoration={snake}, draw},
  97. provector/.style={decorate, decoration={snake,amplitude=2.5pt}, draw},
  98. antivector/.style={decorate, decoration={snake,amplitude=-2.5pt}, draw},
  99. fermion/.style={draw=gray, postaction={decorate},
  100. decoration={markings,mark=at position .55 with {\arrow[draw=gray]{>}}}},
  101. fermionbar/.style={draw=gray, postaction={decorate},
  102. decoration={markings,mark=at position .55 with {\arrow[draw=gray]{<}}}},
  103. fermionnoarrow/.style={draw=gray},
  104. gluon/.style={decorate, draw=black,
  105. decoration={coil,amplitude=4pt, segment length=5pt}},
  106. scalar/.style={dashed,draw=black, postaction={decorate},
  107. decoration={markings,mark=at position .55 with {\arrow[draw=black]{>}}}},
  108. scalarbar/.style={dashed,draw=black, postaction={decorate},
  109. decoration={markings,mark=at position .55 with {\arrow[draw=black]{<}}}},
  110. scalarnoarrow/.style={dashed,draw=black},
  111. electron/.style={draw=black, postaction={decorate},
  112. decoration={markings,mark=at position .55 with {\arrow[draw=black]{>}}}},
  113. bigvector/.style={decorate, decoration={snake,amplitude=4pt}, draw},
  114. }
  115.  
  116. % TIKZ - for block diagrams,
  117. % from http://www.texample.net/tikz/examples/control-system-principles/
  118. % \usetikzlibrary{shapes,arrows}
  119. \tikzstyle{block} = [draw, rectangle,
  120. minimum height=3em, minimum width=6em]
  121.  
  122.  
  123.  
  124.  
  125. \usetikzlibrary{backgrounds}
  126. \usetikzlibrary{mindmap,trees} % For mind map
  127. \newcommand{\degree}{\ensuremath{^\circ}}
  128. \newcommand{\E}{\mathrm{E}}
  129. \newcommand{\TeV}{\mathrm{TeV}}
  130. \newcommand{\Var}{\mathrm{Var}}
  131. \newcommand{\Cov}{\mathrm{Cov}}
  132. \newcommand\Ts{\rule{0pt}{2.6ex}} % Top strut
  133. \newcommand\Bs{\rule[-1.2ex]{0pt}{0pt}} % Bottom strut
  134.  
  135. \graphicspath{{images/}} % Put all images in this directory. Avoids clutter.
  136.  
  137. % SOME COMMANDS THAT I FIND HANDY
  138. % \renewcommand{\tilde}{\widetilde} % dinky tildes look silly, dosn't work with fontspec
  139. \newcommand{\comment}[1]{\textcolor{comment}{\footnotesize{#1}\normalsize}} % comment mild
  140. \newcommand{\Comment}[1]{\textcolor{Comment}{\footnotesize{#1}\normalsize}} % comment bold
  141. \newcommand{\COMMENT}[1]{\textcolor{COMMENT}{\footnotesize{#1}\normalsize}} % comment crazy bold
  142. \newcommand{\Alert}[1]{\textcolor{Alert}{#1}} % louder alert
  143. \newcommand{\ALERT}[1]{\textcolor{ALERT}{#1}} % loudest alert
  144. %% "\alert" is already a beamer pre-defined
  145. \newcommand*{\Scale}[2][4]{\scalebox{#1}{$#2$}}%
  146.  
  147. \def\Put(#1,#2)#3{\leavevmode\makebox(0,0){\put(#1,#2){#3}}}
  148.  
  149. \usepackage{gmp}
  150. \usepackage[final]{feynmp-auto}
  151.  
  152. \usepackage[backend=bibtex,style=numeric-comp,firstinits=true]{biblatex}
  153. \bibliography{bib}
  154. \setbeamertemplate{bibliography item}[text]
  155.  
  156. \makeatletter\let\frametextheight\beamer@frametextheight\makeatother
  157.  
  158. % suppress frame numbering for backup slides
  159. % you always need the appendix for this!
  160. \newcommand{\backupbegin}{
  161. \newcounter{framenumberappendix}
  162. \setcounter{framenumberappendix}{\value{framenumber}}
  163. }
  164. \newcommand{\backupend}{
  165. \addtocounter{framenumberappendix}{-\value{framenumber}}
  166. \addtocounter{framenumber}{\value{framenumberappendix}}
  167. }
  168.  
  169.  
  170. \definecolor{links}{HTML}{2A1B81}
  171. %\hypersetup{colorlinks,linkcolor=,urlcolor=links}
  172.  
  173. % For shapo's formulas:
  174. \def\lsi{\raise0.3ex\hbox{$<$\kern-0.75em\raise-1.1ex\hbox{$\sim$}}}
  175. \def\gsi{\raise0.3ex\hbox{$>$\kern-0.75em\raise-1.1ex\hbox{$\sim$}}}
  176. \newcommand{\lsim}{\mathop{\lsi}}
  177. \newcommand{\gsim}{\mathop{\gsi}}
  178. \newcommand{\wt}{\widetilde}
  179. %\newcommand{\ol}{\overline}
  180. \newcommand{\Tr}{\rm{Tr}}
  181. \newcommand{\tr}{\rm{tr}}
  182. \newcommand{\eqn}[1]{&\hspace{-0.7em}#1\hspace{-0.7em}&}
  183. \newcommand{\vev}[1]{\rm{$\langle #1 \rangle$}}
  184. \newcommand{\abs}[1]{\rm{$\left| #1 \right|$}}
  185. \newcommand{\eV}{\rm{eV}}
  186. \newcommand{\keV}{\rm{keV}}
  187. \newcommand{\GeV}{\rm{GeV}}
  188. \newcommand{\im}{\rm{Im}}
  189. \newcommand{\disp}{\displaystyle}
  190. \def\be{\begin{equation}}
  191. \def\ee{\end{equation}}
  192. \def\ba{\begin{eqnarray}}
  193. \def\ea{\end{eqnarray}}
  194. \def\d{\partial}
  195. \def\l{\left(}
  196. \def\r{\right)}
  197. \def\la{\langle}
  198. \def\ra{\rangle}
  199. \def\e{{\rm e}}
  200. \def\Br{{\rm Br}}
  201. \def\fixme{FIXME}
  202.  
  203.  
  204.  
  205. \def\ARROW{{\color{JungleGreen}{$\Rrightarrow$}}\xspace}
  206. \def\ARROWR{{\color{WildStrawberry}{$\Rrightarrow$}}\xspace}
  207.  
  208. \author{ {\fontspec{Trebuchet MS}Marcin Chrz\k{a}szcz} (Universit\"{a}t Z\"{u}rich)}
  209. \institute{UZH}
  210. \title[Magnet Stations for LHCb]{Magnet Stations for LHCb}
  211.  
  212.  
  213. \begin{document}
  214. \tikzstyle{every picture}+=[remember picture]
  215.  
  216. {
  217. \setbeamertemplate{sidebar right}{\llap{\includegraphics[width=\paperwidth,height=\paperheight]{bubble2}}}
  218. \begin{frame}[c]%{\phantom{title page}}
  219. \begin{center}
  220. \begin{center}
  221. \begin{columns}
  222. \begin{column}{0.75\textwidth}
  223. \flushright\fontspec{Trebuchet MS}\bfseries \Huge {Magnet Stations\\ for LHCb}
  224. \end{column}
  225. \begin{column}{0.02\textwidth}
  226. {~}
  227. \end{column}
  228. \begin{column}{0.23\textwidth}
  229. % \hspace*{-1.cm}
  230. \vspace*{-3mm}
  231. \includegraphics[width=0.6\textwidth]{lhcb-logo}
  232. \end{column}
  233.  
  234. \end{columns}
  235. \end{center}
  236. \quad
  237. \vspace{3em}
  238. \begin{columns}
  239. \begin{column}{0.99\textwidth}
  240. \flushright \vspace{-1.8em} {\fontspec{Trebuchet MS} Marcin Chrząszcz, Marc-Oliver Bettler, Igor Babuschkin,\\ Maurizio Martinelli, Christ Parkes, Marco Gersabeck}
  241.  
  242. \end{column}
  243. %\begin{column}{0.53\textwidth}
  244. %\includegraphics[height=1.3cm]{uzh-transp}
  245. %\end{column}
  246. \end{columns}
  247.  
  248. \vspace{1em}
  249. % \footnotesize\textcolor{gray}{With N. Serra, B. Storaci\\Thanks to the theory support from M. Shaposhnikov, D. Gorbunov}\normalsize\\
  250. \vspace{0.5em}
  251.  
  252. \textcolor{normal text.fg!50!Comment}{MS meeting, September 26, 2016}
  253. \end{center}
  254. \end{frame}
  255. }
  256.  
  257.  
  258.  
  259.  
  260.  
  261. \begin{frame}\frametitle{Where our tracks are?}
  262. \begin{columns}
  263. \column{0.1in}
  264. {~}\\
  265. \column{3in}
  266. \ARROW The upstream tracks have rather poor momentum resolution: $\frac{\Delta p}{p} \sim 15\%$. \\
  267. \ARROW The particles die after short and sad (for physics) life in the magnet yoke. \\
  268. \ARROW If one put chambers in the magnet stations, one could record the particles before they death.\\
  269. \ARROW This will not increase the material budget of the rest of the detector.
  270.  
  271. \column{2in}
  272. \includegraphics[width=0.95\textwidth]{images/sketch.png}\\
  273. \includegraphics[width=0.95\textwidth]{images/magnet.png}
  274.  
  275.  
  276.  
  277. \end{columns}
  278. \end{frame}
  279.  
  280.  
  281.  
  282. \begin{frame}\frametitle{Physics interest}
  283. \begin{small}
  284. \begin{columns}
  285. \column{0.1in}
  286. {~}\\
  287. \column{3in}
  288. \ARROW We have enormous amount of channels where we have slow particles:
  289. \begin{itemize}
  290. \item $\PDstar \to \PD \pi$.
  291. \item $\PLambda_c(2595, 2625) \to \PLambda_c \pi \pi$.
  292. \item All the $\PB^{\ast \ast}$ decays! $\leftarrowtail$ huge community interests!!!
  293. \item As well other states: $\Sigma_b \to \PLambda_b \pi$.
  294. \item Little is known about the excited $\PBs$ states as well.
  295. \item $\tau \to 3 \mu$.
  296.  
  297. \end{itemize}
  298.  
  299.  
  300. \column{2in}
  301. \includegraphics[width=0.95\textwidth]{images/charmS.png}\\
  302.  
  303.  
  304.  
  305. \end{columns}
  306. \end{small}
  307. \end{frame}
  308.  
  309.  
  310.  
  311.  
  312.  
  313.  
  314. \begin{frame}{$\tau$ production}
  315. \begin{minipage}{\textwidth}
  316. \begin{itemize}
  317. \item $\Ptau$'s in LHCb come from five main sources:
  318. \end{itemize}
  319. \begin{center}
  320. \begin{tabular}{| c | c | c | }
  321. \hline
  322. Mode & $7~\TeV$ & $8~\TeV$ \\ \hline
  323. Prompt $\PDs\to\Ptau$ & $71.1\pm3.0\,\%$ & $72.4\pm2.7\,\%$ \\
  324. Prompt $\PDplus\to\Ptau$ & $4.1\pm0.8\,\%$ & $4.2\pm0.7\,\%$ \\
  325. Non-prompt $\PDs\to\Ptau$ & $9.0\pm2.0\,\%$ & $8.5\pm1.7\,\%$ \\
  326. Non-prompt $\PDplus\to\Ptau$ & $0.18\pm0.04\,\%$ & $0.17\pm0.04\,\%$ \\
  327. $X_{\Pbottom}\to\Ptau$ & $15.5\pm2.7\,\%$ & $14.7\pm2.3\,\%$ \\ \hline
  328. \end{tabular}
  329. \end{center}
  330. \ARROW For this study I simulated the $\tau$'s coming from $\rm c$\\
  331. %\ARROW For now limited statistics simulated ($ \mathcal{O}(100)$).
  332. \end{minipage}
  333. \vspace*{2.cm}
  334. \end{frame}
  335.  
  336.  
  337.  
  338. \begin{frame}{$\tau$ simulation}
  339. \begin{minipage}{\textwidth}
  340. \ARROW $9~\%$ of the $\tau$ that are produced in LHCb acceptance ($\eta <5$) have a muon that ends in the magnet tracking stations!
  341. {~}\\{~}\\
  342. \only<1>{
  343. \begin{columns}
  344. \column{0.5\textwidth}
  345. \includegraphics[width=0.9\textwidth]{images/tauxy.png}
  346. \column{0.5\textwidth}
  347. \includegraphics[width=0.9\textwidth]{images/tauyz.png}
  348. \end{columns}
  349. \ARROW Rather uniform distribution.
  350. }
  351. \only<2>{
  352. \begin{columns}
  353. \column{0.5\textwidth}
  354. \includegraphics[width=0.9\textwidth]{images/taupz.png}
  355. \column{0.5\textwidth}
  356. \includegraphics[width=0.9\textwidth]{images/taupy.png}
  357. \end{columns}
  358. {~}\\
  359. \ARROW If we exclude the $\pm 150 \rm cm$ regions we loose $14\%$.
  360. }
  361. \end{minipage}
  362. \vspace*{2.cm}
  363. \end{frame}
  364.  
  365.  
  366.  
  367. \begin{frame}{$\tau$ decay model}
  368. \begin{minipage}{\textwidth}
  369.  
  370.  
  371. \ARROW $\tau$ are decayed with PHSP.\\
  372. \ARROW Might be worth in looking at the specific models:\\
  373. {~}\\
  374. \includegraphics[width=0.3\textwidth]{images/radlr_emm.pdf}
  375. \includegraphics[width=0.3\textwidth]{images/vllll_mmm.pdf}
  376. \includegraphics[width=0.3\textwidth]{images/vllrr_mmm.pdf}
  377. \end{minipage}
  378. \vspace*{2.cm}
  379. \end{frame}
  380.  
  381.  
  382.  
  383. \begin{frame}{$\PDstar$ simulation}
  384. \begin{minipage}{\textwidth}
  385. \ARROW $10~\%$ of the $\tau$ that are produced in LHCb acceptance have a muon that ends in the tracking stations!
  386. {~}\\{~}\\
  387. \only<1>{
  388. \begin{columns}
  389. \column{0.5\textwidth}
  390. \includegraphics[width=0.9\textwidth]{images/Dstarxy.png}
  391. \column{0.5\textwidth}
  392. \includegraphics[width=0.9\textwidth]{images/Dstaryz.png}
  393. \end{columns}
  394. \ARROW Clearly different behaviour than $\mu$.
  395. }
  396. \only<2>{
  397. \begin{columns}
  398. \column{0.5\textwidth}
  399. \includegraphics[width=0.9\textwidth]{images/Dstarpz.png}
  400. \column{0.5\textwidth}
  401. \includegraphics[width=0.9\textwidth]{images/Dstarpy.png}
  402. \end{columns}
  403. {~}\\
  404. \ARROW If we exclude the $\pm 150 \rm cm$ regions we loose $17\%$.
  405. }
  406. \end{minipage}
  407. \vspace*{2.cm}
  408. \end{frame}
  409.  
  410.  
  411.  
  412.  
  413.  
  414. \begin{frame}{$\PLambda_c^{\ast}$ simulation}
  415. \begin{minipage}{\textwidth}
  416. {~}\\
  417. \ARROW $19~\%$ of the $\tau$ that are produced in LHCb acceptance have a muon that ends in the tracking stations!
  418. {~}\\{~}\\
  419. \only<1>{
  420. \begin{columns}
  421. \column{0.5\textwidth}
  422. \includegraphics[width=0.9\textwidth]{images/Lcxy.png}
  423. \column{0.5\textwidth}
  424. \includegraphics[width=0.9\textwidth]{images/LCyz.png}
  425. \end{columns}
  426. \ARROW Clearly different behaviour than $\mu$.\\
  427. \ARROW We have two slow pions. The efficiency looks like factorizes :)
  428. }
  429. \only<2>{
  430. \begin{columns}
  431. \column{0.5\textwidth}
  432. \includegraphics[width=0.9\textwidth]{images/Lcpz.png}
  433. \column{0.5\textwidth}
  434. \includegraphics[width=0.9\textwidth]{images/Lcpy.png}
  435. \end{columns}
  436. {~}\\
  437. \ARROW If we exclude the $\pm 150 \rm cm$ regions we loose $16\%$.
  438. }
  439. \end{minipage}
  440. \vspace*{2.cm}
  441. \end{frame}
  442.  
  443.  
  444.  
  445. \begin{frame}{Summary}
  446. \begin{minipage}{\textwidth}
  447.  
  448. \ARROW Using 3 benchmark channels we see there is quite a lot to be gain!\\
  449. \ARROW This is just tip of the ice berg. \\
  450. \ARROW We need to strengthen the physics program: ex. $\PLambdac(2595)$ decays via intermediate states like $\PSigmac$ which allows polarization measurements.\\
  451. \ARROW Will add multi bodies to the studies.\\
  452. \ARROW $\PB^{\ast \ast} \to \PK \PB$ will allow constrained the final state measurements.\\
  453. \ARROW The length of this detector can be optimised based on our ''golden channels''.
  454. \end{minipage}
  455. \vspace*{2.cm}
  456. \end{frame}
  457.  
  458.  
  459.  
  460.  
  461.  
  462.  
  463.  
  464. \backupbegin
  465.  
  466. \begin{frame}\frametitle{Backup}
  467. \topline
  468.  
  469. \end{frame}
  470.  
  471. \backupend
  472.  
  473. \end{document}