This file is indexed.

/usr/share/cain/gui/TableHistogramAverage.py is in cain 1.9-7.

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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
"""Display histogram errors in a table."""

import wx
import math
from TableBase import TableBase

class TableError(TableBase):
    def __init__(self, parent, model, output):
        TableBase.__init__(self, parent)
        self.SetRowLabelSize(16*10)

        self.resize(len(output.recordedSpecies), 1)
        self.setColumnLabels(['Error'])
        # For each recorded species.
        for row in range(len(output.recordedSpecies)):
            # Recorded species.
            id = model.speciesIdentifiers[output.recordedSpecies[row]]
            self.SetRowLabelValue(row, id)
            # Estimated error in the distribution.
            self.SetCellValue(row, 0, '%g' %
                              output.histograms[row].errorInDistribution())

class TableErrorPanel(wx.Panel):
    def __init__(self, parent, model, output):
        wx.Panel.__init__(self, parent)
        self.grid = TableError(self, model, output)
        sizer = wx.BoxSizer(wx.VERTICAL)
        sizer.Add(self.grid, 1, wx.EXPAND)
        self.SetSizer(sizer)
        self.Fit()

class TableErrorFrame(wx.Frame):
    def __init__(self, model, output, title='Error', parent=None):
        wx.Frame.__init__(self, parent, title=title, size=(600,600))
        display = TableErrorPanel(self, model, output)
        display.grid.AutoSize()
        self.Layout()

#
# Test Code.
#

def main():
    import math
    from StringIO import StringIO

    import sys
    sys.path.insert(1, '..')
    from state.HistogramAverage import HistogramAverage
    from state.Model import Model

    numberOfBins = 20
    multiplicity = 2
    recordedSpecies = [0]
    output = HistogramAverage(numberOfBins, multiplicity, recordedSpecies)
    # Poisson with mean 10. PMF = e^-lambda lambda^n / n!
    poisson = [math.exp(-10)]
    for n in range(1, numberOfBins):
        poisson.append(poisson[-1] * 10. / n)
    cardinality = numberOfBins
    sumOfWeights = sum(poisson)
    mean = 0.
    for i in range(numberOfBins):
        mean += poisson[i] * i
    mean /= sumOfWeights
    summedSecondCenteredMoment = 0.
    for i in range(numberOfBins):
        summedSecondCenteredMoment += poisson[i] * (i - mean)**2

    stream = StringIO(repr(cardinality) + '\n' + 
                      repr(sumOfWeights) + '\n' +
                      repr(mean) + '\n' + 
                      repr(summedSecondCenteredMoment) + '\n' + 
                      '0\n1\n' +
                      ''.join([repr(_x) + ' ' for _x in poisson]) + '\n' +
                      '0 ' * len(poisson) + '\n')
    output.histograms[0].read(stream, multiplicity)

    app = wx.PySimpleApp()
    model = Model()
    model.speciesIdentifiers = ['X']
    TableErrorFrame(model, output).Show()
    app.MainLoop()

if __name__ == '__main__':
    main()