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
192d0d31
Commit
192d0d31
authored
12 years ago
by
Stephen A. Wood
Browse files
Options
Downloads
Patches
Plain Diff
Add default argument values to THcHodoscopeHit and THcRawHit
constructors so that they now work in TClonesArray.
parent
fafa3449
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
Makefile
+1
-1
1 addition, 1 deletion
Makefile
src/THcHodoscopeHit.h
+3
-3
3 additions, 3 deletions
src/THcHodoscopeHit.h
src/THcRawHit.cxx
+2
-12
2 additions, 12 deletions
src/THcRawHit.cxx
src/THcRawHit.h
+11
-13
11 additions, 13 deletions
src/THcRawHit.h
with
17 additions
and
29 deletions
Makefile
+
1
−
1
View file @
192d0d31
...
...
@@ -166,7 +166,7 @@ install: all
cp
-p
$(
USERLIB
)
$(
HOME
)
/cue/SRC/ana
clean
:
rm
-f
*
.o
*
~
$(
USERLIB
)
$(
USERDICT
)
.
*
rm
-f
src/
*
.o
*
~
$(
USERLIB
)
$(
USERDICT
)
.
*
realclean
:
clean
rm
-f
*
.d
...
...
This diff is collapsed.
Click to expand it.
src/THcHodoscopeHit.h
+
3
−
3
View file @
192d0d31
...
...
@@ -7,7 +7,7 @@ class THcHodoscopeHit : public THcRawHit {
public:
THcHodoscopeHit
(
Int_t
plane
,
Int_t
counter
)
:
THcRawHit
(
plane
,
counter
),
THcHodoscopeHit
(
Int_t
plane
=
0
,
Int_t
counter
=
0
)
:
THcRawHit
(
plane
,
counter
),
fADC_pos
(
-
1
),
fADC_neg
(
-
1
),
fTDC_pos
(
-
1
),
fTDC_neg
(
-
1
)
{
}
...
...
@@ -15,7 +15,7 @@ class THcHodoscopeHit : public THcRawHit {
virtual
~
THcHodoscopeHit
()
{}
virtual
void
Clear
(
Option_t
*
opt
=
""
)
{
fADC_pos
=
-
1
;
fADC_neg
=
-
1
;
fTDC_pos
=
-
1
;
fTDC_neg
=
-
1
;
}
{
fADC_pos
=
-
1
;
fADC_neg
=
-
1
;
fTDC_pos
=
-
1
;
fTDC_neg
=
-
1
;
}
void
SetData
(
Int_t
signal
,
Int_t
data
);
Int_t
GetData
(
Int_t
signal
);
...
...
@@ -32,7 +32,7 @@ class THcHodoscopeHit : public THcRawHit {
private
:
ClassDef
(
THcHodoscopeHit
,
0
)
// Hodoscope hit class
ClassDef
(
THcHodoscopeHit
,
0
)
;
// Hodoscope hit class
};
#endif
This diff is collapsed.
Click to expand it.
src/THcRawHit.cxx
+
2
−
12
View file @
192d0d31
...
...
@@ -10,18 +10,8 @@
#include
"THcRawHit.h"
THcRawHit
::
THcRawHit
()
{
// Constructor
}
THcRawHit
::
THcRawHit
(
Int_t
plane
,
Int_t
counter
)
:
fPlane
(
plane
),
fCounter
(
counter
)
{
}
THcRawHit
::~
THcRawHit
()
{}
//THcRawHit::~THcRawHit()
//{}
ClassImp
(
THcRawHit
)
...
...
This diff is collapsed.
Click to expand it.
src/THcRawHit.h
+
11
−
13
View file @
192d0d31
...
...
@@ -10,19 +10,17 @@
class
THcRawHit
:
public
TObject
{
public:
THcRawHit
();
virtual
~
THcRawHit
();
public:
THcRawHit
(
Int_t
plane
=
0
,
Int_t
counter
=
0
)
:
fPlane
(
plane
),
fCounter
(
counter
)
{};
THcRawHit
(
const
THcRawHit
&
rhs
)
:
TObject
(
rhs
)
{}
THcRawHit
&
operator
=
(
const
THcRawHit
&
rhs
)
{
TObject
::
operator
=
(
rhs
);
return
*
this
;
};
THcRawHit
(
Int_t
plane
,
Int_t
counter
);
// THcRawHit( const THcRawHit& rhs ) : TObject(rhs) {}
virtual
~
THcRawHit
()
{}
// THcRawHit& operator=( const THcRawHit& rhs )
// { TObject::operator=(rhs); return *this; }
virtual
void
Clear
(
Option_t
*
opt
=
""
)
=
0
;
// This line causes problem
// virtual void Clear( Option_t* opt="" )=0;
// virtual Bool_t operator==( const THcRawHit& ) = 0;
// virtual Bool_t operator!=( const THcRawHit& ) = 0;
...
...
@@ -37,9 +35,9 @@ class THcRawHit : public TObject {
Int_t
fPlane
;
Int_t
fCounter
;
pr
otected
:
pr
ivate
:
ClassDef
(
THcRawHit
,
0
)
ClassDef
(
THcRawHit
,
2
)
// Track ID abstract base class
};
#endif
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