// -------------------------------------------------------------------------------------- // ----- CbmRichRingFinderTrack source file ----- // ----- implementation: Simeon Lebedev (salebedev@jinr.ru) ----- // ------------------------------------------------------------------------- #include "CbmRichRingFinderTrack.h" #include "CbmRichHit.h" #include "CbmRichRing.h" #include "FairTrackParam.h" #include #include #include using std::cout; using std::endl; CbmRichRingFinderTrack::CbmRichRingFinderTrack() { } // ----- Destructor ---------------------------------------------------- CbmRichRingFinderTrack::~CbmRichRingFinderTrack() { } void CbmRichRingFinderTrack::HoughTransformReconstruction() { // if (fVerbose > 1) cout << "void CbmRichRingFinderHough::HoughTransformReconstruction()"<< endl; // // Int_t indmin, indmax; // Float_t x0, y0; // // fMaxDistance = 7.; // fMaxDistanceSq = fMaxDistance*fMaxDistance; // // for (UInt_t iProj = 0; iProj < fTrackProj.size(); iProj++) // { // // x0 = fTrackProj[iProj].first; // y0 = fTrackProj[iProj].second; // // fCurMinX = x0 - fMaxDistance; // fCurMinY = y0 - fMaxDistance; // // DefineLocalAreaAndHits(x0, y0, &indmin, &indmax); // HoughTransform(indmin, indmax); // FindPeak(indmin, indmax); // // }//main loop } // ------------------------------------------------------------------------- ClassImp(CbmRichRingFinderTrack)