// StripHit.h
// Feb 02,1999 Rob Shanks Creation: In an attempt to speed up the reading
//                                  of the Event structure.

#ifndef STRIPHIT_H
#define STRIPHIT_H

#include "stripID.h"
#include "TObject.h"
#include "TObjArray.h"
#include "IntObj.h"

class StripHit: public TObject {
private:

  stripID* m_strip;         // TowerID tag
  TObjArray m_MC;          // List of particles 
public:
  StripHit();
  StripHit(stripID* strip);
  ~StripHit();
  void Clean();
  void AddHit(Int_t index);
  TObjArray* GetMC(){return &m_MC;};
  stripID* GetStrip(){return m_strip;};
  
  ClassDef(StripHit,1) // Muon strip hit information
};

#endif
