This file is indexed.

/usr/include/xylib/chiplot.h is in libxy-dev 0.8-1.

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
// chiplot text format - 4 line of headers followed by x y data lines
// Licence: Lesser GNU Public License 2.1 (LGPL)
// $Id: chiplot.h 697 2010-08-19 12:15:59Z wojdyr $

// The format is trivial, as described here:
// http://www.esrf.eu/computing/scientific/FIT2D/FIT2D_REF/node115.html#SECTION0001851500000000000000

#ifndef XYLIB_CHIPLOT_H_
#define XYLIB_CHIPLOT_H_
#include "xylib.h"

namespace xylib {

    class ChiPlotDataSet : public DataSet
    {
        OBLIGATORY_DATASET_MEMBERS(ChiPlotDataSet)
    };

}
#endif // XYLIB_CHIPLOT_H_