9 #include "Pandora/AlgorithmHeaders.h" 20 void MultiValuedLongitudinalTrackHitsTool::GetLongitudinalTrackHit3D(
24 const HitType hitType(pCaloHit2D->GetHitType());
25 const HitType hitType1((TPC_VIEW_U == hitType) ? TPC_VIEW_V : (TPC_VIEW_V == hitType) ? TPC_VIEW_W : TPC_VIEW_U);
26 const HitType hitType2((TPC_VIEW_U == hitType) ? TPC_VIEW_W : (TPC_VIEW_V == hitType) ? TPC_VIEW_U : TPC_VIEW_V);
28 const CartesianVector vtx2D(LArGeometryHelper::ProjectPosition(this->GetPandora(), vtx3D, hitType));
29 const CartesianVector end2D(LArGeometryHelper::ProjectPosition(this->GetPandora(), end3D, hitType));
31 if ((end2D - vtx2D).GetMagnitudeSquared() < std::numeric_limits<float>::epsilon())
32 throw StatusCodeException(STATUS_CODE_NOT_FOUND);
34 const float frac((end2D - vtx2D).GetDotProduct(pCaloHit2D->GetPositionVector() - vtx2D) / (end2D - vtx2D).GetMagnitudeSquared());
35 const CartesianVector projection3D(vtx3D + (end3D - vtx3D) * frac);
37 CartesianPointVector fitPositionList1, fitPositionList2;
40 if (matchedSlidingFitMap.end() != fIter1)
43 const CartesianVector position2D(LArGeometryHelper::ProjectPosition(this->GetPandora(), projection3D, hitType1));
45 CartesianVector position1(0.
f, 0.
f, 0.
f);
48 if ((STATUS_CODE_SUCCESS != statusCode) && (STATUS_CODE_NOT_FOUND != statusCode))
49 throw StatusCodeException(statusCode);
51 if (STATUS_CODE_SUCCESS == statusCode)
52 fitPositionList1.push_back(position1);
56 if (matchedSlidingFitMap.end() != fIter2)
59 const CartesianVector position2D(LArGeometryHelper::ProjectPosition(this->GetPandora(), projection3D, hitType2));
61 CartesianVector position2(0.
f, 0.
f, 0.
f);
64 if ((STATUS_CODE_SUCCESS != statusCode) && (STATUS_CODE_NOT_FOUND != statusCode))
65 throw StatusCodeException(statusCode);
67 if (STATUS_CODE_SUCCESS == statusCode)
68 fitPositionList2.push_back(position2);
71 unsigned int nViews(1);
72 if (fitPositionList1.size() > 0)
74 if (fitPositionList2.size() > 0)
77 if (nViews < m_minViews)
78 throw StatusCodeException(STATUS_CODE_NOT_FOUND);
80 this->GetBestPosition3D(hitType1, hitType2, fitPositionList1, fitPositionList2, protoHit);
Proto hits are temporary constructs to be used during iterative 3D hit procedure. ...
std::map< pandora::HitType, TwoDSlidingFitResult > MatchedSlidingFitMap
const pandora::CaloHit * GetParentCaloHit2D() const
Get the address of the parent 2D calo hit.
Header file for the geometry helper class.
pandora::StatusCode GetGlobalFitProjection(const pandora::CartesianVector &inputPosition, pandora::CartesianVector &projectedPosition) const
Get projected position on global fit for a given position vector.
TwoDSlidingFitResult class.