--- /dev/null
+%%
+%% Modified JaCOW template for the GSI Scientific Report 2014
+%% 8.1.2015
+%%
+% modified for GSI 11/2005 K. Schiebel - subsection
+% modified for GSI 11/2006 K. Schiebel - list of authors
+% modified for GSI 11/2010 K. Schiebel - Authors italic, PDF=A4
+% modified for GSI 1/2015 K. Große
+%
+\def\fileversion{1.7 - modified for GSI}
+\def\filedate{2010/11/16}
+\def\docdate {2010/11/16}
+
+\newlength{\dsep}
+\newlength{\dwid}
+\newlength{\dht}
+\NeedsTeXFormat{LaTeX2e}
+\ProvidesClass{JACoW-GSI-2014}[\filedate\space Version \fileversion]
+%\DeclareOption{acus}
+% {\setlength{\dwid}{6mm}%
+% \setlength{\dht}{-18mm}
+% \setlength{\paperheight}{11in}
+% \setlength{\paperwidth}{8.5in}
+% \typeout{Setup for US LETTER PAPER}}
+\DeclareOption{aca4}
+ {\setlength{\dwid}{0mm}%
+ \setlength{\dht}{0mm}
+ \setlength{\paperheight}{297mm}
+ \setlength{\paperwidth}{210mm}
+ \typeout{Setup for A4 PAPER}}
+\DeclareOption{a4paper}
+ {\setlength{\dwid}{0mm}%
+ \setlength{\dht}{0mm}
+ \setlength{\paperheight}{297mm}
+ \setlength{\paperwidth}{210mm}
+ \typeout{Setup for A4 PAPER}}
+\DeclareOption{boxit}
+%%
+%% This option draws a box on the output text with the correct margins
+%%
+ {\special{!userdict begin /bop-hook{
+ gsave
+ newpath
+ 58 55 moveto
+ 58 737 lineto
+ 539 737 lineto
+ 539 55 lineto
+ closepath
+ stroke
+ grestore
+ }def end}}
+\DeclareOption*{\PassOptionsToClass{\CurrentOption}{article}}
+
+\ProcessOptions
+\LoadClass[10pt,a4paper]{article} %2010 - A4
+
+%%
+%% Using Times fonts produces a Uniform, compact document
+%% suitable for the Acrobat Software and printable anywhere.
+%%
+%% In a 'modern' TeX installation
+%% e.g TeXLive Version 3 or later (more information on the JACo Website)
+%% one can use the following command
+%%
+
+\renewcommand{\rmdefault}{ptm}
+
+%%
+%% Older installations may require
+%% \RequirePackage{times}
+%%
+\typeout{------------------------------------------------------------------------}
+\typeout{LaTeX2e Class file for Accelerator Conference publication for LaTeX2e users}
+\typeout{ }
+\typeout{Use the boxit option to draw a box on page showing the correct margins}
+\typeout{ }
+\typeout{Itemize, Enumerate and Description environments are compact versions}
+\typeout{------------------------------------------------------------------------}
+\typeout{ }
+
+%
+% DIMENSION OF TEXT:
+
+\setlength{\textheight}{241mm}
+\setlength{\textwidth}{170mm}
+%\setlength{\topmargin}{23mm}
+\setlength{\topmargin}{14mm} %nach oben verschoben
+\addtolength{\topmargin}{\dht}
+\setlength{\oddsidemargin}{20mm}
+\setlength{\evensidemargin}{20mm}
+\setlength{\columnsep}{5mm}
+
+
+\hoffset -25.4mm
+\voffset -25.4mm
+
+\columnseprule 0pt % Width of rule between columns.
+
+% Use Michel Goossens' dense lists
+% Prevent infinite loops
+
+\let\Otemize =\itemize
+\let\Onumerate =\enumerate
+\let\Oescription =\description
+% Zero the vertical spacing parameters
+\def\Nospacing{\itemsep=0pt\topsep=0pt\partopsep=0pt\parskip=0pt\parsep=0pt}
+% Redefine the environments in terms of the original values
+\newenvironment{Itemize}{\Otemize\Nospacing}{\endlist}
+\newenvironment{Enumerate}{\Onumerate\Nospacing}{\endlist}
+\newenvironment{Description}{\Oescription\Nospacing}{\endlist}
+
+\renewcommand{\topfraction}{.95}
+\renewcommand{\bottomfraction}{.95}
+\renewcommand{\textfraction}{0.1}
+\renewcommand{\floatpagefraction}{0.8}
+
+\def\@oddhead{}\def\@evenhead{}
+\def\@oddfoot{}
+\def\@evenfoot{\@oddfoot}
+
+%-----------------------------------------------------------------------
+% We acknowledge the borrowing of the clever part of
+% Steven Gildea's definition of \section
+% from geophysi.sty.
+%
+% \section is tricky because we want to both support \section* and have
+% the section title uppercased.
+
+\def\section{\secdef\@sectionb\@sections}
+\def\@sectionb[#1]#2{\@sections{#2}}
+%\def\@sections#1{\@startsection {section}{1}{\z@} Original
+% {2.8ex plus 0.8ex minus .1ex}{1.5ex plus .2ex}
+% {\large\bf\boldmath\centering}{\uppercase{#1}}}
+\def\@sections#1{\@startsection {section}{1}{\z@} %no uppercase
+ {2.8ex plus 0.8ex minus .1ex}{1.5ex plus .2ex}
+ {\large\bf\boldmath\centering}{#1}}
+% Should there be any problem with this, we can revert to the following
+% but then the onus is on the user to type the argument of \section in
+% uppercase in the input file.
+%
+%\def\section{\@startsection {section}{1}{\z@}{2.8ex plus 0.8ex minus.1ex}
+% {1.5ex plus .2ex}{\large\bf\boldmath\centering}}
+
+\def\subsection{\@startsection{subsection}{2}{\z@}{2.6ex plus .8ex minus
+ .17ex}{1.2ex plus .17ex}{\large\it\centering}}
+\def\subsubsection{\@startsection{subsubsection}{3}{\parindent}
+ {2.5ex plus .7ex minus .17ex}{-1em}{\normalsize\bf}}
+\def\paragraph{\@startsection
+ {paragraph}{4}{\z@}{2.5ex plus .7ex minus .17ex}{-1em}{\normalsize\it}}
+\def\subparagraph{\@startsection
+ {subparagraph}{4}{\parindent}{2.25ex plus .7ex minus
+ .17ex}{-1em}{\normalsize\bf}}
+
+\setcounter{secnumdepth}{0}
+
+% This definition of \maketitle taken from article.sty, and has been
+% somewhat modified.
+
+\def\maketitle{\par
+ \begingroup
+ \def\thefootnote{\fnsymbol{footnote}}
+ \def\@makefnmark{\hbox
+ to 5pt{$^{\@thefnmark}$\hss}}
+ \twocolumn[\@maketitle]
+ \@thanks
+ \endgroup
+ \setcounter{footnote}{0}
+ \let\maketitle\relax
+ \let\@maketitle\relax
+ \gdef\@thanks{}\gdef\@author{}\gdef\@title{}\let\thanks\relax}
+
+\newlength{\titleblockheight} % so user can change it if need be
+\setlength{\titleblockheight}{3.5cm}
+
+
+\def\@maketitle{\vbox to \titleblockheight {\hsize\textwidth
+ \linewidth\hsize \vskip 3pt \centering
+ {\Large\bf \@title \par}
+ \vskip 2em % Vertical space after title.
+ {\large\begin{tabular}[t]{@{}c@{}}\@author \end{tabular}\par}
+ \vfil}}
+
+
+% The \copyrightspace command is used to produce a blank space in the first
+% column where a copyright notice may go. It works by producing a
+% blank footnote of the appropriate size. Note that it should appear
+% after any \footnote commands that produce footnotes for the first
+% column. Adjusted to leave just 1cm.
+
+\def\copyrightspace{\footnotetext[0]{\mbox{}\vrule height 1cm width 0pt}}
+
+\def\abstract{\subsection*{Abstract}}
+\def\endabstract{\par}
+
+% Redefine to use smaller fonts
+\def\thebibliography#1{\setlength{\itemsep}{0pt}\setlength{\parsep}{0pt}
+% \section*{REFERENCES\@mkboth
+ \section*{References\@mkboth %no uppercase
+% {REFERENCES}{REFERENCES}}\small\list
+ {References}{References}}\small\list %no uppercase
+ {[\arabic{enumi}]}{\settowidth\labelwidth{[#1]}\leftmargin\labelwidth
+ \advance\leftmargin\labelsep
+ \usecounter{enumi}}
+ \def\newblock{\hskip .11em plus .33em minus .07em}
+ \sloppy\clubpenalty4000\widowpenalty4000
+ \sfcode`\.=1000\relax}
+
+\let\endthebibliography=\endlist
+
+\twocolumn
+\sloppy
+\parindent 1em
+\leftmargini 2em
+\leftmargin\leftmargini
+\leftmarginv .5em
+\leftmarginvi .5em
+\flushbottom
+
+{\catcode`\%=12 \gdef\pscomment{% }}
+\special{!\pscomment DocumentClass: JACoW-GSI-2014.cls}
+
+% ****************************************
+% * authblk.sty *
+% ****************************************
+%
+%%
+%% This is file `authblk.sty',
+%% generated with the docstrip utility.
+%%
+%% The original source files were:
+%%
+%% authblk.dtx (with options: `package')
+%% =============================================
+%% IMPORTANT NOTICE:
+%%
+%% This program can be redistributed and/or modified under the terms
+%% of the LaTeX Project Public License Distributed from CTAN
+%% archives in directory macros/latex/base/lppl.txt; either
+%% version 1 of the License, or any later version.
+%%
+%% This is a generated file.
+%% It may not be distributed without the original source file authblk.dtx.
+%%
+%% Full documentation can be obtained by LaTeXing that original file.
+%% Only a few abbreviated comments remain here to describe the usage.
+%% =============================================
+%% Copyright 1997-1999 Patrick W Daly
+%% Max-Planck-Institut f\"ur Aeronomie
+%% Max-Planck-Str. 2
+%% D-37191 Katlenburg-Lindau
+%% Germany
+%% E-mail: daly@linmpi.mpg.de
+%\NeedsTeXFormat{LaTeX2e}[1995/06/01]
+%\ProvidesPackage{authblk}
+% [2001/02/27 1.3 (PWD)]
+ %-------------------------------------------------------------------
+ % NOTICE:
+ % This file may be used for non-profit purposes.
+ % It may not be distributed in exchange for money,
+ % other than distribution costs.
+ %
+ % The author provides it `as is' and does not guarantee it in any way.
+ %
+%% authblk coding copyright (C) 1997 Patrick W. Daly
+ % Max-Planck-Institut f\"ur Aeronomie
+ % Max-Planck-Str. 2
+ % D-37191 Katlenburg-Lindau
+ % Germany
+ %
+ % E-mail: daly@linmpi.mpg.de
+ %-----------------------------------------------------------
+ % Author/Affiliation Blocks
+ % A LaTeX2e package to redefine the \author command to work as normal or
+ % to allow a footnote style of author/affiliation input.
+ %
+ % Three methods of input:
+ % 1. Standard LaTeX
+ % \author{Name1//Affil1 /and Name2 and Name3//Affil2 . . .}
+ % (use \authorcr, not \\, to force new line within the author text)
+ % 2. Automatic mode (selects modes 1 or 3 depending on number of affiliations)
+ % \author{Name1}
+ % \affil{Affil1}
+ % \author{Name2}
+ % \author{Name3}
+ % \affil{Affil2}
+ % . . .
+ % 3. Footnotes explicitly
+ % \author[*]{Name1}
+ % \author[**]{Name2}
+ % \author[**]{Name3}
+ % \affil[*]{Affil1}
+ % \affil[**]{Affil2}
+ % . . .
+ % See documentation in authblk.dtx for further configuration possibilities.
+ %-----------------------------------------------------------
+%\newcommand\Authfont{\normalfont}
+\newcommand\Authfont{\itshape} % 2010 - kursiv
+\newcommand\Affilfont{\normalfont}
+\newcommand\Authsep{, }
+\newcommand\Authands{, and }
+\newcommand\Authand{ and }
+\newlength{\affilsep}\setlength{\affilsep}{1em}
+\newlength{\@affilsep}
+\newcounter{Maxaffil}
+\setcounter{Maxaffil}{2}
+%\DeclareOption{blocks}{\setcounter{Maxaffil}{\maxdimen}}
+%\DeclareOption{noblocks}{\setcounter{Maxaffil}{0}}
+%\DeclareOption{max2}{\setcounter{Maxaffil}{2}}
+%\DeclareOption{max3}{\setcounter{Maxaffil}{3}}
+%\DeclareOption{max4}{\setcounter{Maxaffil}{4}}
+%\DeclareOption{max5}{\setcounter{Maxaffil}{5}}
+%\DeclareOption{max6}{\setcounter{Maxaffil}{6}}
+%\DeclareOption{auth-sc}{\renewcommand\Authfont{\scshape}}
+%\DeclareOption{auth-sc-lg}{\renewcommand\Authfont{\large\scshape}}
+%\DeclareOption{auth-lg}{\renewcommand\Authfont{\large}}
+%\DeclareOption{affil-sl}{\renewcommand\Affilfont{\slshape}}
+%\DeclareOption{affil-it}{\renewcommand\Affilfont{\itshape}}
+%\DeclareOption{german}{\renewcommand\Authand{, und }%
+% \renewcommand\Authands{, und }}
+\ProcessOptions
+\newcounter{authors}
+\newcounter{affil}
+\newif\ifnewaffil \newaffiltrue
+\newcommand\AB@authnote[1]{\textsuperscript{\normalfont#1}}
+\newcommand\AB@affilnote[1]{\textsuperscript{\normalfont#1}}
+\providecommand\textsuperscript[1]{$^{#1}$}
+\newcommand\AB@blk@and{\protect\Authfont\protect\AB@setsep}
+\newcommand\AB@pand{\protect\and \protect\Authfont \protect\AB@setsep}
+\@namedef{@sep1}{}
+\@namedef{@sep2}{\Authand}
+\newcommand\AB@affilsep{\protect\Affilfont}
+\newcommand\AB@affilsepx{\protect\\\protect\Affilfont}
+\newcommand\AB@setsep{\setlength{\@affilsep}{\affilsep}}
+\newcommand\AB@resetsep{\setlength{\@affilsep}{\z@}}
+\newcommand\AB@authlist{}
+\newcommand\AB@affillist{}
+\newcommand\AB@authors{}
+\newcommand\AB@empty{}
+\xdef\AB@author{\noexpand\AB@blk@and\@author}
+\renewcommand\author[2][]%
+ {\ifnewaffil\addtocounter{affil}{1}%
+ \edef\AB@thenote{\arabic{affil}}\fi
+ \if\relax#1\relax\def\AB@note{\AB@thenote}\else\def\AB@note{#1}%
+ \setcounter{Maxaffil}{0}\fi
+ \ifnum\value{authors}>1\relax
+ \@namedef{@sep\number\c@authors}{\Authsep}\fi
+ \addtocounter{authors}{1}%
+ \begingroup
+ \let\protect\@unexpandable@protect \let\and\AB@pand
+ \def\thanks{\protect\thanks}\def\footnote{\protect\footnote}%
+ \@temptokena=\expandafter{\AB@authors}%
+ {\def\\{\protect\\[\@affilsep]\protect\Affilfont
+ \protect\AB@resetsep}%
+ \xdef\AB@author{\AB@blk@and#2}%
+ \ifnewaffil\gdef\AB@las{}\gdef\AB@lasx{\protect\Authand}\gdef\AB@as{}%
+ \xdef\AB@authors{\the\@temptokena\AB@blk@and}%
+ \else
+ \xdef\AB@authors{\the\@temptokena\AB@as\AB@au@str}%
+ \global\let\AB@las\AB@lasx\gdef\AB@lasx{\protect\Authands}%
+ \gdef\AB@as{\Authsep}%
+ \fi
+ \gdef\AB@au@str{#2}}%
+ \@temptokena=\expandafter{\AB@authlist}%
+ \let\\=\authorcr
+ \xdef\AB@authlist{\the\@temptokena
+ \protect\@nameuse{@sep\number\c@authors}%
+ \protect\Authfont#2\AB@authnote{\AB@note}}%
+ \endgroup
+ \ifnum\value{authors}>2\relax
+ \@namedef{@sep\number\c@authors}{\Authands}\fi
+ \newaffilfalse
+}
+\newcommand\authorcr{\protect\\ \protect\Authfont \protect\AB@setsep}%
+\newcommand\affil[2][]%
+ {\newaffiltrue\let\AB@blk@and\AB@pand
+ \if\relax#1\relax\def\AB@note{\AB@thenote}\else\def\AB@note{#1}%
+ \setcounter{Maxaffil}{0}\fi
+ \begingroup
+ \let\protect\@unexpandable@protect
+ \def\thanks{\protect\thanks}\def\footnote{\protect\footnote}%
+ \@temptokena=\expandafter{\AB@authors}%
+ {\def\\{\protect\\\protect\Affilfont}\xdef\AB@temp{#2}}%
+ \xdef\AB@authors{\the\@temptokena\AB@las\AB@au@str
+ \protect\\[\affilsep]
+ \protect\Affilfont\AB@temp}%
+ \gdef\AB@las{}\gdef\AB@au@str{}%
+ {\def\\{, \ignorespaces}\xdef\AB@temp{#2}}%
+ \@temptokena=\expandafter{\AB@affillist}%
+ \xdef\AB@affillist{\the\@temptokena \AB@affilsep
+ \AB@affilnote{\AB@note}\protect\Affilfont\AB@temp}%
+ \endgroup
+ \let\AB@affilsep\AB@affilsepx
+}
+\def\@author{}
+\renewcommand\@author{\ifx\AB@affillist\AB@empty\AB@author\else
+ \ifnum\value{affil}>\value{Maxaffil}\def\rlap##1{##1}%
+ \AB@authlist\\[\affilsep]\AB@affillist
+ \else \AB@authors\fi\fi}
+\let\AB@maketitle=\maketitle
+\def\maketitle
+ {{\renewenvironment{tabular}[2][]{\begin{center}}
+ {\end{center}}
+ \AB@maketitle}}
+%%
+%% <<<<< End of generated file <<<<<<
+%%
+%% End of file `authblk.sty'.
+% ****************************************
+% * GSI-Anpassungen für authblk.sty *
+% ****************************************
+%
+\renewcommand\Affilfont{\normalfont\fontsize{10}{12}\selectfont} %2010
+\renewcommand\AB@affilsepx{; \protect\ \protect\Affilfont}
+\setcounter{Maxaffil}{1}
+\setlength{\affilsep}{0.3em}
+\ExecuteOptions{aca4} %2010
+%\boldmath
+
+%-----------------------------------------------------------------------
--- /dev/null
+\documentclass{JACoW-GSI-2014}
+\usepackage{graphicx}
+% forbitten: \usepackage{url}
+\usepackage[utf8]{inputenc}
+\usepackage{amsmath}
+\usepackage{amssymb}
+%% GSI Scientific Report 2013
+%% \setlength{\titleblockheight}{27mm} KG
+\setlength{\titleblockheight}{35mm}
+
+\begin{document}
+\title{Update of the CBM MVD simulation model\thanks{Work supported by BMBF (05P12RFFC7), EU-FP7 HardronPhysics3, HIC for FAIR and GSI}}
+
+\author[1]{S. Amar-Youcef}
+\author[1]{E. Krebs}
+\author[1]{B. Linnik}
+\author[1]{B. Milanovic}
+\author[1]{Ph. Sitzmann}
+\author[1]{T. Tischler}
+\author[1,2]{J. Stroth}
+
+\affil[1]{Goethe-Universität, Frankfurt, Germany}
+\affil[2]{GSI, Darmstadt, Germany}
+
+\maketitle
+
+%{\bfseries Just replace the content of this template with your own text and delete not used parts of the template text.}
+
+The MVD simulation model is subject to a major revision.
+Although this process is not fully completed, considerable progress has been achieved.
+In the following its motivation and progress are discussed.
+
+\vspace{-2.mm}
+\section{Motivation}
+Due to its proximity to the target and its excellent spatial resolution the MVD is the dedicated detector to resolve secundary vertices and to assist in the di-electron background suppression.
+However, the primal implementation lacked in a realistic description (with respect to e.g. the material budget or peculiar sensor features) for advanced studies.
+These studies are needed to develop strategies to achieve best performances, to analyze critical points and to finalize the concept of the MVD and its tools.
+
+The revision of the MVD model, to be incorporated to the CbmRoot simulation framework, attends to this and aims at a more realistic description of the current understanding of the MVD. % of the MVD.
+Before, in the standard scenario, the MVD was simplified as two homogeneous discs at 5\,cm and 10\,cm downstream the target, with an outer (inner) radius of 2.5\,cm (0.5\,cm) and 5\,cm (0.5\,cm), respectively.
+As no representation of individual sensors was made, this simplification involved many limitations.
+
+\vspace{-2.mm}
+\section{Approach}
+The new approach addresses this issue.
+Based on the MIMOSIS sensor characteristics, a detailed geometry with four stations (at 5\,cm, 10\,cm, 15\,cm and 20\,cm downstream the target) including all relevant features was elaborated in CAD.
+The conversion from the respective description into the ROOT geometry format was conducted by a dedicated tool.
+In this way we are able to respond very quickly to changes in the detector design.
+
+Along with the proper representation of the gradual material budget, a new possibility of data processing is provided, as hits can be assigned to sensors now.
+In this process the data processing chain was adapted, the digitizer, clusterfinder and hitfinder working on sensor level.
+For each data processing step Monte Carlo hits, firing pixels or clusters of firing pixels are passed to the respective sensor station by station.
+
+In this regard firing pixels are particularly important, as they describe the response of the sensor to impinging hits mimicked by the digitizer.
+Apart from the generated signal of single hits the interference among hits is important to consider.
+Hits from consecutive events might pile-up and/or neighboring hits merge.
+This is particularly true due the long integration time of one frame.
+These features require the representation of the sensors rolling shutter frame read-out and a definition of the temporal sequence of the recorded hits accordingly.
+This allows moreover to represent further properties as busy circuits\footnote{Due to the given read-out time of one frame, the processing and output time of firing pixels in the on-chip zero suppression logic is constrained. This is limiting the bandwidth and hence possible pixel multiplicities in one frame.} and time stamping of hits in its native way.
+These considerations correspond to the time-based (4d) reconstruction and poses a challenge to the tracking telling the events apart.
+
+In oder to verify the perfomance in the reconstruction (e.g. tracking) matching of all data states is incorporated.
+The time-based consideration is a necessary condition to use the reconstruction software with real data, too.
+Here the sensor parallel data processing discussed above provides a useful approach to speed up time critical processes as cluster- and hitfinding.
+
+All geometry information are accessible via the 'geo\-handler'.
+For the tracking a simplified representation of the material budget is provided in the form of a map.
+
+In order to study the impact of misalignment the position of the individual sensors can be modified within simulation.
+
+\vspace{-2.mm}
+\section{Status}
+The new MVD geometry and data processing has been incorporated and submitted to CbmRoot.
+All functionality has been re-established and can be used within the event-based reconstruction.
+Due to constraints on the part of CbmRoot, the time-based reconstruction is not fully available for the time being.
+Likewise the MVD model does not yet comprise all the details.
+However, all preparations necessary has completed.
+The pile-up of events can be studied via background events
+Moreover, further details related to the performance of the sensor (as e.g. altering with the integrated radiation dose, noisy pixels, different pixel geometries) have not yet been treated.
+
+The current implementation of the simulation is supposed to be in a very good condition to generate robust results needed for the TDR.
+%\section{Results}
+%\section{Summary}
+
+\begin{thebibliography}{1} % Use for 1-9 references
+%\begin{thebibliography}{99} % Use for 10-99 references
+
+\bibitem{}
+Philipp Sitzmann, "Integration eines sensorbasierten Detektorresponsemodells", Master-thesis 2015
+
+
+
+\end{thebibliography}
+
+\clearpage
+
+
+You are invited to submit a contribution to the GSI Scientific Report 2014 which will appear early in 2015 on the GSI web sites.
+
+The use of the LaTeX style file and template, which you will find under the following link
+http://indico.gsi.de/event/sr-2014, is mandatory and the style file must not be changed.
+Any other file formats cannot be accepted. Please, do not insert other latex packages into the template or define own commands.
+
+Each submitter should upload a zip file with her or his SR-GSI-2014.tex file, all eps(!)-figures, and if available the Postscript or PDF file. For questions please contact (sr-2014@gsi.de or +496159 71-2610).
+
+Thank you for supporting the GSI Scientific Report!
+
+\subsection{Author list}
+The name of the submitting or primary author should be first,
+followed by the co-authors, alphabetically by affiliation. Please use the
+predefined commands 'authors' and 'affil'. In case of a contribution for a collaboration
+you have to give at least one person name as contact followed by the collaboration name entry.
+If you have a very long title or authors' list, you can changed the length titleblockheight.
+
+\subsection{Section headings}
+Section headings should not be numbered.
+
+\subsection{Paragraph text}
+Paragraphs ...
+
+\subsection{Equations}
+If a displayed equation needs a number, place it flush with the right margin of the column
+(see ~\ref{eq:units}). Units should be written using the roman font, not the italic font.
+
+\begin{equation}\label{eq:units}
+C_B={q^3\frac 3\epsilon_{0} mc}=3.54\,\hbox{$\mu$eV/T}
+\end{equation}
+
+\begin{figure}[htb]
+\centering
+%\includegraphics*[width=65mm]{gsisr1}
+% \includegraphics*[width=82mm]{gsisr1} % NO image path is allowed % only EPS images
+\caption{My example picture.}
+\label{l2ea4-f1}
+\end{figure}
+
+\begin{figure*}[tb]
+\centering
+%\includegraphics*[width=145mm]{gsisr2}
+% \includegraphics*[width=170mm]{gsisr2}
+\caption{Image two displayed as full-width figure.} % NO image path is allowed % only EPS images
+\label{l2ea4-f2}
+\end{figure*}
+
+\subsection{Information to figures}
+In the case of the articles are printed in black and white your related text should
+be still understandable without any colour information. E. g. use instead of "the red curve"
+use the term "the dashed curve".
+
+The resolution of your eps figures should be about 300 DPI, and your eps figures
+should also be printable in an acceptable time for the Internet version.
+
+\subsection{References}
+All bibliographical and web references should be numbered and listed at the end of the
+paper. When referring to a reference in the text, place the corresponding
+reference number in square brackets [3]. Do not use bibliographies etc. No linked link are allowed in the references.
+
+\subsection{Footnotes}
+
+Footnotes on the title and author lines may be used for acknowledgements,
+grant information, affiliations and e-mail addresses. A nonnumeric sequence of characters
+(*, \dag, \ddag, \S) should be used. All other footnotes should be included in
+the reference section and use the normal numeric sequencing.
+
+\section{Page numbers}
+
+\textbf{DO NOT include any page numbers.} The editorial staff will add them
+when they produce the final proceedings.
+
+\section{Checklist for electronic publication}
+
+\begin{Itemize}
+\item Check if all template text is exchanged with your own text.
+\item Check the upper and lower cases in your headings.
+\item Check you do not used linked links.
+\item All images are in the eps format.
+\item Use only the fonts of this template and Symbol fonts for
+ text - 10 pt minimum.
+\item Text in figures should also be in the fonts of this template and
+ Symbol fonts whenever possible - 6pt minimum.
+\item Check that there are no page numbers.
+\item Check the size of all your files - an average size should be about
+ 800--2000 KByte. If the file size is over 4~MByte, you have to make it
+ smaller.
+\end{Itemize}
+
+\begin{thebibliography}{9} % Use for 1-9 references
+%\begin{thebibliography}{99} % Use for 10-99 references
+
+\bibitem{}
+C. Petit-Jean-Genaz and J. Poole, ``JACoW, A service to the Accelerator Community'',
+EPAC'04, July 2004, Lucerne, p.~249, http://www.JACoW.org [Be aware: linked links are NOT allowed!]
+
+\bibitem{}
+A. Name and the XY collaboration, ``Contibution of last year'', GSI Scientific Report 2012
+(2013) 56
+
+\bibitem{}
+A.N. Other, ``A Very Interesting Paper'', EPAC'96, Sitges, June 1996, p. 7984
+
+
+\end{thebibliography}
+
+
+\end{document}
+