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

A start of a Hall C specific decoder

parent fa37a2dd
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,8 @@
# there must be a corresponding header file (*.h).
SRC = src/THcInterface.cxx src/THcParmList.cxx src/THcCrateMap.cxx
SRC = src/THcInterface.cxx src/THcParmList.cxx src/THcCrateMap.cxx \
src/THcCodaDecoder.cxx
# Name of your package.
# The shared library that will be built will get the name lib$(PACKAGE).so
......
......@@ -9,5 +9,6 @@
#pragma link C++ class THcInterface+;
#pragma link C++ class THcParmList+;
#pragma link C++ class THcCrateMap+;
#pragma link C++ class THcCodaDecoder+;
#endif
//
// THcCodaDecoder
//
// author Stephen Wood (saw@jlab.org)
#include "THcCodaDecoder.h"
using namespace std;
ClassImp(THcCodaDecoder)
#ifndef THcCodaDecoder_
#define THcCodaDecoder_
// Hall C version of decoder
#include "THaCodaDecoder.h"
class THcCodaDecoder : public THaCodaDecoder {
public:
private:
protected:
ClassDef(THcCodaDecoder,0) // Hall C Coda Decoder
};
#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