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
96d32d40
Commit
96d32d40
authored
Aug 25, 2016
by
Daniel Hynds
Browse files
added flag for timepix3 telescope running (no repeated frames)
Former-commit-id: 03500e85925385c328c5cc427905d2429be9e410
parent
9935e416
Changes
2
Hide whitespace changes
Inline
Side-by-side
branches/trunk/algorithms/ClicpixAnalysis.C
View file @
96d32d40
...
...
@@ -8,6 +8,7 @@ ClicpixAnalysis::ClicpixAnalysis(bool debugging)
debug
=
debugging
;
m_associationCut
=
0
.
1
;
// 100 um
m_proximityCut
=
0
.
125
;
// 125 um
timepix3Telescope
=
false
;
}
...
...
@@ -135,7 +136,7 @@ StatusCode ClicpixAnalysis::run(Clipboard* clipboard){
}
// If this is the first or last trigger don't use the data
if
(
m_triggerNumber
==
0
||
m_triggerNumber
==
19
){
if
(
(
m_triggerNumber
==
0
||
m_triggerNumber
==
19
)
&&
!
timepix3Telescope
)
{
m_eventNumber
++
;
m_triggerNumber
++
;
return
Success
;
...
...
branches/trunk/algorithms/ClicpixAnalysis.h
View file @
96d32d40
...
...
@@ -115,6 +115,7 @@ public:
double
m_associationCut
;
double
m_proximityCut
;
double
m_lostHits
;
bool
timepix3Telescope
;
};
...
...
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