-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
133 lines (120 loc) · 4.87 KB
/
main.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
%%%%%%%%%%%%%%%%%%%%%%% file template.tex %%%%%%%%%%%%%%%%%%%%%%%%%
%
% This is a template file for Web of Conferences Journal
%
% Copy it to a new file with a new name and use it as the basis
% for your article
%
%%%%%%%%%%%%%%%%%%%%%%%%%% EDP Science %%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
%%%\documentclass[option]{webofc}
%%% "twocolumn" for typesetting an article in two columns format (default one column)
%
\documentclass{webofc}
\usepackage[varg]{txfonts} % Web of Conferences font
%
% Put here some packages required or/and some personnal commands
%
%
\begin{document}
%
\title{Recent Improvements to the ATLAS Data Quality Monitoring System}
%
% subtitle is optionnal
%
%%%\subtitle{Do you have a subtitle?\\ If so, write it here}
\author{\firstname{Peter} \lastname{Onyisi}\inst{1}\fnsep\thanks{\email{Mail address for first
author}} \and
\firstname{Charles} \lastname{Burton}\inst{1} \and
\firstname{Third} \lastname{Author}\inst{3}
% etc.
}
\institute{University of Texas at Austin
\and
the second here
}
\abstract{%
Insert your english abstract here.
}
%
\maketitle
%
\section{Introduction}
\label{intro}
During the second Long Shutdown (LS2) of the Large Hadron Collider (LHC), the ATLAS experiment has updated various aspects of its offline data quality monitoring software. This paper reviews key changes that have been implemented, with a focus on tools and techniques with potential impact outside of the ATLAS collaboration.
\section{Multithreaded Histogramming in Reconstruction}
\section{Histogram Postprocessing}
It is frequently necessary to perform a processing step on a collected histogram in order to compute a desired result (for example, computing the mean of position residuals to detect problems with detector alignment). To enable multithread-safe filling of histograms, we require that histogram handling in reconstruction software consists entirely of accumulation operations. This implies that merging of histograms is a straightforward operation which merely adds bin contents, and that the order in which events are processed is irrelevant to the final histogram that is produced. It is not in general possible to merge histograms resulting from postprocessing this way. In other contexts this is part of the \textit{map-reduce} paradigm, in which the map step is the collection of the input histograms and the reduction is the production of the postprocessed histograms. In the new histogramming paradigm only the map step is compatible with running directly in reconstruction.
The Run 2 software did include the capacity to run arbitrary C++ ROOT or PyROOT code on histogram files, but did not provide any services
\section{User Presentation}
\section{Data Quality Result Storage}
\label{sec-1}
For bibliography use \cite{RefJ}
\subsection{Subsection title}
\label{sec-2}
Don't forget to give each section, subsection, subsubsection, and
paragraph a unique label (see Sect.~\ref{sec-1}).
For one-column wide figures use syntax of figure~\ref{fig-1}
\begin{figure}[h]
% Use the relevant command for your figure-insertion program
% to insert the figure file.
\centering
\includegraphics[width=1cm,clip]{tiger}
\caption{Please write your figure caption here}
\label{fig-1} % Give a unique label
\end{figure}
For two-column wide figures use syntax of figure~\ref{fig-2}
\begin{figure*}
\centering
% Use the relevant command for your figure-insertion program
% to insert the figure file. See example above.
% If not, use
\vspace*{5cm} % Give the correct figure height in cm
\caption{Please write your figure caption here}
\label{fig-2} % Give a unique label
\end{figure*}
For figure with sidecaption legend use syntax of figure
\begin{figure}
% Use the relevant command for your figure-insertion program
% to insert the figure file.
\centering
\sidecaption
\includegraphics[width=5cm,clip]{tiger}
\caption{Please write your figure caption here}
\label{fig-3} % Give a unique label
\end{figure}
For tables use syntax in table~\ref{tab-1}.
\begin{table}
\centering
\caption{Please write your table caption here}
\label{tab-1} % Give a unique label
% For LaTeX tables you can use
\begin{tabular}{lll}
\hline
first & second & third \\\hline
number & number & number \\
number & number & number \\\hline
\end{tabular}
% Or use
\vspace*{5cm} % with the correct table height
\end{table}
%
% BibTeX or Biber users please use (the style is already called in the class, ensure that the "woc.bst" style is in your local directory)
% \bibliography{name or your bibliography database}
%
% Non-BibTeX users please use
%
\begin{thebibliography}{}
%
% and use \bibitem to create references.
%
\bibitem{RefJ}
% Format for Journal Reference
Journal Author, Journal \textbf{Volume}, page numbers (year)
% Format for books
\bibitem{RefB}
Book Author, \textit{Book title} (Publisher, place, year) page numbers
% etc
\end{thebibliography}
\end{document}
% end of file template.tex