#ifndef HRTEXTRACTOR_H
#define HRTEXTRACTOR_H

#include "hreconstructor.h"
#include "TNtuple.h"

class HCategory;
class HIterator;

class HRtExtractor : public HReconstructor {
public:
  HRtExtractor(const Text_t name[],const Text_t title[]);
  ~HRtExtractor(void);
  Bool_t init(void);
  Int_t execute(void);
  Bool_t finalize(void);
protected:
  TNtuple *fData; //!
  HCategory *fCatMdc; //! Geant MDC data
  HIterator *fMdcIter; //! Iterator on MDC data
  HCategory *fCatKine; //! Geant Tracks
  HIterator *fKineIter; //! Iterator on Geant Tracks
public:
  ClassDef(HRtExtractor,1)
};

#endif

Last change: Sat May 22 13:11:34 2010
Last generated: 2010-05-22 13:11

This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.