#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); /** Destructor **/ virtual ~PndTorinoDetectorHit(); private: PndTorinoDetectorHit(const PndTorinoDetectorHit&); PndTorinoDetectorHit operator=(const PndTorinoDetectorHit&); ClassDef(PndTorinoDetectorHit,1); }; #endif