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
a9270b43
Commit
a9270b43
authored
Jul 05, 2018
by
Simon Spannagel
Browse files
Analysis: only print time when available
parent
05f0b6a0
Pipeline
#480320
passed with stages
in 3 minutes and 50 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
src/core/Analysis.cpp
View file @
a9270b43
...
...
@@ -415,8 +415,10 @@ void Analysis::run() {
events_prev
=
m_events
;
LOG_PROGRESS
(
STATUS
,
"event_loop"
)
<<
"Ev: +"
<<
m_events
<<
"
\\
"
<<
skipped
<<
" Tr: "
<<
m_tracks
<<
" ("
<<
std
::
setprecision
(
3
)
<<
((
double
)
m_tracks
/
m_events
)
<<
"/ev) t = "
<<
Units
::
display
(
m_clipboard
->
get_persistent
(
"eventStart"
),
{
"ns"
,
"us"
,
"ms"
,
"s"
});
<<
((
double
)
m_tracks
/
m_events
)
<<
"/ev)"
<<
(
m_clipboard
->
has_persistent
(
"eventStart"
)
?
" t = "
+
Units
::
display
(
m_clipboard
->
get_persistent
(
"eventStart"
),
{
"ns"
,
"us"
,
"ms"
,
"s"
})
:
""
);
}
// Clear objects from this iteration from the clipboard
...
...
Thorben Quast
@tquast
mentioned in commit
tquast/corryvreckan@965aee8e
·
Jul 05, 2018
mentioned in commit
tquast/corryvreckan@965aee8e
mentioned in commit tquast/corryvreckan@965aee8e4fdac63c3190b39de4527494403d6b6a
Toggle commit list
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