This file is indexed.

/usr/include/mia-2.4/mia/3d/critical_point.hh is in libmia-2.4-dev 2.4.3-5.

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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
/* -*- mia-c++  -*-
 *
 * This file is part of MIA - a toolbox for medical image analysis 
 * Copyright (c) Leipzig, Madrid 1999-2016 Gert Wollny
 *
 * MIA is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with MIA; if not, see <http://www.gnu.org/licenses/>.
 *
 */

#ifndef __mia_3d_criticalpoint_h
#define __mia_3d_criticalpoint_h

#include <list>

#include <mia/3d/matrix.hh>

NS_MIA_BEGIN

/** 
    \ingroup basic 
    
    \brief A class to hold a critical point.
    This class holds a critical point in a 3D vector field 
    It consists of a localtion 
     \f$ x_0 \in \mathbb{R}^3 \f$, Matrix \f$ A \in \mathbb{R}^{3 \times 3} \f$, and
    a magnitude \f$ \gamma \in \mathbb{R} \f$.
    It is used only as an intermidiate storage. 

    @remark partially untested 
*/


class EXPORT_3D C3DCriticalPoint {
public:

	/// A list of critical points 
	typedef std::vector< C3DCriticalPoint > List;
	
	/** The standart constructor.
	    It created a critical point with a magintude of zero, at location (0,0,0) with the 
	    Zero - Matrix as phase portrait.
	*/
	
	C3DCriticalPoint();

	/** 
	    Construct a critical point at a certain location. 
	    Magnitude and phase portrait are set to zero. 
	    \param x0_ location of the new critical point
	*/

	
	C3DCriticalPoint(const C3DFVector& x0_);
	/**
	   Construct a critical point at a certain location. 
	   Magnitude and pahse portrait are set to zero. 
	   \param x x-coordinate of the new critical point
	   \param y y-coordinate of the new critical point
	   \param z z-coordinate of the new critical point
	*/
	C3DCriticalPoint(float x,float y, float z);
	
	/**
	   Copy constructor. 
	   \param org The critical point to be copied.
	 */
	C3DCriticalPoint(const C3DCriticalPoint& org);
	
	/**
	   Assignment operator. 
	   \param org The critical point to be copied.
	 */
	C3DCriticalPoint& operator = (const C3DCriticalPoint& org);
	
	/** \retval the (read only) location of the critical point.  */
	const C3DFVector get_point()const;
	
	/**  \retval the (read only) phase portrait of the critical point. */
	const C3DFMatrix get_a()const;
	
	/** \retval the magnitude of the critical point */
	float get_gamma()const;

	/** \retval the location of the critical point */
	void set_point(const C3DFVector&);
	
	/** \retval the phase portrait of the critical point */
	void  set_a(const C3DFMatrix&);

	
	/** set the magnitude if the critical point 
	    \param gamma_ the new magnitude of the critical point
	 */
	
	void set_gamma(float gamma_);
	
	/** return the magniture of the critical point at location \a x according to 
	    \f[ \frac {\Gamma}{ \| \mathbf{x} - \mathbf{x_0} \| ^ 2} A \dot (x - x0) \f]
	    \param x location weher to evaluate the vector field 
	    \retval value of vector field created by this crtitical point at \a x
	*/
	C3DFVector at(const C3DFVector& x) const;

	/** return the magniture of the critical point at location \a x according to 
	    \f[ \frac {A \dot (x - x0)}{ | \| \mathbf{x} - \mathbf{x_0} \|_2 - gamma |}  \f]
	    \param x location weher to evaluate the vector field 
	    \retval value of vector field created by this crtitical point at \a x
	*/

	C3DFVector at_alt(const C3DFVector& x) const;

	/** compare two critical points 
	- they are equal, if magnitude, phase portrait, and location are equal
	*/
	bool operator ==(const C3DCriticalPoint& cp) const;	
#ifdef UGLY_HACK	
	bool operator < (const C3DCriticalPoint& cp) const;	
#endif	


private:
	float gamma;
	C3DFVector x0;
	C3DFMatrix A;
};

/// typedef for convinience 
typedef C3DCriticalPoint::List C3DCriticalPointList;


/** 
    \ingroup basic 
    \brief A class to hold a criticalpoint with eigenvalues and eigenvectors.
    
    @remark untested 
*/

class EXPORT_3D C3DCriticalPointEigen {
	
	
        /// where is the critical point 
	C3DFVector location; 


	/// what is its phase portrait
	C3DFMatrix portrait; 
	
	/// first eigenvalue (always real)
	float eval1;
	/// second real eigenvalue, or real part of a the conjugated complex eigenvalues 
	float eval2;
	/// third real eigenvalue, or imaginary part of a the conjugated complex eigenvalues 	
	float eval3;
	
	/// first eigenvector (always real)
	T3DCVector<float> evec1;
	
	/// second real eigenvector, or real part of a the conjugated complex eigenvectors
	T3DCVector<float> evec2; 
	
	/// third real eigenvector, or imaginary part of a the conjugated complex eigenvectors
	T3DCVector<float> evec3;
	
public:	
	/// types of critical points
	enum EVType {ev_zero, /*!< all eigenvalues are zero (more a placeholder) */ 
		     ev_real,  /*!< three real distinct eigenvalues */
		     ev_real_two_equal, /*!< three real eigenvalues, two equal */
		     ev_real_three_equal, /*!< three real eigenvalues, all equal */
		     ev_complex };   /*!< one real eigenvalue, two conjugated complex */
	
	/** Construtor to create a critical point with evaluated eigenvalues and - vectors from 
	    a critical point.
	    \param cp the critical point to construct from */
	C3DCriticalPointEigen(C3DCriticalPoint cp);
	
	/** Construtor to create a critical point with evaluated eigenvalues and - vectors .
	    \param l location of the critical point
	    \param m phase portrait of the critical point
	*/
	C3DCriticalPointEigen(const C3DFVector& l, const C3DFMatrix& m);
	
	/** Contruct a critical point from given data. 
	   \param location_ location of critical point
	   \param portrait_ phase portrait of critical point
	   \param eval1 first eigenvalue (always real)
	   \param eval2 second real eigenvalue or real part of conjugated complex ones
	   \param eval3 third real eigenvalue or imaginary part of conjugated complex ones
	   \param evec1 first eigenvector (always real)
	   \param evec2 second real eigenvector or real part of conjugated complex ones
	   \param evec3 third real eigenvector or imaginary part of conjugated complex ones
	   \param type how to interpret the second and third eigenvalues/-vectors
	 */
	C3DCriticalPointEigen(const C3DFVector& location_,
			    const C3DFMatrix& portrait_,
			    float eval1,float eval2,float eval3,
			    const C3DFVector& evec1,const C3DFVector& evec2, const C3DFVector& evec3,
			    EVType type);
			    
	
	/** \retval type of eigenvalues and eigenvectors */
	EVType get_type()const;
	
	/** \retval get first eigenvalue */
	float get_eval1()const; 
	/** \retval get second eigenvalue as real 
	    \remark use only for loading and storing
	*/	
	float get_eval2()const; 
	/** \retval get second eigenvalue as real 
	    \remark use only for loading and storing
	*/	
	float get_eval3()const;
	
	/** \retval get second eigenvalue as real 
	    \remark asserts whether eigenvalue is really real
	*/	
	float get_real_eval2()const; 
	/** \retval get third eigenvalue as real 
	    \remark asserts whether eigenvalue is really real
	*/	
	float get_real_eval3()const;
	
	/** \retval get second eigenvalue as complex
	    \remark asserts whether eigenvalue is really complex
	*/	
	std::complex<float> get_complex_eval2()const; 
	
	/** \retval get third eigenvalue as complex
	    \remark asserts whether eigenvalue is really complex
	*/	
	std::complex<float> get_complex_eval3()const;
	
	/** \retval a copy of the phase portrait
	 */
	const C3DFMatrix get_portrait()const; 
	
	/** \retval a copy of the location 
	 */
	const C3DFVector get_location()const; 
	
	/** \retval a copy of the first eigenvector 
	 */
	const C3DFVector get_evect1()const; 
	
	/** \retval a copy of the second eigenvector as real
	    \remark use only for loading and storing
	 */

	const C3DFVector get_real_evect2()const; 
	const C3DFVector get_real_evect3()const; 
	const T3DCVector<float> get_complex_evect2()const; 
	const T3DCVector<float> get_complex_evect3()const; 
	

private:
	EVType type;
	bool estimate();
};

typedef std::vector< C3DCriticalPointEigen > C3DCriticalPointEigenList;

inline C3DCriticalPointEigen::EVType C3DCriticalPointEigen::get_type()const
{
	return type; 
}
inline float C3DCriticalPointEigen::get_eval1()const
{
	return eval1; 
}     
inline float C3DCriticalPointEigen::get_eval2()const 
{
	return eval2; 
}     
inline float C3DCriticalPointEigen::get_eval3()const
{
	return eval3; 
}     

inline float C3DCriticalPointEigen::get_real_eval2()const
{
	assert(type != ev_complex);
	return eval2; 
}     
inline float C3DCriticalPointEigen::get_real_eval3()const
{
	assert(type != ev_complex);
	return eval3; 
}     
inline std::complex<float> C3DCriticalPointEigen::get_complex_eval2()const
{
	assert(type == ev_complex);
	return std::complex<float>(eval2,eval3); 
}
inline std::complex<float> C3DCriticalPointEigen::get_complex_eval3()const
{
	assert(type == ev_complex);
	return std::complex<float>(eval2,eval3); 
}

inline const C3DFVector C3DCriticalPointEigen::get_evect1()const
{
	return C3DFVector(evec1.x.real(), evec1.y.real(), evec1.z.real()); 
}
inline const C3DFVector C3DCriticalPointEigen::get_real_evect2()const
{
	assert(type != ev_complex);	
	return C3DFVector(evec2.x.real(), evec2.y.real(), evec2.z.real()); 
}
inline const C3DFVector C3DCriticalPointEigen::get_real_evect3()const
{
	assert(type != ev_complex);
	return C3DFVector(evec3.x.real(), evec3.y.real(), evec3.z.real()); ; 
}
inline const T3DCVector<float> C3DCriticalPointEigen::get_complex_evect2()const
{
	assert(type == ev_complex);
	return evec2;
}
inline const T3DCVector<float> C3DCriticalPointEigen::get_complex_evect3()const
{
	assert(type == ev_complex);
	return evec3;
}

inline const C3DFVector C3DCriticalPointEigen::get_location()const
{
	return location; 
}


inline const C3DFMatrix C3DCriticalPointEigen::get_portrait()const
{
	return portrait; 
}


//template implementation


inline const C3DFVector  C3DCriticalPoint::get_point()const
{
	return x0;
}

inline const C3DFMatrix  C3DCriticalPoint::get_a()const
{
	return A;
}


inline void C3DCriticalPoint::set_point(const C3DFVector& x) 
{
	x0 = x;
}

inline void C3DCriticalPoint::set_a(const C3DFMatrix& a) 
{
	A = a;
}


inline  float C3DCriticalPoint::get_gamma()const
{
	return gamma;
}

inline void C3DCriticalPoint::set_gamma(float _gamma)
{
	gamma = _gamma;
}


inline bool C3DCriticalPoint::operator ==(const C3DCriticalPoint& cp) const
{
	return  gamma==cp.gamma && A == cp.A && x0 == cp.x0;
}

#ifdef UGLY_HACK
inline bool C3DCriticalPoint::operator < (const C3DCriticalPoint& cp) const
{
	// we shouldn't need this ...
	return x0 < cp.x0; 
}
#endif

#endif

NS_MIA_END