1 #ifndef RecoPixelVertexing_FindPeakFastPV_h
2 #define RecoPixelVertexing_FindPeakFastPV_h
12 float FindPeakFastPV(
const std::vector<float> &zProjections,
const std::vector<float> &zWeights,
const float oldVertex,
const float m_zClusterWidth,
const float m_zClusterSearchArea,
const float m_weightCut) {
13 float centerWMax = oldVertex;
14 if( m_zClusterWidth > 0 && m_zClusterSearchArea >0 )
16 std::vector<float>::const_iterator itCenter = zProjections.begin();
17 std::vector<float>::const_iterator itLeftSide = zProjections.begin();
18 std::vector<float>::const_iterator itRightSide = zProjections.begin();
19 const float zClusterWidth = m_zClusterWidth*0.5;
20 const float zLowerBound = oldVertex - zClusterWidth - m_zClusterSearchArea;
21 const float zUpperBound = oldVertex + zClusterWidth + m_zClusterSearchArea;
23 for(;itCenter!=zProjections.end(); itCenter++) {
25 if( (*itCenter < zLowerBound) || (*itCenter > zUpperBound) )
continue;
27 while(itLeftSide != zProjections.end() && (*itCenter - *itLeftSide) > zClusterWidth ) itLeftSide++;
28 while(itRightSide != zProjections.end() && (*itRightSide - *itCenter) < zClusterWidth ) itRightSide++;
32 for(std::vector<float>::const_iterator
ii = itLeftSide;
ii != itRightSide;
ii++) {
34 if(zWeights[
ii-zProjections.begin()]<m_weightCut)
continue;
35 nWeighted+=zWeights[
ii-zProjections.begin()];
36 centerW+=(*ii)*zWeights[
ii-zProjections.begin()];
39 if(nWeighted > maxW) {
float FindPeakFastPV(const std::vector< float > &zProjections, const std::vector< float > &zWeights, const float oldVertex, const float m_zClusterWidth, const float m_zClusterSearchArea, const float m_weightCut)