Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Peter Sherwood
athena
Commits
abfd1f52
Commit
abfd1f52
authored
8 years ago
by
Scott Snyder
Committed by
Graeme Stewart
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Const fix. (LUCID_RawEvent-00-06-01)
* Tagging LUCID_RawEvent-00-06-01. * LUCID_RawEvent/LUCID_Digit.h: Const fix.
parent
2ee376f4
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ForwardDetectors/LUCID/LUCID_RawEvent/LUCID_RawEvent/LUCID_Digit.h
+2
-2
2 additions, 2 deletions
...tectors/LUCID/LUCID_RawEvent/LUCID_RawEvent/LUCID_Digit.h
with
2 additions
and
2 deletions
ForwardDetectors/LUCID/LUCID_RawEvent/LUCID_RawEvent/LUCID_Digit.h
+
2
−
2
View file @
abfd1f52
...
...
@@ -26,8 +26,8 @@ class LUCID_Digit {
inline
unsigned
short
getTDC
()
const
{
return
m_tdc
;
}
inline
bool
isHit
()
const
{
return
m_isHit
;
}
inline
bool
isSideA
()
{
return
(
m_tubeID
<
20
);
}
inline
bool
isSideC
()
{
return
(
m_tubeID
>=
20
);
}
inline
bool
isSideA
()
const
{
return
(
m_tubeID
<
20
);
}
inline
bool
isSideC
()
const
{
return
(
m_tubeID
>=
20
);
}
private
:
...
...
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