Skip to content
Snippets Groups Projects
Commit b9a7a3a8 authored by Stephen A. Wood's avatar Stephen A. Wood
Browse files

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
//*-- 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)
#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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment