This file is indexed.

/usr/include/trilinos/geometry_transform.h is in libtrilinos-dev 10.4.0.dfsg-1ubuntu2.

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
#ifndef geometry_transformH
#define geometry_transformH

#include "../rtcompiler/FunctionRTC.hh"
namespace PAMGEN_NEVADA {

class Geometry_Transform{
public:
  Geometry_Transform(const std::string & funcBody,
			   std::stringstream & error_stream);
  ~Geometry_Transform();
  void Display_Class(std::ostream&, const std::string &indent);
  void Operate(double* coords, long long num_nodes,long long dim);

  
private:
  std::string                     _funcBody;
  std::string                     application_direction;
  PG_RuntimeCompiler::Function  _function;

};
}
#endif