Release Notes
AIDA 3.2.1
- Changed the return type of method setLabel in IAxisStyle from boolean to void. It was changed to boolean by mistake in release 3.2.0. (AIDA-44)
AIDA 3.2
- Added options argument to create methods in IDataPointSetFactory (AIDA-9)
- Added method to ICloud to retrieve the number of entries after which the
ICloud will convert to an IHistogram. (AIDA-11)
- In the AIDA factories that create IManagedObjects (IHistograms, IClouds,
IProfiles etc) the argument name has been changed to path. This
means that at creation time the path can now contain a directory structure,
where directories are separated by "/". The last part of the path is taken to
be the name of the IManagedObject. For those factories that require a title,
if the title is not provided, the default is the name. Important: the path
MUST exist. If a directory does not exist an exception is thrown. (AIDA-14)
- New methods added to IDataPointSetFactory to make it easier to create 1D,
2D and 3D IDataPointSets. The create methods take full arrays of values and
errors. (AIDA-17)
- IDataPointSet createX(String name, double[] x, double ex[], double
ex2[]);
- IDataPointSet createY(String name, double[] y, double ey[], double
ey2[]);
- IDataPointSet createXY(String name,double[] x,double[] y,double[]
ex,double[] ey,double[] ex2,double[] ey2);
- IDataPointSet createXYZ(String name,double[] x,double[] y,double[]
z,double[] ex,double[] ey,double[] ez,double[] ex2,double[] ey2,double[]
ez2);
- For the C++ interfaces all return types
const std::string&
have been changed to std::string.
(AIDA-18)
- The following methods have been added to the ITuple interface (AIDA-22)
- String[] columnNames()
- Class[] columnTypes()
- Added method to ITree to find a mount point. (AIDA-24)
- ITree findTree( String path );
- New methods added to IDataPointSet to set all the values and errors of a
given coordinate at once. (AIDA-25)
- void setCoordinate( int coord, double[] value, double[] errp, double[]
errm);
- Changed the signature of the addPoint() method on IDataPointSet; it now returns the IDataPoint that has been added (before it was void).
- Added the following methods to IFunction:
- String title();
- void setTitle(String);