Skip to content

Commit 36c5252

Browse files
committed
Fix last remnants of camel case naming
1 parent edc3364 commit 36c5252

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

doc/usermanual/appendices/design_notes.tex

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ \subsection{Setup}
3939
Finally the implementation provides a executable which integrates the core, messages and tools together with the command-line handling into a single process.
4040

4141
\subsection{Core}
42-
The core is structured around one main object (AllPix) and a set of managers. Besides this it contains a few utilities for logging, some string operations and a set of exceptions that could happen during the execution of a single event. A manager is an unique object bound to AllPix that should not be copyable. The set of managers and their uses follows hereafter.
42+
The core is structured around one main object (Allpix) and a set of managers. Besides this it contains a few utilities for logging, some string operations and a set of exceptions that could happen during the execution of a single event. A manager is an unique object bound to Allpix that should not be copyable. The set of managers and their uses follows hereafter.
4343

4444
\begin{enumerate}
4545
\item \textbf{ConfigManager}: Loads the main configuration files and provides a set of configurations (sections) that should be converted to a set of instantiations later. The config manager should be able to provide the set of configurations in the order as they are defined in the configuration file and also allow to fetch a configuration by header. The structure of the current configuration is inspired by a simple version of \href{https://github.com/toml-lang/toml}{TOML}. The most important rules are:

doc/usermanual/chapters/getting_started.tex

+3-3
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ \subsubsection{Main configuration}
124124
All modules are executed in the \emph{linear} order in which they are defined.
125125
There are a few section names which have a special meaning in the main configuration, namely the following:
126126
\begin{itemize}
127-
\item The \textbf{global} (framework) header sections: These are all zero-length section headers (including the one at the beginning of the file) and all sections marked with the header \texttt{[AllPix]} (case-sensitive).
127+
\item The \textbf{global} (framework) header sections: These are all zero-length section headers (including the one at the beginning of the file) and all sections marked with the header \texttt{[Allpix]} (case-insensitive).
128128
These are combined and accessed together as the global configuration, which contain all parameters of the framework itself (see Section~\ref{sec:framework_parameters} for details).
129129
All key-value pairs defined in this section are also inherited by all individual configurations as long the key is not defined in the module configuration itself.
130130
\item The \textbf{ignore} header sections: All sections with name \texttt{[Ignore]} are ignored.
@@ -159,8 +159,8 @@ \subsubsection{Main configuration}
159159
string_value = "example1"
160160
# The location of the detector configuration is a global parameter
161161
detectors_file = "manual_detector.conf"
162-
# The AllPix section is also considered global and merged with the above
163-
[AllPix]
162+
# The Allpix section is also considered global and merged with the above
163+
[Allpix]
164164
another_random_string = "example2"
165165

166166
# First run a unique module

test/check.conf

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[AllPix]
1+
[Allpix]
22
random_seed = 123456789
33
log_level = "STATUS"
44
number_of_events = 75
@@ -27,7 +27,7 @@ charge_per_step = 50
2727
[SimpleTransfer]
2828
name = "dut"
2929
log_level = "INFO"
30-
max_depth_distance = 5um
30+
max_depth_distance = 5um
3131

3232
[DefaultDigitizer]
3333
name = "dut"

0 commit comments

Comments
 (0)