/** CbmMuchStrawHit.cxx * @author Andrey Lebedev * @since 2009 * @version 1.0 **/ #include "CbmMuchStrawHit.h" CbmMuchStrawHit::CbmMuchStrawHit() { SetType(kMUCHSTRAWHIT); } CbmMuchStrawHit::~CbmMuchStrawHit() { } CbmMuchStrawHit::CbmMuchStrawHit( Int_t detectorId, Double_t u, Double_t phi, Double_t z, Double_t du, Double_t dphi, Double_t dz, Int_t refId, Int_t planeId): CbmStripHit(detectorId, u, phi, z, du, dphi, dz, refId) { SetType(kMUCHSTRAWHIT); fPlaneId = planeId; } CbmMuchStrawHit::CbmMuchStrawHit( Int_t detectorId, const TVector3& pos, const TVector3& err, Int_t refId): CbmStripHit(detectorId, pos, err, refId) { SetType(kMUCHSTRAWHIT); } //CbmMuchStrawHit::CbmMuchStrawHit( // Int_t detectorId, // const TVector3& pos, // const TVector3& err, // Int_t refId, // const Double_t* times, // Double_t dtime): // CbmStripHit(detectorId, pos, err, refId) //{ // SetTimes(times); // SetDTime(dtime); // SetType(kMUCHSTRAWHIT); //} ClassImp(CbmMuchStrawHit);