forked from root-project/root
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTMVAUsersGuide.tex
More file actions
176 lines (166 loc) · 3.88 KB
/
Copy pathTMVAUsersGuide.tex
File metadata and controls
176 lines (166 loc) · 3.88 KB
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
\documentclass[11pt,twoside]{myArticle} % CUSTOMIZED (!) article
%
% use PDFLatex
%
\pdfoutput=1
\usepackage{amsmath,amssymb,amsfonts} % Typical maths resource packages
\usepackage{graphicx}
\usepackage{epsfig}
\usepackage{color} % For creating coloured text and background
\usepackage[bookmarksnumbered]{hyperref} % For creating hyperlinks in cross references
\usepackage{myFancyhdr} % CUSTOMIZED (!) fancy headers and footer
\usepackage{makeidx} % Package for indexing
\usepackage{helvet} % For sans-serif mode
\usepackage{setspace} % Allows to customize line distances
\usepackage{fancybox} % For code example and option boxes
\usepackage{float} % Floating objects
\usepackage{xspace} % ...
\usepackage{wasysym} % permille sign
\usepackage[numbers,sort&compress]{natbib}
\usepackage{hypernat}
\usepackage{subfigure}
\usepackage{rotating} % for sideways tables/figures
% \usepackage{times}
%
% define TMVA and document versions ==========================================
% \newcommand\TMVAVersion{4.2.0\xspace}
\newcommand\TMVAVersion{4.3.0 for ROOT \textgreater= 6.12/00\xspace}
% ============================================================================
%
% setup colors (requires usepackage{color}
%
\definecolor{darkblue1}{rgb}{0,0,.7}
\definecolor{darkblue}{rgb}{0,0,.3}
\definecolor{darkred}{rgb}{0.5,0,0}
\pagecolor{white} % Background color
\color{black} % Text color
%
% setup hyper links
%
\hypersetup{breaklinks=true,
colorlinks=true,
linkcolor=darkblue1,
menucolor=darkblue1,
urlcolor=darkblue1,
citecolor=darkblue1,
pdftitle={TMVA - Users Guide},
pdfauthor={TMVA},
pdfsubject={TMVA - Users Guide},
pdfkeywords={},
pdfproducer={TMVA}
}
%
% setup page margins and style
%
\parsep 20ex
\parskip 0.04cm
\topmargin -0.5cm
\oddsidemargin -0.1cm
\evensidemargin -0.1cm
\textwidth 16.6cm
\textheight 21.5cm
\parindent 0cm % no indentation throughout document
%
% setup natbib
%
\bibstyle{plain}
%
% ------------ include custom definitions
%
\input TMVAdef
%
% create index
%
\makeindex
%
% Forces the page to use the fancy template
%
\pagestyle{fancy}
%
% line gap between paragraphs
%
\parindent 0cm % no indentation throughout document
\parskip 1.6ex
% ============================================================================
\begin{document}
% ============================================================================
%
% ------------ title
%
\input Title
%
% ------------ contents, figures, tables
%
\pagenumbering{roman}
\setcounter{tocdepth}{3}
\addtolength{\parskip}{-0.40\baselineskip}
{\footnotesize\sl
\twocolumn
\tableofcontents
\onecolumn
}
\addtolength{\parskip}{0.40\baselineskip}
% \listoffigures
% \listoftables
\newpage
\pagenumbering{arabic}
%
% ------------ introduction
%
\input Introduction
%
% ------------ technicalities
%
\input UsingTMVAQuickStart
\input UsingTMVA
\clearpage
%\vfill\pagebreak
\input DataPreprocessing
\input CommonTools
%\vfill\pagebreak
\clearpage
%
% ------------ MVA methods
%
\input MethodsIntro
%
\input Cuts
\input Likelihood
\input PDERS
\input PDEFoam
\input KNN
\input HMatrix
\input Fisher
\input LD
\input FDA
\input MLPs
\input SVM
\input BDTs
\input RuleFit
% ------------ PyMVA
\input PyMVAIntro
\input Keras
% ------------ combining
\input Combining
%
% ------------ conclusions
%
\input Conclusions
%
% ------------ references
%
\newpage
\input Appendix
%
% ------------ references
%
\newpage
\input Bibliography
%
% ------------ print and include index
%
\addcontentsline{toc}{section}{Index}
\printindex
% ============================================================================
\end{document}
% ============================================================================