This file is indexed.

/usr/include/InsightToolkit/Common/itkPointLocator.txx is in libinsighttoolkit3-dev 3.20.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
/*=========================================================================

  Program:   Insight Segmentation & Registration Toolkit
  Module:    itkPointLocator.txx
  Language:  C++
  Date:      $Date$
  Version:   $Revision$

  Copyright (c) Insight Software Consortium. All rights reserved.
  See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.

  Portions of this code are covered under the VTK copyright.
  See VTKCopyright.txt or http://www.kitware.com/VTKCopyright.htm for details.

     This software is distributed WITHOUT ANY WARRANTY; without even 
     the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
     PURPOSE.  See the above copyright notices for more information.

=========================================================================*/
#ifndef __itkPointLocator_txx
#define __itkPointLocator_txx
#include "itkPointLocator.h"

namespace itk
{

template <typename TPointIdentifier, int VPointDimension,
          typename TCoordRep, typename TPointsContainer>
void 
PointLocator<TPointIdentifier,VPointDimension,TCoordRep,TPointsContainer>
::InitPointInsertion(PointsContainer *newPts, BoundingBoxPointer)
{
  // Check the input
  m_Points = newPts;
#if 0
  if ( newPts )
    {
    this->Points = newPts;
    }
  else
    {
    //throw an exception and return
    return;
    }
#endif
}

template <typename TPointIdentifier, int VPointDimension,
          typename TCoordRep, typename TPointsContainer>
void 
PointLocator<TPointIdentifier,VPointDimension,TCoordRep,TPointsContainer>
::InitIncrementalPointInsertion(PointsContainer *newPts, BoundingBoxPointer bbox)
{
  // Check the input
  m_Points = newPts;
#if 0
  if ( newPts )
    {
    this->Points = newPts;
    }
  else
    {
    //throw an exception and return
    return;
    }
#endif
}

#if 0
int i;
int maxDivs;
typedef vtkIdList *vtkIdListPtr;
float hmin;
int ndivs[3];
float level;

if ( this->m_HashTable )
{
  this->FreeSearchStructure();
}
if ( !newPts  )
{
  vtkErrorMacro(<<"Must define points for point insertion");
  return 0;
}
if (this->Points)
{
  this->Points->UnRegister(this);
}
this->Points = newPts;
this->Points->Register(this);

for (i=0; i<3; i++)
{
  this->m_Bounds[2*i] = bounds[2*i];
  this->m_Bounds[2*i+1] = bounds[2*i+1];
  if ( this->m_Bounds[2*i+1] <= this->m_Bounds[2*i] )
    {
    this->m_Bounds[2*i+1] = this->m_Bounds[2*i] + 1.0;
    }
}

if ( this->Automatic && (estNumPts > 0) )
{
  level = (float) estNumPts / this->NumberOfPointsPerBucket;
  level = vcl_ceil( vcl_pow((double)level,(double)0.33333333) );
  for (i=0; i<3; i++)
    {
    ndivs[i] = (int) level;
    }
} 
else 
{
  for (i=0; i<3; i++)
    {
    ndivs[i] = (int) this->Divisions[i];
    }
}

for (i=0; i<3; i++) 
{
  ndivs[i] = (ndivs[i] > 0 ? ndivs[i] : 1);
  this->Divisions[i] = ndivs[i];
}

this->m_NumberOfBuckets = ndivs[0]*ndivs[1]*ndivs[2];
this->m_HashTable = new vtkIdListPtr[this->m_NumberOfBuckets];
memset (this->m_HashTable, 0, this->m_NumberOfBuckets*
        sizeof(vtkIdListPtr));
//
//  Compute width of bucket in three directions
//
for (i=0; i<3; i++) 
{
  this->m_H[i] = (this->m_Bounds[2*i+1] - this->m_Bounds[2*i]) / ndivs[i];
}

this->m_InsertionTol2 = this->Tolerance * this->Tolerance;

for (maxDivs=0, hmin=VTK_LARGE_FLOAT, i=0; i<3; i++) 
{
  hmin = (this->m_H[i] < hmin ? this->m_H[i] : hmin);
  maxDivs = (maxDivs > this->Divisions[i] ? maxDivs : this->Divisions[i]);
}
this->m_InsertionLevel = vcl_ceil ((double) this->Tolerance / hmin);
this->m_InsertionLevel = (this->m_InsertionLevel > maxDivs ? maxDivs : this->m_InsertionLevel);
return 1;
#endif


/******************************************************************************
 * PROTECTED METHOD DEFINITIONS
 ******************************************************************************
 */

template <typename TPointIdentifier, int VPointDimension,
          typename TCoordRep, typename TPointsContainer>
PointLocator<TPointIdentifier,VPointDimension,TCoordRep,TPointsContainer>
::PointLocator():
  m_Points(NULL)
{
  m_Divisions = new unsigned long [PointDimension];
  m_NumberOfPointsPerBucket = 3;
}

template <typename TPointIdentifier, int VPointDimension,
          typename TCoordRep, typename TPointsContainer>
PointLocator<TPointIdentifier,VPointDimension,TCoordRep,TPointsContainer>
::~PointLocator()
{
  delete [] m_Divisions;
}

/**
 * Print out the bounding box.
 */
template <typename TPointIdentifier, int VPointDimension,
          typename TCoordRep, typename TPointsContainer>
void
PointLocator<TPointIdentifier, VPointDimension, TCoordRep, TPointsContainer >
::PrintSelf(std::ostream& os, Indent indent) const
{
  Superclass::PrintSelf(os, indent);
  os << indent << "Divisions: " << m_Divisions << "\n";
  os << indent << "NumberOfPointsPerBucket: " << m_NumberOfPointsPerBucket << "\n";
}

} // end namespace itk

#endif