This file is indexed.

/usr/include/root/Math/MinimizerVariableTransformation.h is in libroot-math-mathcore-dev 5.34.14-1build1.

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
// @(#)root/mathmore:$Id$
// Author: L. Moneta 2009

// Header file for class MinimizerVariable

#ifndef ROOT_Math_MinimizerVariableTransformation
#define ROOT_Math_MinimizerVariableTransformation

namespace ROOT { 

   namespace Math { 

/** 
   Base class for MinimizerVariable transformations defining the functions to deal 
   with bounded parameters

   @ingroup MultiMin
*/ 

class MinimizerVariableTransformation {

public: 

   virtual ~MinimizerVariableTransformation() {}
   
   virtual double Int2ext(double value, double lower, double upper) const = 0;
   virtual double Ext2int(double value, double lower, double upper) const = 0;
   virtual double DInt2Ext(double value, double lower, double upper) const = 0;

};


/** 
   Sin Transformation class for dealing with double bounded variables

   @ingroup MultiMin
*/
class SinVariableTransformation : public MinimizerVariableTransformation {

public:
   
   virtual ~SinVariableTransformation() {}

   double Int2ext(double value, double lower, double upper) const;
   double Ext2int(double value, double lower, double upper) const;
   double DInt2Ext(double value, double lower, double upper) const;

private: 

 
}; 

/** 
   Sqrt Transformation class for dealing with lower bounded variables

   @ingroup MultiMin
*/
class SqrtLowVariableTransformation : public  MinimizerVariableTransformation { 
public: 

   virtual ~SqrtLowVariableTransformation() {}

   double Int2ext(double value, double lower, double upper) const;
   double Ext2int(double value, double lower, double upper) const;
   double DInt2Ext(double value, double lower, double upper) const;

};

/** 
   Sqrt Transformation class for dealing with upper bounded variables

   @ingroup MultiMin
*/
class SqrtUpVariableTransformation : public  MinimizerVariableTransformation { 
public: 

   virtual ~SqrtUpVariableTransformation() {}

   double Int2ext(double value, double lower, double upper) const;
   double Ext2int(double value, double lower, double upper) const;
   double DInt2Ext(double value, double lower, double upper) const;

};


   } // end namespace Math

} // end namespace ROOT


#endif /* ROOT_Math_MinimizerVariableTransformation */