outStream.write("## Clipping: " + cmin.toString() + " - " + cmax.toString() + LINE_SEPARATOR);
}
outStream.write("## Density correction factor: " + cursclus.getDensityCorrection() + LINE_SEPARATOR);
outStream.write("## Generators:" + LINE_SEPARATOR);
for(int i = 0; i < cursclus.getDim(); i++) {
Distribution gen = cursclus.getDistribution(i);
outStream.write("## " + gen.toString() + LINE_SEPARATOR);
}
if(cursclus.getTransformation() != null && cursclus.getTransformation().getTransformation() != null) {
outStream.write("## Affine transformation matrix:" + LINE_SEPARATOR);
outStream.write(FormatUtil.format(cursclus.getTransformation().getTransformation(), "## ") + LINE_SEPARATOR);
}