/usr/include/Rivet/RivetAIDA.fhh 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 | #ifndef ANALYSIS_RIVETAIDA_FHH
#define ANALYSIS_RIVETAIDA_FHH
/// @author Andy Buckley
/// @date 2009-01-30
/// @brief Forward declarations of AIDA interfaces
namespace AIDA {
class IAnalysisFactory;
class IHistogramFactory;
class IHistogram1D;
class IHistogram2D;
class IProfile1D;
class IDataPointSetFactory;
class IDataPointSet;
class IDataPoint;
class IMeasurement;
class ITreeFactory;
class ITree;
class IAxis;
}
#include <vector>
namespace Rivet {
/// Typedef for a collection of bin edges.
typedef std::vector<double> BinEdges;
/// Container for x-axis point details
struct DPSXPoint {
DPSXPoint(double xval, double xerrminus, double xerrplus) :
val(xval), errminus(xerrminus), errplus(xerrplus) { }
double val;
double errminus;
double errplus;
};
/// Container for x-axis point details
struct DPSXYPoint {
DPSXYPoint(double xval, double xerrminus, double xerrplus, double yval, double yerrminus, double yerrplus) :
xval(xval), xerrminus(xerrminus), xerrplus(xerrplus), yval(yval), yerrminus(yerrminus), yerrplus(yerrplus) { }
double xval;
double xerrminus;
double xerrplus;
double yval;
double yerrminus;
double yerrplus;
};
}
#endif
|