This file is indexed.

/usr/include/BALL/PYTHON/pyUnaryProcessors.h is in libball1.4-dev 1.4.3~beta1-4.

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

#include <BALL/KERNEL/atomContainer.h>

namespace BALL
{
	using AtomContainerProcessor = UnaryProcessor<AtomContainer>;
	using AtomProcessor = UnaryProcessor<Atom>;
	using BondProcessor = UnaryProcessor<Bond>;
	using ChainProcessor = UnaryProcessor<Chain>;
	using CompositeProcessor = UnaryProcessor<Composite>;
	using FragmentProcessor = UnaryProcessor<Fragment>;
	using ResidueProcessor = UnaryProcessor<Residue>;

	using ConstAtomProcessor = ConstUnaryProcessor<Atom>;
	using ConstCompositeProcessor = ConstUnaryProcessor<Composite>;
}

#endif //BALL_PYTHON_PYPROCESSOR_H