This file is indexed.

/usr/include/root/TSchemaType.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
// @(#)root/core:$Id: TSchemaType.h 34660 2010-07-29 16:40:34Z pcanal $

#ifndef R__TSCHEMATYPE_H
#define R__TSCHEMATYPE_H

#if !defined(__CINT__)
// Avoid clutering the dictionary (in particular with the STL declaration)

#include <string>

namespace ROOT
{
   struct TSchemaType {
      TSchemaType() {}
      TSchemaType(const char *type, const char *dim) : fType(type),fDimensions(dim) {}
      TSchemaType(std::string &type, std::string &dim) : fType(type),fDimensions(dim) {}
      std::string fType;
      std::string fDimensions;
   };
}
#endif // __CINT__
#endif // R__TSCHEMATYPE_H