Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
JZCaPA
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Riccardo Longo
JZCaPA
Commits
09d5c5d0
Commit
09d5c5d0
authored
6 years ago
by
clantz
Browse files
Options
Downloads
Patches
Plain Diff
Removed constructor implementation and fixed GetElement prototype
parent
b761fee2
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Analysis/include/Detector.h
+3
-3
3 additions, 3 deletions
Analysis/include/Detector.h
with
3 additions
and
3 deletions
Analysis/include/Detector.h
+
3
−
3
View file @
09d5c5d0
...
...
@@ -18,12 +18,12 @@
class
Detector
{
public:
Detector
(
)
{}
;
Detector
(
);
Detector
(
std
::
vector
<
Channel
>
_element
){
Element
=
_element
;}
virtual
~
Detector
(
)
{}
;
virtual
~
Detector
(
);
virtual
Channel
*
GetElement
(
int
row
,
int
column
,
int
runNum
,
std
::
string
type
)
=
0
;
virtual
Channel
*
GetElement
(
int
row
,
int
column
)
;
virtual
double
*
GetPosition
(
)
{
return
Position
;
};
virtual
double
*
GetAngle
(
)
{
return
Angle
;
};
virtual
void
SetElement
(
Channel
_entry
)
{
Element
.
push_back
(
_entry
);
};
...
...
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