#ifndef PNDTORINODETECTORHIT_H #define PNDTORINODETECTORHIT_H 1 //#include "TVector3.h" #include "FairHit.h" class TVector3; class PndTorinoDetectorHit : public FairHit { public: /** Default constructor **/ PndTorinoDetectorHit(); PndTorinoDetectorHit(Int_t detID, Int_t mcindex, TVector3& pos, TVector3& dpos, Int_t plane); /** Destructor **/ virtual ~PndTorinoDetectorHit(); private: Int_t fPlane; PndTorinoDetectorHit(const PndTorinoDetectorHit&); PndTorinoDetectorHit operator=(const PndTorinoDetectorHit&); ClassDef(PndTorinoDetectorHit,1); }; #endif