EnglishJapanese Reload Front page List of pages Search Recent changes RSS of recent changes

Back to the top page
Back to the upper page

  • Requirement
  1. TArtDecoderNEW.h Create this header in $ANAROOT/source/Core/include.
  2. TArtDecoderNEW.cc Create this file in $ANAROOT/source/Core/src
  • Modify
  1. Define ID of decoder in TArtDecoderNEW.h
    public:
     static const int kID = 99;
  2. 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()
    ...}

  3. $ANAROOT/sourece/Core/anacore_linkdef.h
    Add following line to this file.

    #pragma link C++ class TArtDecoderNEW-!;
Last-modified: Mon, 29 Oct 2012 02:45:38 HADT (4196d)