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
b7253ffe
Commit
b7253ffe
authored
1 year ago
by
Felix Weiglhofer
Browse files
Options
Downloads
Patches
Plain Diff
Fix compilation on Mac OS.
parent
7e3e6adf
No related branches found
No related tags found
1 merge request
!1161
algo: Update STS GPU Reco
Pipeline
#22472
passed
1 year ago
Stage: build
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
algo/base/util/TimingsFormat.cxx
+1
-1
1 addition, 1 deletion
algo/base/util/TimingsFormat.cxx
algo/data/sts/LandauTable.cxx
+1
-1
1 addition, 1 deletion
algo/data/sts/LandauTable.cxx
algo/global/Reco.cxx
+1
-1
1 addition, 1 deletion
algo/global/Reco.cxx
with
3 additions
and
3 deletions
algo/base/util/TimingsFormat.cxx
+
1
−
1
View file @
b7253ffe
...
@@ -18,7 +18,7 @@ namespace cbm::algo
...
@@ -18,7 +18,7 @@ namespace cbm::algo
void
Begin
(
size_t
align
)
void
Begin
(
size_t
align
)
{
{
fAlign
=
align
;
fAlign
=
align
;
fSS
=
{}
;
fSS
=
std
::
stringstream
()
;
}
}
void
Title
(
std
::
string_view
title
)
{
fSS
<<
fmt
::
format
(
"{:<{}}
\n
"
,
title
,
fAlign
);
}
void
Title
(
std
::
string_view
title
)
{
fSS
<<
fmt
::
format
(
"{:<{}}
\n
"
,
title
,
fAlign
);
}
...
...
This diff is collapsed.
Click to expand it.
algo/data/sts/LandauTable.cxx
+
1
−
1
View file @
b7253ffe
...
@@ -15,7 +15,7 @@ sts::LandauTable sts::LandauTable::FromFile(fs::path path)
...
@@ -15,7 +15,7 @@ sts::LandauTable sts::LandauTable::FromFile(fs::path path)
std
::
vector
<
f32
>
charge
;
std
::
vector
<
f32
>
charge
;
std
::
vector
<
f32
>
prob
;
std
::
vector
<
f32
>
prob
;
std
::
ifstream
file
(
path
);
std
::
ifstream
file
(
path
.
string
()
);
while
(
!
file
.
eof
())
{
while
(
!
file
.
eof
())
{
...
...
This diff is collapsed.
Click to expand it.
algo/global/Reco.cxx
+
1
−
1
View file @
b7253ffe
...
@@ -26,7 +26,7 @@ void Reco::Init(const Options& opts)
...
@@ -26,7 +26,7 @@ void Reco::Init(const Options& opts)
LOG
(
info
)
<<
"Running CBM Reco on Device "
<<
props
.
name
();
LOG
(
info
)
<<
"Running CBM Reco on Device "
<<
props
.
name
();
// Reco Params
// Reco Params
fs
::
path
recoParamsPath
=
opts
.
ParamsDir
()
/
"Reco.yaml"
;
fs
::
path
recoParamsPath
=
opts
.
ParamsDir
()
/
"Reco
Params
.yaml"
;
YAML
::
Node
yaml
=
YAML
::
LoadFile
(
recoParamsPath
.
string
());
YAML
::
Node
yaml
=
YAML
::
LoadFile
(
recoParamsPath
.
string
());
fContext
.
recoParams
=
config
::
Read
<
RecoParams
>
(
yaml
);
fContext
.
recoParams
=
config
::
Read
<
RecoParams
>
(
yaml
);
...
...
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