This file is indexed.

/usr/include/root/RooCintUtils.h is in libroot-roofit-dev 5.34.00-2.

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
/*****************************************************************************
 * Project: RooFit                                                           *
 * Package: RooFitCore                                                       *
 *    File: $Id: RooCintUtils.h 34973 2010-08-24 19:07:18Z pcanal $
 * Authors:                                                                  *
 *   WV, Wouter Verkerke, UC Santa Barbara, verkerke@slac.stanford.edu       *
 *   DK, David Kirkby,    UC Irvine,         dkirkby@uci.edu                 *
 *                                                                           *
 * Copyright (c) 2000-2005, Regents of the University of California          *
 *                          and Stanford University. All rights reserved.    *
 *                                                                           *
 * Redistribution and use in source and binary forms,                        *
 * with or without modification, are permitted according to the terms        *
 * listed in LICENSE (http://roofit.sourceforge.net/license.txt)             *
 *****************************************************************************/
#ifndef ROO_CINT_UTILS
#define ROO_CINT_UTILS

#include "Rtypes.h"
#include <list>
#include <string>
namespace RooCintUtils {
  
  std::pair<std::list<std::string>,unsigned int> ctorArgs(const char* classname, UInt_t nMinArgs=0) ;
  Bool_t isEnum(const char* typeName) ;
  Bool_t isValidEnumValue(const char* typeName, const char* value) ;
  const char* functionName(void* func) ;
  Bool_t matchFuncPtrArgs(void* func, const char* args) ;
  Bool_t isTypeDef(const char* trueName, const char* aliasName) ;
  std::string trueName(const char* typeDefName) ;
  
}

#endif