Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
hcana
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
Container Registry
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
jlab
hallc
analyzer_software
hcana
Commits
13a187d5
Commit
13a187d5
authored
9 years ago
by
Stephen A. Wood
Browse files
Options
Downloads
Patches
Plain Diff
Add method for # of samples to THcRawShowerHit
parent
41d2c558
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/THcRawShowerHit.cxx
+11
-0
11 additions, 0 deletions
src/THcRawShowerHit.cxx
src/THcRawShowerHit.h
+1
-0
1 addition, 0 deletions
src/THcRawShowerHit.h
with
12 additions
and
0 deletions
src/THcRawShowerHit.cxx
+
11
−
0
View file @
13a187d5
...
@@ -52,6 +52,17 @@ Int_t THcRawShowerHit::GetData(Int_t signal, UInt_t isample) {
...
@@ -52,6 +52,17 @@ Int_t THcRawShowerHit::GetData(Int_t signal, UInt_t isample) {
}
}
return
(
-
1
);
return
(
-
1
);
}
}
// Return the number of samples
Int_t
THcRawShowerHit
::
GetNSamples
(
Int_t
signal
)
{
if
(
signal
==
0
)
{
return
(
fNPosSamples
);
}
else
if
(
signal
==
1
)
{
return
(
fNNegSamples
);
}
return
(
-
1
);
}
//_____________________________________________________________________________
//_____________________________________________________________________________
THcRawShowerHit
&
THcRawShowerHit
::
operator
=
(
const
THcRawShowerHit
&
rhs
)
THcRawShowerHit
&
THcRawShowerHit
::
operator
=
(
const
THcRawShowerHit
&
rhs
)
{
{
...
...
This diff is collapsed.
Click to expand it.
src/THcRawShowerHit.h
+
1
−
0
View file @
13a187d5
...
@@ -23,6 +23,7 @@ class THcRawShowerHit : public THcRawHit {
...
@@ -23,6 +23,7 @@ class THcRawShowerHit : public THcRawHit {
void
SetData
(
Int_t
signal
,
Int_t
data
);
void
SetData
(
Int_t
signal
,
Int_t
data
);
Int_t
GetData
(
Int_t
signal
);
Int_t
GetData
(
Int_t
signal
);
Int_t
GetData
(
Int_t
signal
,
UInt_t
isample
);
Int_t
GetData
(
Int_t
signal
,
UInt_t
isample
);
Int_t
GetNSamples
(
Int_t
signal
);
// virtual Bool_t IsSortable () const {return kTRUE; }
// virtual Bool_t IsSortable () const {return kTRUE; }
// virtual Int_t Compare(const TObject* obj) const;
// virtual Int_t Compare(const TObject* obj) const;
...
...
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