#ifndef HKINEGEANTREADER_H
#define HKINEGEANTREADER_H

#include "TTree.h"
#include "hgeantreader.h"
#include "hlinearcategory.h"
class HGeantKine;
class HLocation;

class HKineGeantReader : public HGeantReader {
private:
  Int_t fEventId;                   //  Current event number
  TTree* t;                         //  Pointer to the root tree
  HLinearCategory* fGeantKineCat;   //! KINE HGeant input data

public:
  HKineGeantReader(void);
  ~HKineGeantReader(void);
  Bool_t init(void); 
  Bool_t execute(void); 
  inline HLinearCategory* getGeantKineCat(void) {return fGeantKineCat;}
  inline HGeantKine* getGeantKine(HLocation locate) {
     return (HGeantKine*)(fGeantKineCat->getObject(locate));
  }
  ClassDef(HKineGeantReader,1) // KINE reader for HGeant root file
};

#endif /* !HKINEGEANTREADER_H */





Last change: Sat May 22 12:58:52 2010
Last generated: 2010-05-22 12:58

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.