Skip to content
GitLab
Explore
Sign in
Register
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
b9a7a3a8
Commit
b9a7a3a8
authored
12 years ago
by
Stephen A. Wood
Browse files
Options
Downloads
Patches
Plain Diff
Start a Hall C detector base that has hit lists.
parent
c3fe25a8
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/THcDetectorBase.cxx
+27
-0
27 additions, 0 deletions
src/THcDetectorBase.cxx
src/THcDetectorBase.h
+24
-0
24 additions, 0 deletions
src/THcDetectorBase.h
with
51 additions
and
0 deletions
src/THcDetectorBase.cxx
0 → 100644
+
27
−
0
View file @
b9a7a3a8
//*-- Author : Stephen Wood 30-March-2012
//////////////////////////////////////////////////////////////////////////
//
// THcDetectorBase
//
// Add hitlist to the Hall A detector base
//
//////////////////////////////////////////////////////////////////////////
#include
"ThcDetectorBase.h"
using
namespace
std
;
THcDetectorBase
::
THcDetectorBase
(
const
char
*
name
,
const
char
*
description
)
:
THaDetectorBase
(
name
,
description
)
{
}
THcDetectorBase
::
THcDetectorBase
()
:
THaDetectorBase
()
{
}
THcDetectorBase
::~
THcDetectorBase
()
:
~
THaDetectorBase
()
{
}
ClassImp
(
THcDetectorBase
)
This diff is collapsed.
Click to expand it.
src/THcDetectorBase.h
0 → 100644
+
24
−
0
View file @
b9a7a3a8
#ifndef ROOT_THcDetectorBase
#define ROOT_THcDetectorBase
#include
"THaDetectorBase.h"
//////////////////////////////////////////////////////////////////////////
//
// THcDetectorBase
//
//////////////////////////////////////////////////////////////////////////
class
THcDetectorBase
:
public
THaDetectorBase
{
public:
virtual
~
THaDetectorBase
();
THaDetectorBase
();
// only for ROOT I/O
protected:
ClassDef
(
ThcDetectorBase
,
0
)
};
#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