Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Corryvreckan
Corryvreckan
Commits
6b3a22dd
Commit
6b3a22dd
authored
May 08, 2019
by
Jens Kroeger
Browse files
Pixel: adjusted print function according to recent changes
parent
baf00acc
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/objects/Pixel.cpp
View file @
6b3a22dd
...
...
@@ -3,6 +3,6 @@
using
namespace
corryvreckan
;
void
Pixel
::
print
(
std
::
ostream
&
out
)
const
{
out
<<
"Pixel "
<<
this
->
column
()
<<
", "
<<
this
->
row
()
<<
", "
<<
this
->
raw
()
<<
", "
<<
this
->
timestamp
()
<<
", is Binary"
<<
(
m_isBinary
?
"true"
:
"false"
)
<<
", is calibrated"
<<
(
m_isCalibrated
?
"true"
:
"false"
);
out
<<
"Pixel "
<<
this
->
column
()
<<
", "
<<
this
->
row
()
<<
", "
<<
this
->
raw
()
<<
", "
<<
this
->
charge
()
<<
", "
<<
this
->
timestamp
()
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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