This file is indexed.

/usr/include/BALL/STRUCTURE/RSFace.h is in libball1.4-dev 1.4.1+20111206-3.

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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
// -*- Mode: C++; tab-width: 2; -*-
// vi: set ts=2:
//

#ifndef BALL_STRUCTURE_RSFACE_H
#define BALL_STRUCTURE_RSFACE_H

#ifndef BALL_STRUCTURE_GRAPHFACE_H
#	include <BALL/STRUCTURE/graphFace.h>
#endif

#ifndef BALL_MATHS_VECTOR3_H
#	include <BALL/MATHS/vector3.h>
#endif

namespace BALL
{
	class RSVertex;
	class RSEdge;
	class ReducedSurface;
	class RSComputer;
	class SolventExcludedSurface;
	class SESComputer;
	class SESSingularityCleaner;
	class SESEdge;
	class SESFace;
	class SESVertex;
	class TriangulatedSES;
	class SASTriangulator;
	class SolventAccessibleSurface;
	class SASEdge;
	class SASFace;
	class SASVertex;
	class TriangulatedSAS;
	class SESTriangulator;

	/** Generic RSFace Class.	
	\ingroup Surface		
	*/
	class BALL_EXPORT RSFace	:	public GraphTriangle< RSVertex,RSEdge,RSFace >
	{
		public:

		/** @name Class friends

					- class RSEdge
					- class RSVertex
					- class ReducedSurface
					- class RSComputer
					- class SESEdge
					- class SESFace
					- class SESVertex
					- class SolventExcludedSurface
					- class SESComputer
					- class TSESSingularityCleaner
					- class TriangulatedSES
					- class SESTriangulator
					- class SASEdge
					- class SASFace
					- class SASVertex
					- class SolventAccessibleSurface;
					- class TriangulatedSAS
					- class SASTriangulator
				
		*/
		friend class RSEdge;
		friend class RSVertex;
		friend class ReducedSurface;
		friend class RSComputer;
		friend class SESEdge;
		friend class SESFace;
		friend class SESVertex;
		friend class SolventExcludedSurface;
		friend class SESComputer;
		friend class SESSingularityCleaner;
		friend class TriangulatedSES;
		friend class SESTriangulator;
		friend class SASEdge;
		friend class SASFace;
		friend class SASVertex;
		friend class SolventAccessibleSurface;
		friend class TriangulatedSAS;
		friend class SASTriangulator;

		BALL_CREATE(RSFace)

		/**	@name	Constructors and Destructors
		*/
		//@{

		/**	Default constructor.
				This method creates a new RSFace object.
		*/
		RSFace()
			;

		/**	Copy constructor.
				Create a new RSFace object from another.
				@param	rsface	the RSFace object to be copied
				@param	deep		if deep = false, all pointers are set to NULL	
												(default). Otherwise the new RSFace object is linked	
												to the neighbours of the old RSFace object.
		*/
		RSFace(const RSFace& rsface, bool deep = false)
			;

		/**	Detailled constructor.
				Create a new RSFace object from a lot of nice objects
				@param	vertex1		assigned to the first vertex
				@param	vertex2		assigned to the second vertex
				@param	vertex3		assigned to the third vertex
				@param	edge1			assigned to the first edge
				@param	edge2			assigned to the second edge
				@param	edge3			assigned to the third edge
				@param	center		assigned to the center
				@param	normal		assigned to the normal vector
				@param	singular
				@param	index			assigned to the index
		*/
		RSFace(RSVertex* vertex1,
				RSVertex* vertex2,
				RSVertex* vertex3,
				RSEdge* edge1,
				RSEdge* edge2,
				RSEdge* edge3,
				const TVector3<double>& center,
				const TVector3<double>& normal,
				bool singular,
				Index index)
			throw(Exception::DivisionByZero);

		/**	Destructor.
				Destructs the RSFace object.
		*/
		virtual ~RSFace()
			;

		//@}
		/**	@name	Assignment
		*/
		//@{

		/**	Assign from another RSFace.
				@param	rsface	the RSFace object to assign from
				@param	deep		if deep = false, all pointers are set to NULL	
												(default). Otherwise the RSFace object is linked to	
												the neighbours of the RSFace object to assign from.
		*/
		void set(const RSFace& rsface, bool deep = false)
			;

		/**	Assign from another RSFace.
				The RSFace object is linked to the neighbours of the RSFace object to	
				assign from.
				@param	rsface	the RSFace object to assign from
		*/
		RSFace& operator = (const RSFace& rsface)
			;

		/**	Assign to a lot of nice objects
				@param	vertex1		assigned to the first vertex
				@param	vertex2		assigned to the second vertex
				@param  vertex3   assigned to the third vertex
				@param	edge1			assigned to the first edge
				@param	edge2			assigned to the second edge
				@param  edge3			assigned to the third edge
				@param	center		assigned to the center
				@param	normal		assigned to the normal vector
				@param	singular
				@param	index			assigned to the index
		*/
		void set(RSVertex* vertex1,
				RSVertex* vertex2,
				RSVertex* vertex3,
				RSEdge* edge1,
				RSEdge* edge2,
				RSEdge* edge3,
				const TVector3<double>& center,
				const TVector3<double>& normal,
				bool singular,
				Index index)
			throw(Exception::DivisionByZero);

		//@}
		/**	@name	Predicates
		*/
		//@{

		/**	Equality operator.
				@return bool	<b>true</b> if all vertices are similar modulo order	
											and the centers are equal, <b>false</b> otherwise
		*/
		virtual bool operator == (const RSFace& rsface) const
			;

		/**	Inequality operator.
				@return	bool	<b>false</b> if all vertices are similar modulo order	
											and the centers are equal, <b>true</b> otherwise
		*/
		virtual bool operator != (const RSFace& rsface) const
			;

		/**	Similarity operator.
				@return	bool	<b>true</b> if all vertices are similar modulo order,	
											<b>false</b> otherwise
		*/
		virtual bool operator *=(const RSFace& rsface) const
			;
		
		/** isSingular
				@return	bool	<b>true</b> if the RSFace is singular,	
											<b>false</b> otherwise
		*/
		bool isSingular() const
			;

		//@}
		/**	@name	Accessors
		*/
		//@{

		/** Set the center of the probe sphere defining the RSFace.
				@param	center	the new center
		*/
		void setCenter(const TVector3<double>& center)
			;

		/** Return the center of the probe sphere defining the RSFace.
				@return	TVector3<double>	the center of the probe sphere
		*/
		TVector3<double> getCenter() const
			;

		/** Set the vector orthogonal to the RSFace.
				@param	normal	the new normal
		*/
		void setNormal(const TVector3<double>& normal)
			throw(Exception::DivisionByZero);

		/** Return the vector orthogonal to the RSFace.
				@return	TVector3<double>	the vector orthogonal to the RSFace.
		*/
		TVector3<double> getNormal() const
			;

		/** Set singular
		*/
		void setSingular(bool singular)
			;

		/** Remove a RSFace from a ReducedSurface graph structure.
				@param	edges			In this HashSet all edges are pushed which do not	
													belong to any face after this remove step.
				@param	vertices	In this HashSet all vertices are pushed which	
													possibliy are isolated after this remove step.
				@param	faces			In this HashSet all faces are pushed which have lost	
													a neighbour face during this remove step.
		*/
		void remove
				(HashSet<RSEdge*>&		edges,
				 HashSet<RSVertex*>&	vertices,
				 HashSet<RSFace*>&		faces)
			;

		//@}

		protected:

		/*_	@name	Attributes
		*/
		//@{

		/*_ The center of the probe sphere defining the RSFace
		*/
		TVector3<double> center_;
		/*_ The vector orthogonal to the RSFace
		*/
		TVector3<double> normal_;
		/*_ singular
		*/
		bool singular_;

		//@}

	};

	/**	@name	Storers
	*/
	//@{

	/**	Output- Operator
	*/
	BALL_EXPORT std::ostream& operator << (std::ostream& s, const RSFace& rsface);

	//@}

} // namespace BALL

#endif // BALL_STRUCTURE_RSFACE_H