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
50a32f24
Commit
50a32f24
authored
Nov 27, 2017
by
fpipper
Browse files
Added double column shift. Time resolution problem fixed.
parent
5e14ca4e
Pipeline
#249125
passed with stages
in 7 minutes and 7 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/algorithms/Timepix3EventLoader/Timepix3EventLoader.cpp
View file @
50a32f24
...
...
@@ -123,6 +123,8 @@ void Timepix3EventLoader::initialise() {
// Initialise null values for later
m_syncTime
[
detectorID
]
=
0
;
m_clearedHeader
[
detectorID
]
=
false
;
m_syncTimeTDC
[
detectorID
]
=
0
;
m_TDCoverflowCounter
[
detectorID
]
=
0
;
// Sort all files by extracting the "serial number" from the file name while ignoring the timestamp:
std
::
sort
(
detector_files
[
detector
->
name
()].
begin
(),
...
...
@@ -444,16 +446,15 @@ bool Timepix3EventLoader::loadData(Clipboard* clipboard, Detector* detector, Pix
if
(
intermediate
!=
0
)
continue
;
if
((
m_syncTimeTDC
[
detectorID
]
-
timestamp_raw
)
>
0x1312d000
)
// if jump back in time is larger than 1 sec, overflow detected...
{
// if jump back in time is larger than 1 sec, overflow detected...
if
((
m_syncTimeTDC
[
detectorID
]
-
timestamp_raw
)
>
0x1312d000
)
{
m_TDCoverflowCounter
[
detectorID
]
++
;
}
m_syncTimeTDC
[
detectorID
]
=
timestamp_raw
;
timestamp
=
timestamp_raw
+
((
unsigned
long
long
int
)(
m_TDCoverflowCounter
[
detectorID
])
<<
35
);
double
triggerTime
=
(
timestamp
*
25e-9
+
stamp
*
25e-9
/
12.
)
/
8
.
;
// 320 MHz clock
triggerTime
-=
m_triggerLatency
*
1e-9
;
double
triggerTime
=
(
timestamp
*
25e-9
+
stamp
*
25e-9
/
12.
)
/
8
;
// 320 MHz clock
//
triggerTime -= m_triggerLatency * 1e-9;
SpidrSignal
*
triggerSignal
=
new
SpidrSignal
(
"trigger"
,
triggerTime
*
(
4096.
*
40000000.
));
spidrData
->
push_back
(
triggerSignal
);
}
...
...
@@ -487,6 +488,10 @@ bool Timepix3EventLoader::loadData(Clipboard* clipboard, Detector* detector, Pix
// Calculate the timestamp.
long
long
int
time
=
(((
spidrTime
<<
18
)
+
(
toa
<<
4
)
+
(
15
-
ftoa
))
<<
8
)
+
(
m_syncTime
[
detectorID
]
&
0xFFFFFC0000000000
);
// Adjusting phases for double column shift
time
+=
((
col
/
2
-
1
)
%
16
)
*
256
;
// LOG(DEBUG) <<"Pixel time "<<(double)time/(4096. * 40000000.);
// LOG(DEBUG) <<"Sync time "<<(double)m_syncTime[detectorID]/(4096. *
// 40000000.);
...
...
src/algorithms/Timepix3EventLoader/Timepix3EventLoader.h
View file @
50a32f24
...
...
@@ -42,6 +42,7 @@ namespace corryvreckan {
std
::
map
<
std
::
string
,
bool
>
m_clearedHeader
;
std
::
map
<
std
::
string
,
long
long
int
>
m_syncTimeTDC
;
std
::
map
<
std
::
string
,
int
>
m_TDCoverflowCounter
;
long
long
int
m_currentTime
;
long
long
int
m_currentEvent
;
...
...
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