This file is indexed.

/usr/include/MAdLib/MAdOutput.h is in libmadlib-dev 1.3.0-2.1ubuntu1.

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
63
64
65
66
// -*- C++ -*-
// -------------------------------------------------------------------
// MAdLib - Copyright (C) 2008-2009 Universite catholique de Louvain
//
// See the Copyright.txt and License.txt files for license information. 
// You should have received a copy of these files along with MAdLib. 
// If not, see <http://www.madlib.be/license/>
//
// Please report all bugs and problems to <contrib@madlib.be>
//
// Authors: Gaetan Compere, Jean-Francois Remacle
// -------------------------------------------------------------------

#ifndef _H_MADOUTPUT
#define _H_MADOUTPUT

#include "SizeFieldBase.h"
#include "MeshDataBaseInterface.h"

#include <string>
#include <set>

namespace MAd {

  // -------------------------------------------------------------------
  typedef enum MAdOutputData {
    OD_CONSTANT = 0,
    OD_MEANRATIO = 1,
    OD_ORIENTEDMEANRATIO = 2,
    OD_SIZEFIELD_MEAN = 3,
    OD_SIZEFIELD_MIN = 4,
    OD_SIZEFIELD_MAX = 5,
    OD_DIMENSION = 6,
    OD_ITERORDER = 7,
    OD_CURVATURE_DIV = 8,
    OD_CURVATURE_MAX = 9,
    OD_CURVATURE_MIN = 10,
    OD_CURVATURE_MAX_VEC = 11,
    OD_CURVATURE_MIN_VEC = 12,
    OD_ANISO_SF_AXIS0 = 13,
    OD_ANISO_SF_AXIS1 = 14,
    OD_ANISO_SF_AXIS2 = 15,
    OD_DISTANCE       = 16
  } MAdOutputData;

  // -------------------------------------------------------------------

  void MAdGmshOutput(const pMesh m, const pSField sf, 
                     const char *fn, MAdOutputData type);

  void MAdAttachedNodalDataOutput   (const pMesh m, const char *fn, 
                                     pMeshDataId id);
  void MAdAttachedNodalDataVecOutput(const pMesh m, const char *fn, 
                                     pMeshDataId id);

  void printPosEntities(const pPList ents, std::string fn, MAdOutputData type, 
                        const pSField sf=NULL, int id=0);

  void printPosRegions(const std::set<pRegion>, std::string fn, MAdOutputData type, 
                       const pSField sf=NULL, int id=0);

  // -------------------------------------------------------------------

}

#endif