This file is indexed.

/usr/include/root/TBuffer3DTypes.h is in libroot-core-dev 5.34.00-2.

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
// @(#)root/base:$Id: TBuffer3DTypes.h 20877 2007-11-19 11:17:07Z rdm $
// Author: Richard Maunder  10/3/2005

/*************************************************************************
 * Copyright (C) 1995-2005, Rene Brun and Fons Rademakers.               *
 * All rights reserved.                                                  *
 *                                                                       *
 * For the licensing terms see $ROOTSYS/LICENSE.                         *
 * For the list of contributors see $ROOTSYS/README/CREDITS.             *
 *************************************************************************/

#ifndef ROOT_TBuffer3DTypes
#define ROOT_TBuffer3DTypes

//TODO: Check on casing of enums - also clearer names would help

//TODO: Go through all shapes and check type is being set for each

// Scope to avoid clashes
class TBuffer3DTypes {
public:
                            // Buffer class        Producer class
                            //                     g3d              geom
   enum EType { kGeneric,   // TBuffer3D           Rest             Rest
                kComposite, // TBuffer3D                            TGetCompositeShape
                kLine,      // TBuffer3D           TPolyLine3D
                kMarker,    // TBuffer3D           TPolyMarker3D
                kSphere,    // TBuffer3DSphere     TSPHE            TGeoSphere
                kTube,      // TBuffer3DTube                        TGeoTube
                kTubeSeg,   // TBuffer3DTubeSeg                     TGeoTubeSeg
                kCutTube }; // TBuffer3DCutTube                     TGeoCtub
};

#endif