This file is indexed.

/usr/include/trilinos/element_density_function.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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#ifndef element_density_functionH
#define element_density_functionH

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

class Element_Density_Function{
public:
  Element_Density_Function(const std::string & funcBody,
			   const std::string & direction,
			   std::stringstream & error_stream);
  ~Element_Density_Function();
  double Interpolate(double, std::stringstream & error_stream);
  void Integrate(double start_var, double end_var,std::stringstream & error_stream);
  void Display_Class(std::ostream&, const std::string &indent);
  void deleteRunningSum(){
    if(running_sum){
      delete [] running_sum;
      running_sum = NULL;
    }};
  
private:
  std::string                     _funcBody;
  std::string                     application_direction;
  PG_RuntimeCompiler::Function  _function;
  double * running_sum;
  static const long long running_sum_length = 10000;
  bool integrated; // has this been integrated
  double integral_total;//Total integration sum
  double max_eval;//maximum finction evaluates to during integration
  double min_eval;//minimum ...
  double min_eval_range;//minimum range of evaluation of the function
  double max_eval_range;//maximum ...

};

}// end namespace PAMGEN_NEVADA

#endif