This file is indexed.

/usr/include/root/Math/GenVector/CoordinateSystemTags.h is in libroot-math-genvector-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
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
// @(#)root/mathcore:$Id$
// Authors: W. Brown, M. Fischler, L. Moneta    2005  

 /**********************************************************************
  *                                                                    *
  * Copyright (c) 2005 , LCG ROOT MathLib Team and                     *
  *                      FNAL LCG ROOT MathLib Team                    *
  *                                                                    *
  *                                                                    *
  **********************************************************************/

// Header source file for CoordinateSystemTag's classes
//
// Created by: Lorenzo Moneta  at Wed Apr 05 2006
//
//

#ifndef ROOT_Math_GenVector_CoordinateSystemTags 
#define ROOT_Math_GenVector_CoordinateSystemTags  1



namespace ROOT {

namespace Math {


//__________________________________________________________________________________________
   /**
      DefaultCoordinateSystemTag
      Default tag for identifying any coordinate system 
      
      @ingroup GenVector
   */
   
   class  DefaultCoordinateSystemTag {}; 


//__________________________________________________________________________________________
   /**
      Tag for identifying vectors based on a global coordinate system
      
      @ingroup GenVector
   */
   class  GlobalCoordinateSystemTag {}; 
   
//__________________________________________________________________________________________
   /**
      Tag for identifying vectors based on a local coordinate system
      
      @ingroup GenVector
   */
   class   LocalCoordinateSystemTag {}; 
   

}  // namespace Math

}  // namespace ROOT



#endif