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

Start class to hold the detector map.

parent cfd9182d
No related branches found
No related tags found
No related merge requests found
//*-- Author: Stephen Wood
//////////////////////////////////////////////////////////////////////////
//
// THcDetectorMap
//
// Class to read and hold Hall C style detector map
//
// Will need method to retrieve all map entries for a given
// detector id.
//
//////////////////////////////////////////////////////////////////////////
#include "THcDetectorMap.h"
using namespace std;
ClassImp(THcDetectorMap)
THcDetectorMap::Load(const char *fname)
{
}
#ifndef ROOT_THcDetectorMap
#define ROOT_THcDetectorMap
//////////////////////////////////////////////////////////////////////////
//
// THcDetectorMap
//
//////////////////////////////////////////////////////////////////////////
#include "TObject.h"
class THcDetectorMap : public TObject {
public:
THcDetectorMap() {}
virtual ~THcDetectorMap() {}
virtual void Load(const char *fname);
protected:
ClassDef(THcDetectorMap,0);
};
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment