Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Corryvreckan
Corryvreckan
Commits
83c53a20
Commit
83c53a20
authored
Apr 16, 2018
by
Simon Spannagel
Browse files
Correct the header of a few files
parent
0bcd09aa
Pipeline
#358793
failed with stages
in 2 minutes and 45 seconds
Changes
7
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/core/Analysis.cpp
View file @
83c53a20
...
...
@@ -145,8 +145,7 @@ void Analysis::load_modules() {
LOG
(
DEBUG
)
<<
"Start loading modules, have "
<<
configs
.
size
()
<<
" configurations."
;
// Loop through all non-global configurations
for
(
auto
&
config
:
configs
)
{
// Load library for each module. Libraries are named (by convention + CMAKE)
// libAllpixModule Name.suffix
// Load library for each module. Libraries are named (by convention + CMAKE libCorryvreckanModule Name.suffix
std
::
string
lib_name
=
std
::
string
(
CORRYVRECKAN_MODULE_PREFIX
).
append
(
config
.
getName
()).
append
(
SHARED_LIBRARY_SUFFIX
);
LOG_PROGRESS
(
STATUS
,
"LOAD_LOOP"
)
<<
"Loading module "
<<
config
.
getName
();
...
...
src/core/Analysis.h
→
src/core/Analysis.h
pp
View file @
83c53a20
File moved
src/core/clipboard/Clipboard.hpp
View file @
83c53a20
/**
* @file
* @brief Store objects for exachange between modules on the clipboard
* @copyright Copyright (c) 2017 CERN and the
Allpix Squared
authors.
* @copyright Copyright (c) 2017 CERN and the
Corryvreckan
authors.
* This software is distributed under the terms of the MIT License, copied verbatim in the file "LICENSE.md".
* In applying this license, CERN does not waive the privileges and immunities granted to it by virtue of its status as an
* Intergovernmental Organization or submit itself to any jurisdiction.
...
...
src/core/clipboard/exceptions.h
View file @
83c53a20
...
...
@@ -2,7 +2,7 @@
* @file
* @brief Collection of all configuration exceptions
*
* @copyright Copyright (c) 2017 CERN and the
Allpix Squared
authors.
* @copyright Copyright (c) 2017 CERN and the
Corryvreckan
authors.
* This software is distributed under the terms of the MIT License, copied verbatim in the file "LICENSE.md".
* In applying this license, CERN does not waive the privileges and immunities granted to it by virtue of its status as an
* Intergovernmental Organization or submit itself to any jurisdiction.
...
...
src/core/module/exceptions.h
View file @
83c53a20
...
...
@@ -2,7 +2,7 @@
* @file
* @brief Collection of all module exceptions
*
* @copyright Copyright (c) 2017 CERN and the
Allpix
Squared authors.
* @copyright Copyright (c) 2017 CERN and the
Corryvreckan
Squared authors.
* This software is distributed under the terms of the MIT License, copied verbatim in the file "LICENSE.md".
* In applying this license, CERN does not waive the privileges and immunities granted to it by virtue of its status as an
* Intergovernmental Organization or submit itself to any jurisdiction.
...
...
src/exec/corry.cpp
View file @
83c53a20
...
...
@@ -144,7 +144,7 @@ int main(int argc, const char* argv[]) {
}
try
{
// Construct main
Allpix
object
// Construct main
Corryvreckan
object
corry
=
std
::
make_unique
<
Analysis
>
(
config_file_name
,
options
);
cv_ready
=
true
;
...
...
src/objects/Object.hpp
View file @
83c53a20
/**
* @file
* @brief Definition of Object base class
* @copyright Copyright (c) 2017 CERN and the
Allpix Squared
authors.
* @copyright Copyright (c) 2017 CERN and the
Corryvreckan
authors.
* This software is distributed under the terms of the MIT License, copied verbatim in the file "LICENSE.md".
* In applying this license, CERN does not waive the privileges and immunities granted to it by virtue of its status as an
* Intergovernmental Organization or submit itself to any jurisdiction.
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment