This file is indexed.

/usr/include/HepMC/CompareGenEvent.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
23
24
25
26
27
28
29
30
//--------------------------------------------------------------------------
#ifndef HEPMC_COMPARE_GENEVENT_H
#define HEPMC_COMPARE_GENEVENT_H

/////////////////////////////////////////////////////////////////////////
// CompareGenEvent.h
//
// garren@fnal.gov, January 2008
// Free functions used to compare two copies of GenEvent
//////////////////////////////////////////////////////////////////////////
//

#include <iostream>

#include "HepMC/GenEvent.h"

namespace HepMC {

bool compareGenEvent( GenEvent*, GenEvent* );
bool compareSignalProcessVertex( GenEvent*, GenEvent* );
bool compareBeamParticles( GenEvent*, GenEvent* );
bool compareWeights( GenEvent*, GenEvent* );
bool compareVertices( GenEvent*, GenEvent* );
bool compareParticles( GenEvent*, GenEvent* );
bool compareVertex( GenVertex* v1, GenVertex* v2 );

} // HepMC

#endif  // HEPMC_COMPARE_GENEVENT_H
//--------------------------------------------------------------------------