/** CbmStsMapsHit *@author Michael Deveaux **Acknowledgements to M. Al-Turany, D. Bertini, G. Gaycken **Version beta 0.1 (02.02.2005) **/ #include "PndSttSkewedHit.h" #include "PndDetectorList.h" #include #include "TMath.h" using namespace std; /** Default constructor **/ PndSttSkewedHit::PndSttSkewedHit() : FairHit() { } PndSttSkewedHit::PndSttSkewedHit(Int_t detID, Int_t tubeID1, Int_t tubeID2, Int_t mcindex, TVector3& pos, TVector3& dpos) : FairHit(detID, pos, dpos, mcindex) { SetTubeIDs(tubeID1, tubeID2); } /** Destructor **/ PndSttSkewedHit::~PndSttSkewedHit() { } ClassImp(PndSttSkewedHit)