This file is indexed.

/usr/include/LWH/AIHistogramFactory.h is in librivet-dev 1.8.3-1.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
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
// -*- C++ -*-
#ifndef LWH_AIHistogramFactory_H
#define LWH_AIHistogramFactory_H

#ifndef LWH_USING_AIDA

/** @cond DONT_DOCUMENT_STRIPPED_DOWN_AIDA_INTERFACES */

namespace AIDA {
  
  class ICloud1D;
  class ICloud2D;
  class ICloud3D;
  class IBaseHistogram;
  class IHistogram1D;
  class IHistogram2D;
  class IHistogram3D;
  class IProfile1D;
  class IProfile2D;
  class IDataPointSet;
  
  class IHistogramFactory {
    
  public:
    
    virtual ~IHistogramFactory() {}
    
    virtual bool destroy(IBaseHistogram * hist) = 0;

    virtual IHistogram1D *
    createHistogram1D(const std::string &, const std::string &,
                      int, double, double, const std::string & = "") = 0;
    virtual IHistogram1D *
    createHistogram1D(const std::string &, int, double, double) = 0;
    virtual IHistogram1D *
    createHistogram1D(const std::string &, const std::string & ,
                      const std::vector<double> &, const std::string & = "") = 0;
    virtual IHistogram1D *
    createCopy(const std::string &, const IHistogram1D &) = 0;
    virtual IHistogram1D * add(const std::string &,
                               const IHistogram1D &, const IHistogram1D &) = 0;
    virtual IHistogram1D * subtract(const std::string &, const IHistogram1D &,
                                    const IHistogram1D &) = 0;
    virtual IHistogram1D * multiply(const std::string &, const IHistogram1D &,
                                    const IHistogram1D &) = 0;
    virtual IDataPointSet * divide(const std::string &, const IHistogram1D &,
                                   const IHistogram1D &) = 0;



    virtual IProfile1D *
    createProfile1D(const std::string &, const std::string &,
                      int, double, double, const std::string & = "") = 0;
    virtual IProfile1D *
    createProfile1D(const std::string &, int, double, double) = 0;
    virtual IProfile1D *
    createProfile1D(const std::string &, const std::string & ,
                      const std::vector<double> &, const std::string & = "") = 0;
    virtual IProfile1D *
    createCopy(const std::string &, const IProfile1D &) = 0;
    // virtual IProfile1D * add(const std::string &,
    //                            const IProfile1D &, const IProfile1D &) = 0;
    // virtual IProfile1D * subtract(const std::string &, const IProfile1D &,
    //                                 const IProfile1D &) = 0;
    // virtual IProfile1D * multiply(const std::string &, const IProfile1D &,
    //                                 const IProfile1D &) = 0;
    // virtual IDataPointSet * divide(const std::string &, const IProfile1D &,
    //                                const IProfile1D &) = 0;

    virtual IHistogram2D *
    createHistogram2D(const std::string & path, const std::string & title,
		      int nx, double xlo, double xup,
		      int ny, double ylo, double yup,
		      const std::string & = "") = 0;

    virtual IHistogram2D *
    createHistogram2D(const std::string & pathAndTitle,
		      int nx, double xlo, double xup,
		      int ny, double ylo, double yup) = 0;

    virtual IHistogram2D *
    createHistogram2D(const std::string & path, const std::string & title,
		      const std::vector<double> & xedges,
		      const std::vector<double> & yedges,
		      const std::string & = "") = 0;

    virtual IHistogram2D *
    createCopy(const std::string & path, const IHistogram2D & hist) = 0;

  };
  
}

/** @endcond */

#else
#include "AIDA/IHistogramFactory.h"
#endif

#endif /* LWH_AIHistogramFactory_H */