Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
acts-framework
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Gabriel Farrugia
acts-framework
Commits
858dd11a
Commit
858dd11a
authored
7 years ago
by
jhrdinka
Browse files
Options
Downloads
Patches
Plain Diff
Remove distinction of default set value and user set value
parent
7dc6631d
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Core/include/ACTFW/Framework/StandardOptions.hpp
+1
-6
1 addition, 6 deletions
Core/include/ACTFW/Framework/StandardOptions.hpp
Plugins/DD4hep/include/ACTFW/Plugins/DD4hep/DD4hepDetectorOptions.hpp
+2
-8
2 additions, 8 deletions
...ep/include/ACTFW/Plugins/DD4hep/DD4hepDetectorOptions.hpp
with
3 additions
and
14 deletions
Core/include/ACTFW/Framework/StandardOptions.hpp
+
1
−
6
View file @
858dd11a
...
...
@@ -44,12 +44,7 @@ namespace Options {
{
size_t
nEvents
=
vm
[
"events"
].
template
as
<
size_t
>();
if
(
vm
.
count
(
"events"
))
{
nEvents
=
vm
[
"events"
].
template
as
<
size_t
>();
std
::
cout
<<
"- running "
<<
nEvents
<<
" events "
<<
std
::
endl
;
}
else
{
std
::
cout
<<
"- using standard number of events "
<<
nEvents
<<
std
::
endl
;
}
std
::
cout
<<
"- running "
<<
nEvents
<<
" events "
<<
std
::
endl
;
Acts
::
Logging
::
Level
logLevel
=
Acts
::
Logging
::
Level
(
vm
[
"loglevel"
].
template
as
<
size_t
>());
if
(
vm
.
count
(
"loglevel"
))
{
...
...
This diff is collapsed.
Click to expand it.
Plugins/DD4hep/include/ACTFW/Plugins/DD4hep/DD4hepDetectorOptions.hpp
+
2
−
8
View file @
858dd11a
...
...
@@ -57,14 +57,8 @@ namespace Options {
{
Acts
::
Logging
::
Level
logLevel
=
Acts
::
Logging
::
Level
(
vm
[
"dd4hep-loglevel"
].
template
as
<
size_t
>());
if
(
vm
.
count
(
"dd4hep-loglevel"
))
{
logLevel
=
Acts
::
Logging
::
Level
(
vm
[
"dd4hep-loglevel"
].
template
as
<
size_t
>());
std
::
cout
<<
"- the geometry building output log level is set to "
<<
logLevel
<<
std
::
endl
;
}
else
{
std
::
cout
<<
"- default log level is "
<<
logLevel
<<
std
::
endl
;
}
std
::
cout
<<
"- the geometry building output log level is set to "
<<
logLevel
<<
std
::
endl
;
// DETECTOR configuration:
// --------------------------------------------------------------------------------
FW
::
DD4hep
::
GeometryService
::
Config
gsConfig
(
"GeometryService"
,
logLevel
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment