This file is indexed.

/usr/include/HepMC/IteratorRange.h is in libhepmc-dev 2.06.09-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
21
22
//--------------------------------------------------------------------------
#ifndef HEPMC_ITERATOR_RANGE_H
#define HEPMC_ITERATOR_RANGE_H

//////////////////////////////////////////////////////////////////////////
// Matt.Dobbs@Cern.CH, September 1999, refer to:
// M. Dobbs and J.B. Hansen, "The HepMC C++ Monte Carlo Event Record for
// High Energy Physics", Computer Physics Communications (to be published).
//
// Iterator ranges used by GenVertex
//////////////////////////////////////////////////////////////////////////


namespace HepMC {

    /// type of iteration
    enum IteratorRange { parents, children, family, 
			 ancestors, descendants, relatives };
} // HepMC

#endif  // HEPMC_ITERATOR_RANGE_H
//--------------------------------------------------------------------------