This file is indexed.

/usr/include/CLHEP/Random/Random.icc is in libclhep-dev 2.1.4.1+dfsg-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
31
// $Id: Random.icc,v 1.2 2003/07/17 19:20:02 garren Exp $
// -*- C++ -*-
// 
// -----------------------------------------------------------------------
//                             HEP Random
//                         --- HepRandom ---
//                 inlined functions implementation file
// -----------------------------------------------------------------------
// This file is part of Geant4 (simulation toolkit for HEP).

// =======================================================================
// Gabriele Cosmo - Created: 5th September 1995
//                - Added methods for engine status: 19th November 1996
//                - operator()() is now virtual: 28th July 1997
//                - Simplified initialisation of static generator: 5th Jan 1999
// =======================================================================

namespace CLHEP {

inline double HepRandom::flat(HepRandomEngine* theNewEngine)
{
  return theNewEngine->flat();
}

inline void HepRandom::flatArray(HepRandomEngine* theNewEngine, 
                                 const int size, double* vect)
{
  theNewEngine->flatArray(size,vect);
}

}  // namespace CLHEP