Add .gitignore, small upate on AlcapSimulationReport

This commit is contained in:
nam
2013-06-26 16:54:08 +09:00
parent 2dbdd72462
commit 63fdf7eaa5
7 changed files with 26 additions and 8 deletions

8
.gitignore vendored Normal file
View File

@@ -0,0 +1,8 @@
*.aux
*.nav
*.toc
*.log
*.out
*.snm
*.synctex*
*.DS_Store

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -1,8 +1,8 @@
ALL: report.pdf ALL: report.pdf
%.pdf: %.tex Makefile *.sty %.pdf: %.tex Makefile *.sty
#pdflatex --enable-write18 $< && pdflatex $< && pdflatex $< pdflatex --enable-write18 $< && pdflatex $< && pdflatex $<
pdflatex $< #pdflatex $<
clean: clean:
rm -f *.aux *.bbl *.blg *.log poster.pdf *.nav *.out *.snm *.toc rm -f *.aux *.bbl *.blg *.log poster.pdf *.nav *.out *.snm *.toc

View File

@@ -1,6 +1,7 @@
\documentclass[a4paper,11pt]{article} \documentclass[a4paper,11pt]{article}
\usepackage[utf8x]{inputenc} \usepackage[utf8x]{inputenc}
\usepackage{ucs} \usepackage{ucs}
\usepackage{hyperref}
\usepackage{amsmath} \usepackage{amsmath}
\usepackage{amsfonts} \usepackage{amsfonts}
\usepackage{amssymb} \usepackage{amssymb}
@@ -45,9 +46,14 @@ package consists of:
There is There is
a small gap of 1 mm between the detectors in each dE/dx package, and distance a small gap of 1 mm between the detectors in each dE/dx package, and distance
from the beam counter to beam window is 5 mm. The germanium detector from the beam counter to beam window is 5 mm. The germanium detector
I used is just a simple cylinder. I have asked Malachi (from PNNL) to I used is just a simple cylinder. Some parameters of the germanium detector are
implement a more realistic geometry for it based on the detector PNNL group in this note of Frederik:
has. \url{https://muon.npl.washington.edu/elog/mu2e/Capture2012/79}
Physics list in use is the LHEP\_EMV because it is the fastest one. (see page
5 in this presentation:
\url{http://geant4.slac.stanford.edu/SLACTutorial09/ChoosingPhysicsList.pdf})
\begin{figure}[htpb] \begin{figure}[htpb]
\centering \centering
\includegraphics[width=0.55\textwidth]{figs/geo_cut}\includegraphics[width=0.45\textwidth]{figs/geo_top} \includegraphics[width=0.55\textwidth]{figs/geo_cut}\includegraphics[width=0.45\textwidth]{figs/geo_top}
@@ -295,9 +301,8 @@ Note:
%\end{figure} %\end{figure}
\section{Side notes on structure of the output ROOT file} \section{Side notes on structure of the output ROOT file}
I used ROOT TObject to construct the output of the simulation (as pointed out I used ROOT TObject to construct the output of the simulation (this is not
by Malachi, this is not convenient for analysing). really convenient for analysing). An event contains following information:
An event contains following information:
\begin{itemize} \begin{itemize}
\item event id, \item event id,
\item deposited energies in all detectors and target, \item deposited energies in all detectors and target,
@@ -312,4 +317,9 @@ An event contains following information:
\end{itemize} \end{itemize}
\end{itemize} \end{itemize}
\section{To do}
\begin{itemize}
\item optimization of geometry
\item digitization of output data, feeding to DAQ and analyzer, if possible
\end{itemize}
\end{document} \end{document}

Binary file not shown.