Back to the top page
Back to the upper page
- Requirement
- TArtDecoderNEW.h Create this header in $ANAROOT/source/Core/include.
- TArtDecoderNEW.cc Create this file in $ANAROOT/source/Core/src
- Modify
- Define ID of decoder in TArtDecoderNEW.h
public: static const int kID = 99;
- For $ANAROOT/source/Core/src/TArtDecorderFactory.cc
Add following lines to this file.
#include "TArtDecoderNEW.h"
...
void TArtDecoderFactory::Register(){
Register(TArtDecoderFixed16::Instance());
...
Register(TArtDecoderNEW::Instance()
...} - $ANAROOT/sourece/Core/anacore_linkdef.h
Add following line to this file.
#pragma link C++ class TArtDecoderNEW-!;
Last-modified: Mon, 29 Oct 2012 01:45:38 HAST (4521d)