Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cbmroot
Manage
Activity
Members
Labels
Plan
Wiki
Redmine
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Computing
cbmroot
Commits
404d4635
Commit
404d4635
authored
1 year ago
by
Felix Weiglhofer
Browse files
Options
Downloads
Patches
Plain Diff
algo::Options: Enable more detectors by default.
parent
4d73a9c9
No related branches found
No related tags found
1 merge request
!1248
cbmreco: Monitor unpacking.
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
algo/base/Options.cxx
+3
-1
3 additions, 1 deletion
algo/base/Options.cxx
with
3 additions
and
1 deletion
algo/base/Options.cxx
+
3
−
1
View file @
404d4635
...
@@ -12,6 +12,8 @@
...
@@ -12,6 +12,8 @@
using
namespace
cbm
::
algo
;
using
namespace
cbm
::
algo
;
namespace
po
=
boost
::
program_options
;
namespace
po
=
boost
::
program_options
;
using
fles
::
Subsystem
;
namespace
std
namespace
std
{
{
...
@@ -75,7 +77,7 @@ Options::Options(int argc, char** argv)
...
@@ -75,7 +77,7 @@ Options::Options(int argc, char** argv)
"comma seperated list of reconstruction output types (hit, digi, ...)"
)
"comma seperated list of reconstruction output types (hit, digi, ...)"
)
(
"steps"
,
po
::
value
(
&
fRecoSteps
)
->
multitoken
()
->
default_value
({
Step
::
Unpack
,
Step
::
LocalReco
})
->
value_name
(
"<steps>"
),
(
"steps"
,
po
::
value
(
&
fRecoSteps
)
->
multitoken
()
->
default_value
({
Step
::
Unpack
,
Step
::
LocalReco
})
->
value_name
(
"<steps>"
),
"comma seperated list of reconstruction steps (upack, digitrigger, localreco, ...)"
)
"comma seperated list of reconstruction steps (upack, digitrigger, localreco, ...)"
)
(
"systems,s"
,
po
::
value
(
&
fDetectors
)
->
multitoken
()
->
default_value
({
fles
::
Subsystem
::
STS
,
fles
::
Subsystem
::
TOF
,
fles
::
Subsystem
::
BMON
})
->
value_name
(
"<detectors>"
),
(
"systems,s"
,
po
::
value
(
&
fDetectors
)
->
multitoken
()
->
default_value
({
Subsystem
::
STS
,
Subsystem
::
TOF
,
Subsystem
::
BMON
,
Subsystem
::
MUCH
,
Subsystem
::
RICH
})
->
value_name
(
"<detectors>"
),
"comma seperated list of detectors to process (sts, mvd, ...)"
)
"comma seperated list of detectors to process (sts, mvd, ...)"
)
(
"num-ts,n"
,
po
::
value
(
&
fNumTimeslices
)
->
default_value
(
-
1
)
->
value_name
(
"<num>"
),
(
"num-ts,n"
,
po
::
value
(
&
fNumTimeslices
)
->
default_value
(
-
1
)
->
value_name
(
"<num>"
),
"Stop after <num> timeslices (-1 = all)"
)
"Stop after <num> timeslices (-1 = all)"
)
...
...
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