This file is indexed.

/usr/include/root/Math/SMatrixDfwd.h is in libroot-math-smatrix-dev 5.34.30-0ubuntu8.

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
// @(#)root/smatrix:$Id$
// Authors: T. Glebe, L. Moneta    2005

#ifndef ROOT_Math_SMatrixDfwd
#define ROOT_Math_SMatrixDfwd

namespace ROOT { 

namespace Math{ 

   template <class T, unsigned int D1, unsigned int D2, class R> class SMatrix; 

   template <class T, unsigned int D1, unsigned int D2> class MatRepStd; 
   template <class T, unsigned int D> class MatRepSym; 

   typedef SMatrix<double,2,2,MatRepStd<double,2,2> > SMatrix2D; 
   typedef SMatrix<double,3,3,MatRepStd<double,3,3> > SMatrix3D; 
   typedef SMatrix<double,4,4,MatRepStd<double,4,4> > SMatrix4D; 
   typedef SMatrix<double,5,5,MatRepStd<double,5,5> > SMatrix5D; 
   typedef SMatrix<double,6,6,MatRepStd<double,6,6> > SMatrix6D; 
   typedef SMatrix<double,7,7,MatRepStd<double,7,7> > SMatrix7D; 


   typedef SMatrix<double,2,2,MatRepSym<double,2> >   SMatrixSym2D; 
   typedef SMatrix<double,3,3,MatRepSym<double,3> >   SMatrixSym3D; 
   typedef SMatrix<double,4,4,MatRepSym<double,4> >   SMatrixSym4D; 
   typedef SMatrix<double,5,5,MatRepSym<double,5> >   SMatrixSym5D; 
   typedef SMatrix<double,6,6,MatRepSym<double,6> >   SMatrixSym6D; 
   typedef SMatrix<double,7,7,MatRepSym<double,7> >   SMatrixSym7D; 

}  // namespace Math

}  // namespace ROOT


#endif