#ifndef HShowerHitTrackMatcher_H
#define HShowerHitTrackMatcher_H
#include "hreconstructor.h"
#include "hlocation.h"
#include "hparset.h"
#include "hshowerraw.h"
class HCategory;
class HIterator;
class HShowerHit;
class HShowerTrack;
class HShowerHitTrackMatcher : public HReconstructor {
public:
HShowerHitTrackMatcher();
HShowerHitTrackMatcher(const Text_t *name,const Text_t *title);
~HShowerHitTrackMatcher();
Bool_t init(void);
Bool_t finalize(void);
Int_t execute(void);
HCategory* getTrackCat(){return m_pTrackCat;}
HCategory* getHitCat(){return m_pHitCat;}
HCategory* getHitTrack(){return m_pHitTrackCat;}
void setTrackCat(HCategory* pTrackCat){m_pTrackCat = pTrackCat;}
void setHitCat(HCategory* pHitCat){m_pHitCat = pHitCat;}
void setHitTrack(HCategory* pHitTrackCat){m_pHitTrackCat=pHitTrackCat;}
ClassDef(HShowerHitTrackMatcher,0)
private:
HLocation m_zeroLoc;
HCategory *m_pTrackCat;
HCategory *m_pHitCat;
HCategory *m_pHitTrackCat;
HIterator *fHitIter;
HIterator *fTrackIter;
};
#endif
Last change: Sat May 22 13:13:50 2010
Last generated: 2010-05-22 13:13
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.