This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "FreeHEP Export and Save As Library".
The branch, build has been updated
via 0b66283644b6deafcc85d8432a7dc0b8b07e8253 (commit)
via 91f7426a28390e7196607a5a81ec2804da28c2dd (commit)
via 119db0ea9b99903464c99925736d05d86e476756 (commit)
via e701188ea349081d333522a1d4aea0126f604e1a (commit)
via 342ec8b76948183a02017020aa8627d54a5e5783 (commit)
from 8a371d4484a58a567d5d55d8218058181356c9cc (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 0b66283644b6deafcc85d8432a7dc0b8b07e8253
Author: Gabriele Giacone <[email protected]>
Date: Tue Jan 12 20:20:43 2010 +0100
Fixed upstream tarball
commit 91f7426a28390e7196607a5a81ec2804da28c2dd
Merge: 8a371d4484a58a567d5d55d8218058181356c9cc
119db0ea9b99903464c99925736d05d86e476756
Author: Gabriele Giacone <[email protected]>
Date: Tue Jan 12 20:14:44 2010 +0100
Merge branch 'master' into build
-----------------------------------------------------------------------
Summary of changes:
debian/control | 4 +-
debian/copyright | 26 ++--
debian/maven.properties | 2 +-
.../org/freehep/util/export/ExportDialog.java | 0
.../org/freehep/util/export/ExportFileType.java | 0
.../freehep/util/export/ExportFileTypeGroups.java | 0
.../util/export/ExportFileTypeRegistry.java | 0
.../java}/org/freehep/util/export/MimeTypes.java | 0
.../util/export/VectorGraphicsTransferable.java | 0
src/site/apt/index.apt | 12 ++
src/site/site.xml | 42 +++++
.../util/export/test/ExportFileTypeTest.java | 17 ++
.../org/freehep/util/export/test/ExportTest.java | 106 ++++++++++++
.../org/freehep/util/export/test/ExportTest.ini | 15 ++
.../org/freehep/util/export/test/ExportTest.plotml | 169 ++++++++++++++++++++
.../freehep/util/export/test/ScatterPlot.plotml | 142 ++++++++++++++++
16 files changed, 516 insertions(+), 19 deletions(-)
diff --git a/debian/control b/debian/control
index 543858b..bcdc7b2 100644
--- a/debian/control
+++ b/debian/control
@@ -2,8 +2,8 @@ Source: freehep-export
Section: java
Priority: optional
Maintainer: Debian Java Maintainers
<[email protected]>
-Uploaders: Gabriele Giacone <[email protected]>,
- Giovanni Mascellani <[email protected]>
+Uploaders: Giovanni Mascellani <[email protected]>,
+ Gabriele Giacone <[email protected]>
Build-Depends: debhelper (>= 7), cdbs, default-jdk, maven-debian-helper
Build-Depends-Indep: libsurefire-java (>= 2.4.3), libfreehep-swing-java,
libjas-plotter-java, libmaven-exec-plugin-java
diff --git a/debian/copyright b/debian/copyright
index 34df9d6..9684a4a 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -4,27 +4,21 @@ Maintainer: The FreeHEP team
Source: http://java.freehep.org/
Files: *
-Copyright: © 2003 - 2007 Mark Donszelmann <[email protected]>
- © 2003 - 2007 Tony Johnson <[email protected]>
- © 2003 - 2007 Max Turri <[email protected]>
- © 2003 - 2007 Victor Serbo <[email protected]>
- © 2003 - 2007 Gary Bower <[email protected]>
- © 2003 - 2007 Julius Hrivnac <[email protected]>
- © 2003 - 2007 Cal Loomis <[email protected]>
- © 2003 - 2007 Joseph Perl <[email protected]>
- © 2003 - 2007 Peter Armstrong
- © 2003 - 2007 Simon Fischer
- © 2003 - 2007 Andre Bach
- © 2003 - 2007 Partick Hellwig
- © 2003 - 2007 Sami Kama
- © 2003 - 2007 Paul Spence
+Copyright: 2000-2007, CERN, Geneva, Switzerland
+ 2000-2007, SLAC, Stanford, California, U.S.A.
+ 2000-2007, University of California Santa Cruz, U.S.A.
License: LGPL-2.1+
On Debian GNU/Linux system you can find the complete text of the
LGPL-2.1 license in '/usr/share/common-licenses/LGPL-2.1'
+ No license files are included in upstream tarball but copyright holders
+ list is available at
+<http://java.freehep.org/svn/repos/freehep/show/freehep/trunk/vectorgraphics/LICENSE.txt>
+ and adopted license at <http://java.freehep.org/license.html>
Files: debian/*
-Copyright: © 2009 Gabriele Giacone <[email protected]>
-Copyright: © 2009 Giovanni Mascellani <[email protected]>
+Copyright: 2010, Giovanni Mascellani <[email protected]>
+ 2010, Gabriele Giacone <[email protected]>
License: GPL-3+
On Debian GNU/Linux system you can find the complete text of the
GPL-3 license in '/usr/share/common-licenses/GPL-3'
+
diff --git a/debian/maven.properties b/debian/maven.properties
index ab18ddd..d2f1b82 100644
--- a/debian/maven.properties
+++ b/debian/maven.properties
@@ -1 +1 @@
-maven.test.skip=false
+maven.test.skip=true
diff --git a/src/org/freehep/util/export/ExportDialog.java
b/src/main/java/org/freehep/util/export/ExportDialog.java
similarity index 100%
rename from src/org/freehep/util/export/ExportDialog.java
rename to src/main/java/org/freehep/util/export/ExportDialog.java
diff --git a/src/org/freehep/util/export/ExportFileType.java
b/src/main/java/org/freehep/util/export/ExportFileType.java
similarity index 100%
rename from src/org/freehep/util/export/ExportFileType.java
rename to src/main/java/org/freehep/util/export/ExportFileType.java
diff --git a/src/org/freehep/util/export/ExportFileTypeGroups.java
b/src/main/java/org/freehep/util/export/ExportFileTypeGroups.java
similarity index 100%
rename from src/org/freehep/util/export/ExportFileTypeGroups.java
rename to src/main/java/org/freehep/util/export/ExportFileTypeGroups.java
diff --git a/src/org/freehep/util/export/ExportFileTypeRegistry.java
b/src/main/java/org/freehep/util/export/ExportFileTypeRegistry.java
similarity index 100%
rename from src/org/freehep/util/export/ExportFileTypeRegistry.java
rename to src/main/java/org/freehep/util/export/ExportFileTypeRegistry.java
diff --git a/src/org/freehep/util/export/MimeTypes.java
b/src/main/java/org/freehep/util/export/MimeTypes.java
similarity index 100%
rename from src/org/freehep/util/export/MimeTypes.java
rename to src/main/java/org/freehep/util/export/MimeTypes.java
diff --git a/src/org/freehep/util/export/VectorGraphicsTransferable.java
b/src/main/java/org/freehep/util/export/VectorGraphicsTransferable.java
similarity index 100%
rename from src/org/freehep/util/export/VectorGraphicsTransferable.java
rename to src/main/java/org/freehep/util/export/VectorGraphicsTransferable.java
diff --git a/src/site/apt/index.apt b/src/site/apt/index.apt
new file mode 100644
index 0000000..302e64c
--- /dev/null
+++ b/src/site/apt/index.apt
@@ -0,0 +1,12 @@
+ ---
+FreeHEP Export
+ ---
+ ---
+Mark Donszelmann
+ ---
+
+Introduction
+
+ Library to register filetypes (which can be loaded as plugin modules).
+This library is used by
{{{http://java.freehep.org/vectorgraphics}VectorGraphics}}
+to allow new output formats to be added by adding new jar files to the
classpath.
diff --git a/src/site/site.xml b/src/site/site.xml
new file mode 100644
index 0000000..8d0a7b7
--- /dev/null
+++ b/src/site/site.xml
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<project name="freehep-export">
+ <bannerLeft>
+ <name>FreeHEP Export</name>
+<!-- <src>http://maven.apache.org/images/apache-maven-project.png</src>
-->
+<!-- FIXME, should this be substituted by some properties -->
+ <href>http://java.freehep.org/freehep-export</href>
+ </bannerLeft>
+
+ <bannerRight>
+ <name>FreeHEP</name>
+ <src>http://java.freehep.org/images/sm-freehep.gif</src>
+ <href>http://java.freehep.org/</href>
+ </bannerRight>
+
+ <body>
+ <links>
+ <item name="FreeHEP" href="http://java.freehep.org/"/>
+ <item name="JAS" href="http://jas.freehep.org/"/>
+ <item name="WIRED" href="http://wired.freehep.org/"/>
+ </links>
+
+ <menu name="General">
+ <item name="Introduction" href="index.html"/>
+ <item name="License" href="license.html"/>
+ <item name="Team" href="team-list.html"/>
+ </menu>
+
+ <menu name="User Info">
+ <item name="Summary" href="project-summary.html"/>
+ <item name="API Doc" href="apidocs/index.html"/>
+ <item name="Jar File(s)"
href="http://java.freehep.org/maven2/org/freehep/freehep-export/"/>
+ <item name="Dependencies" href="dependencies.html"/>
+ <item name="Forum" href="http://forum.freehep.org/"/>
+ <item name="Bug Reports"
href="http://bugs.freehep.org/browse/FHEXPORT"/>
+ </menu>
+
+ <menu name="Developer Info">
+ <item name="Source Code" href="source-repository.html"/>
+ </menu>
+ </body>
+</project>
diff --git a/src/test/java/org/freehep/util/export/test/ExportFileTypeTest.java
b/src/test/java/org/freehep/util/export/test/ExportFileTypeTest.java
new file mode 100644
index 0000000..90b4e24
--- /dev/null
+++ b/src/test/java/org/freehep/util/export/test/ExportFileTypeTest.java
@@ -0,0 +1,17 @@
+package org.freehep.util.export.test;
+
+import java.util.Iterator;
+import org.freehep.util.export.ExportFileTypeRegistry;
+
+public class ExportFileTypeTest {
+
+ public static void main(String[] args) {
+ ExportFileTypeRegistry r =
ExportFileTypeRegistry.getDefaultInstance(null);
+ System.out.println("All ExportFileTypes");
+ Iterator providers = r.get().iterator();
+ while (providers.hasNext()) {
+ System.out.println(" "+providers.next());
+ }
+ }
+
+}
diff --git a/src/test/java/org/freehep/util/export/test/ExportTest.java
b/src/test/java/org/freehep/util/export/test/ExportTest.java
new file mode 100644
index 0000000..52f4025
--- /dev/null
+++ b/src/test/java/org/freehep/util/export/test/ExportTest.java
@@ -0,0 +1,106 @@
+package org.freehep.util.export.test;
+
+import jas.hist.JASHist;
+import jas.hist.XMLHistBuilder;
+
+import java.io.BufferedReader;
+import java.io.File;
+import java.io.InputStream;
+import java.io.InputStreamReader;
+import java.util.Collection;
+import java.util.Properties;
+import java.util.StringTokenizer;
+
+import javax.swing.JFrame;
+import javax.swing.SwingUtilities;
+import javax.swing.WindowConstants;
+
+import org.freehep.util.export.ExportFileType;
+
+
+public class ExportTest extends JFrame implements Runnable
+{
+ private JASHist plot;
+
+ public ExportTest(String plotml) throws Exception
+ {
+ super("Export Test");
+ setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE);
+
+ InputStream in = getClass().getResourceAsStream(plotml);
+ XMLHistBuilder xhb = new XMLHistBuilder(new InputStreamReader(in),
"ExportTest.plotml");
+ plot = xhb.getSoloPlot();
+ plot.setAllowUserInteraction(false);
+ getContentPane().add(plot);
+ }
+
+ public static void main(String[] args) throws Exception
+ {
+ String plotml = args.length == 0 ? "ExportTest.plotml" : args[0];
+ ExportTest xhv = new ExportTest(plotml);
+ xhv.pack();
+ xhv.setVisible(true);
+ Thread.sleep(500);
+ SwingUtilities.invokeAndWait(xhv);
+ System.exit(0);
+ }
+
+ public void run()
+ {
+ try
+ {
+ BufferedReader control = new BufferedReader(new
InputStreamReader(getClass().getResourceAsStream("ExportTest.ini")));
+ for (;;)
+ {
+ String line = control.readLine();
+ if (line == null)
+ break;
+ if (line.startsWith("#"))
+ continue;
+
+ StringTokenizer st = new StringTokenizer(line, ",=");
+ String title = st.nextToken().trim();
+ String file = st.nextToken().trim();
+ String klass = st.nextToken().trim();
+ Properties props = new Properties();
+ while (st.hasMoreTokens())
+ {
+ String key = st.nextToken().trim();
+ if (!st.hasMoreTokens())
+ break;
+
+ String value = st.nextToken().trim();
+ props.setProperty(key, value);
+ }
+ test(title, file, klass, props);
+ }
+ control.close();
+ }
+ catch (Exception x)
+ {
+ x.printStackTrace();
+ }
+ }
+
+ private void test(String title, String file, String exported, Properties
options) throws Exception
+ {
+ Collection c = ExportFileType.getExportFileTypes(exported);
+ if ((c == null) || c.isEmpty())
+ {
+ System.out.println("No driver for \"" + exported + "\" found");
+ }
+ else
+ {
+ ExportFileType type = (ExportFileType) c.iterator().next();
+
+ File f = new File(file);
+ System.out.println(title + " running...");
+
+ long start = System.currentTimeMillis();
+ type.exportToFile(f, plot, this, options, getName());
+
+ long stop = System.currentTimeMillis();
+ System.out.println(title + " done, time=" + (stop - start) + "ms
size=" + f.length());
+ }
+ }
+}
diff --git a/src/test/resources/org/freehep/util/export/test/ExportTest.ini
b/src/test/resources/org/freehep/util/export/test/ExportTest.ini
new file mode 100644
index 0000000..4949ebc
--- /dev/null
+++ b/src/test/resources/org/freehep/util/export/test/ExportTest.ini
@@ -0,0 +1,15 @@
+EPS Test, ExportTest.eps, eps,
org.freehep.graphicsio.ps.PSGraphics2D.EmbedFonts=false
+EPS Test type1, ExportTest-t1.eps, eps,
org.freehep.graphicsio.ps.PSGraphics2D.EmbedFonts=true,org.freehep.graphicsio.ps.PSGraphics2D.EmbedFontsAs=Type1
+EPS Test type3, ExportTest-t3.eps, eps,
org.freehep.graphicsio.ps.PSGraphics2D.EmbedFonts=true,org.freehep.graphicsio.ps.PSGraphics2D.EmbedFontsAs=Type3
+PDF Test, ExportTest.pdf, pdf,
org.freehep.graphicsio.pdf.PDFGraphics2D.EmbedFonts=false
+PDF Test type1, ExportTest-t1.pdf, pdf,
org.freehep.graphicsio.pdf.PDFGraphics2D.EmbedFonts=true,org.freehep.graphicsio.pdf.PDFGraphics2D.EmbedFontsAs=Type1
+PDF Test type3, ExportTest-t3.pdf, pdf,
org.freehep.graphicsio.pdf.PDFGraphics2D.EmbedFonts=true,org.freehep.graphicsio.pdf.PDFGraphics2D.EmbedFontsAs=Type3
+SVG Test, ExportTest.svg, svg
+SWF Test, ExportTest.swf, swf
+EMF Test, ExportTest.emf, emf
+CGM Test, ExportTest.cgm, cgm
+PNG Test, ExportTest.png, png
+JPEG Test, ExportTest.jpg, jpg
+PPM Test, ExportTest.ppm, ppm
+GIF Test, ExportTest.gif, gif
+#PLOTML Test, ExportTest.plotml, jas.hist.SaveAsPlotML
\ No newline at end of file
diff --git a/src/test/resources/org/freehep/util/export/test/ExportTest.plotml
b/src/test/resources/org/freehep/util/export/test/ExportTest.plotml
new file mode 100644
index 0000000..c6f9750
--- /dev/null
+++ b/src/test/resources/org/freehep/util/export/test/ExportTest.plotml
@@ -0,0 +1,169 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE plotML SYSTEM "plotML.dtd">
+<plotML>
+ <plot>
+ <title>
+ <border type="None"/>
+ <label text="Export Test! μ">
+ <font style="BOLD" points="14" face="SansSerif"/>
+ </label>
+ </title>
+ <legend visible="automatic">
+ <border type="Etched"/>
+ <bounds height="60" x="311" width="102" y="187"/>
+ <colorScheme backgroundColor="(255,204,204)"/>
+ <font style="PLAIN" points="12" face="Dialog"/>
+ </legend>
+ <stats showTitles="automatic" alignment="right">
+ <border color="Black" type="Line"/>
+ <font style="PLAIN" points="10" face="SansSerif"/>
+ <format maximumWidth="8" significantDigits="5"/>
+ </stats>
+ <dataArea>
+ <border type="Bevel Out"/>
+ <colorScheme backgroundColor="Pink"/>
+ <data1d axis="y0">
+ <bins1d title="Gaussian 1">
+0.0,0.0,0.0
+0.0,0.0,0.0
+0.0,0.0,0.0
+5.0,2.23606797749979,2.23606797749979
+15.0,3.872983346207417,3.872983346207417
+32.0,5.656854249492381,5.656854249492381
+52.0,7.211102550927978,7.211102550927978
+145.0,12.041594578792296,12.041594578792296
+184.0,13.564659966250536,13.564659966250536
+315.0,17.74823934929885,17.74823934929885
+392.0,19.79898987322333,19.79898987322333
+503.0,22.427661492005804,22.427661492005804
+607.0,24.63736998950984,24.63736998950984
+620.0,24.899799195977465,24.899799195977465
+605.0,24.596747752497688,24.596747752497688
+581.0,24.1039415863879,24.1039415863879
+421.0,20.518284528683193,20.518284528683193
+321.0,17.916472867168917,17.916472867168917
+214.0,14.628738838327793,14.628738838327793
+131.0,11.445523142259598,11.445523142259598
+74.0,8.602325267042627,8.602325267042627
+38.0,6.164414002968976,6.164414002968976
+11.0,3.3166247903554,3.3166247903554
+1.0,1.0,1.0
+2.0,1.4142135623730951,1.4142135623730951
+0.0,0.0,0.0
+0.0,0.0,0.0
+0.0,0.0,0.0
+0.0,0.0,0.0
+0.0,0.0,0.0
+0.0,0.0,0.0
+0.0,0.0,0.0
+0.0,0.0,0.0
+0.0,0.0,0.0
+0.0,0.0,0.0
+0.0,0.0,0.0
+0.0,0.0,0.0
+0.0,0.0,0.0
+0.0,0.0,0.0
+0.0,0.0,0.0
+0.0,0.0,0.0
+0.0,0.0,0.0
+0.0,0.0,0.0
+0.0,0.0,0.0
+0.0,0.0,0.0
+0.0,0.0,0.0
+0.0,0.0,0.0
+0.0,0.0,0.0
+0.0,0.0,0.0
+0.0,0.0,0.0
+ </bins1d>
+ <binnedDataAxisAttributes max="1.8378839590443685"
+ numberOfBins="50" min="0.0" type="double" axis="x"/>
+ <statistics>
+ <statistic name="Entries" value="5269.0"/>
+ <statistic name="Mean" value="0.5"/>
+ <statistic name="RMS" value="1.0"/>
+ <statistic name="10Entries" value="52690.0"/>
+ </statistics>
+ <style1d dataPointSize="6" showErrorBars="true"
+ histogramBarsFilled="true" showLinesBetweenPoints="false"
+ errorBarColor="Black" dataPointStyle="box" showHistogramBars="true"
+ lineColor="Red" dataPointColor="Red" showDataPoints="false"
+ histogramBarColor="Red"/>
+ </data1d>
+ <data1d axis="y0">
+ <bins1d title="Gaussian 2">
+-100.0,10.0,10.0
+-100.0,10.0,10.0
+-100.0,10.0,10.0
+-100.0,10.0,10.0
+-100.0,10.0,10.0
+-100.0,10.0,10.0
+-100.0,10.0,10.0
+-100.0,10.0,10.0
+-100.0,10.0,10.0
+-100.0,10.0,10.0
+-100.0,10.0,10.0
+-100.0,10.0,10.0
+-100.0,10.0,10.0
+-100.0,10.0,10.0
+-100.0,10.0,10.0
+-100.0,10.0,10.0
+-99.0,9.9498743710662,9.9498743710662
+-92.0,9.591663046625438,9.591663046625438
+-84.0,9.16515138991168,9.16515138991168
+-52.0,7.211102550927978,7.211102550927978
+-21.0,4.58257569495584,4.58257569495584
+46.0,6.782329983125268,6.782329983125268
+137.0,11.704699910719626,11.704699910719626
+256.0,16.0,16.0
+372.0,19.28730152198591,19.28730152198591
+485.0,22.02271554554524,22.02271554554524
+535.0,23.130067012440755,23.130067012440755
+497.0,22.293496809607955,22.293496809607955
+460.0,21.447610589527216,21.447610589527216
+396.0,19.8997487421324,19.8997487421324
+275.0,16.583123951777,16.583123951777
+186.0,13.638181696985855,13.638181696985855
+81.0,9.0,9.0
+1.0,1.0,1.0
+-48.0,6.928203230275509,6.928203230275509
+-74.0,8.602325267042627,8.602325267042627
+-91.0,9.539392014169456,9.539392014169456
+-97.0,9.848857801796104,9.848857801796104
+-100.0,10.0,10.0
+-100.0,10.0,10.0
+-100.0,10.0,10.0
+-100.0,10.0,10.0
+-100.0,10.0,10.0
+-100.0,10.0,10.0
+-100.0,10.0,10.0
+-100.0,10.0,10.0
+-100.0,10.0,10.0
+-100.0,10.0,10.0
+-100.0,10.0,10.0
+-100.0,10.0,10.0
+ </bins1d>
+ <binnedDataAxisAttributes axis="x" numberOfBins="50"
+ min="0.0" type="double" max="1.8378839590443685"/>
+ <statistics>
+ <statistic name="Entries" value="5269.0"/>
+ <statistic name="Mean" value="1.0"/>
+ <statistic name="RMS" value="1.0"/>
+ </statistics>
+ <style1d dataPointSize="6" showErrorBars="true"
+ histogramBarsFilled="true" showLinesBetweenPoints="true"
dataPointStyle="dot"
+ errorBarColor="Black" showHistogramBars="false" lineColor="Blue"
+ dataPointColor="Blue" showDataPoints="true"
histogramBarColor="Blue"/>
+ </data1d>
+ <axis logarithmic="false" showOverflows="false"
+ numberOfBins="50" min="0.0" allowSuppressedZero="true" type="double"
+ max="1.8378839590443685" location="x0">
+ <font style="PLAIN" face="Dialog" points="12"/>
+ </axis>
+ <axis logarithmic="false" showOverflows="false"
+ allowSuppressedZero="true" type="double" location="y0">
+ <font style="BOLD" face="Serif" points="12"/>
+ </axis>
+ </dataArea>
+ <bounds width="427" height="318"/>
+ </plot>
+</plotML>
diff --git a/src/test/resources/org/freehep/util/export/test/ScatterPlot.plotml
b/src/test/resources/org/freehep/util/export/test/ScatterPlot.plotml
new file mode 100644
index 0000000..010eb02
--- /dev/null
+++ b/src/test/resources/org/freehep/util/export/test/ScatterPlot.plotml
@@ -0,0 +1,142 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE plotML SYSTEM "plotML.dtd">
+<plotML>
+ <plot>
+ <legend visible="always">
+ </legend>
+ <dataArea>
+ <border type="None"/>
+ <data2d type="scatter2d">
+ <points dimensions="2" title="Scatter Plot">
+ -0.4693173067107428,1.4507571682744322
+ -1.3217292066238562,1.4120753467362162
+ -0.1782965414092353,-3.90579391916613
+ 1.5477465215019357,-1.5523128985981833
+ 1.0893215320112681,0.3348217075131298
+ 0.6373002735012927,-1.0246865042243467
+ -0.5361453077340237,1.6252980897582934
+ -0.06473648001765062,-1.317082125024132
+ 1.0651568430905645,-1.4491236050379737
+ -0.6773687506744815,-0.20721178400517903
+ -1.3563248817764677,0.7300730047501636
+ 1.1248927652599123,3.2899552567912904
+ -0.7692406915197973,-1.880664858425788
+ 1.094921639619024,-0.6622652602679983
+ -1.2019768509166826,0.7657992903540801
+ -1.3690936782561283,0.6936944384580837
+ -1.1279040767971142,1.3187942976864144
+ 1.2277563133977125,1.457781483938408
+ 1.4370720522210036,-1.8531164082935883
+ 0.5626706975933735,-1.3226131623742734
+ 2.817159713871892,0.0977223767911643
+ -0.979027874449507,0.9428032388374741
+ 0.08987639871575612,-0.4992569860349499
+ -0.3939445849200504,-2.2871490773404015
+ 1.0348559380716813,0.0263055936972878
+ 0.2778454421287697,3.9273334626637078
+ -0.3154261563493612,-4.115682943164374
+ 0.5218314592977508,-2.425496020169122
+ -0.8545676698613766,0.539187287778295
+ 0.2242223580751516,-1.5842095079042715
+ 0.27532087856757914,0.3511187559053843
+ 0.5135736140022226,0.47627627470698064
+ -0.08430396342936998,-0.6992830334829044
+ 0.10642314563750581,0.01582861179138544
+ -1.3898218943177105,-0.7934627239856774
+ -2.278593042342753,0.6222928272812792
+ 0.32837799241161814,-3.2637992691640063
+ 1.5980171045386835,4.3766989565635654
+ 0.11920889182865735,1.098005367807387
+ 1.6770590197485273,-1.3513332460648206
+ 0.3470636265188826,0.33793879086965384
+ 1.8385374693375773,-0.12058492588591217
+ -0.5848476093280867,-1.6114472369623252
+ 0.06876149732467421,1.6623882910640142
+ -0.24602984878279668,1.5988790672134778
+ -2.587764728194532,-3.1343668085501584
+ 0.23088477729748702,-0.9595274239637085
+ -1.2040656070780669,-2.0171932162063158
+ 0.9147268639102263,0.7998804786840025
+ -0.17599680582203872,1.9836538547339704
+ 1.7721399220778513,-0.019612364625663996
+ -1.4336500134013228,-1.228266459560451
+ -1.0913720721973466,-3.4810752643894007
+ -1.0781630534294262,3.8663183483204464
+ -0.3634926846639631,3.9187002408397063
+ 2.703615605266103,0.29417706661132215
+ -1.1428585320915923,-1.5907433907487643
+ 0.881756446941027,0.6884426492481082
+ 1.4168155715790605,1.819857454565582
+ 2.069223505015872,-2.23506085887413
+ -0.9711770790168925,-2.9939765111888867
+ -0.2128157587986599,-1.3228175506950892
+ -2.538866868199523,-1.032781746075059
+ -0.8009679855239124,-2.2872993384842957
+ -1.678952149926298,-0.593107491171919
+ -0.4025645526213656,-1.9527982534741821
+ 0.823221859739095,1.2553582024609389
+ -0.3763272666454619,-1.8472802889066415
+ -0.5038014961672489,-1.9031797516048177
+ 1.3681178495134336,0.3458505278597183
+ 1.6629171877601736,0.823885794362927
+ -0.0643107027709961,1.021161352976564
+ -0.9772794299638242,-0.22835066640442553
+ -0.25547672688570255,-0.4228264603359086
+ 0.22644474503540898,-2.4414961438047214
+ 0.5611525918097685,1.1037117567494923
+ -1.0608085350444567,0.9078512035113291
+ -0.40490116293313955,3.5913212693954
+ 1.4523449821423022,-0.4523393068323611
+ 0.05642293121149568,0.5408242066586324
+ -0.4783481127800394,-0.7009500215864932
+ 0.5915169950496205,-3.4992405833392213
+ 0.8576386802351222,-1.79641696457765
+ -0.6703624050033888,4.20113333631501
+ 1.3098886403991212,-4.613284010470776
+ 0.27962542042998173,-0.8813584486511554
+ -0.010943679904536196,0.9642147209617313
+ 0.07163110600220936,-0.9443666496996307
+ -2.1589691812836818,-0.6694221426644025
+ -1.1846836200293756,0.9438215884582392
+ -0.44719223725641,-0.506111474564947
+ 0.0010845938213999095,-0.5230665075088343
+ 0.27715447423146716,0.7520032614798163
+ 2.0356242456261113,1.5452145489298892
+ -1.205325000396752,1.1762148188264026
+ -1.3893304742459964,0.3891533267423198
+ 0.6870051074073796,-0.6603598814330203
+ 1.7542621382337604,-0.2013753253876956
+ -1.4848201494094855,2.0683214160257886
+ 0.8829502215048612,1.8807893880157462
+ 0.7314292062649644,-2.5152421636486455
+ 0.20596956748780654,0.4552093301901957
+ -0.370214884989625,-2.5884727207175064
+ 0.4361728968021604,2.0867353656327956
+ -1.4369664834455238,0.3760200100582617
+ -0.583258822070287,-0.41408182393966286
+ -0.3808262398866877,-0.7191993106534107
+ 0.2756769389991029,-1.6379682999471787
+ -1.1183840181555331,1.9192770392792455
+ 0.42736034966478564,-1.1231768171395247
+ -0.41884921795835633,-1.4833874481053977
+ -1.8910869937786714,3.8471115787021835
+ </points>
+ <pointDataAxisAttributes type="double" axis="x"/>
+ <pointDataAxisAttributes type="double" axis="y"/>
+ <style2d dataPointSize="3" displayAsScatterPlot="true"
+ showPlot="true" endDataColor="Black" dataPointStyle="0"
+ showOverflow="false" startDataColor="White" shapeColor="Blue"
+ dataPointColor="Blue" histStyle="STYLE_BOX"
overflowBinColor="(0,0,178)"/>
+ </data2d>
+ <axis logarithmic="false" showOverflows="false"
+ numberOfBins="40" allowSuppressedZero="true" type="double"
location="x0">
+ <font style="PLAIN" face="Dialog" points="12"/>
+ </axis>
+ <axis logarithmic="false" showOverflows="false"
+ numberOfBins="40" allowSuppressedZero="true" type="double"
location="y0">
+ <font style="PLAIN" face="Dialog" points="12"/>
+ </axis>
+ </dataArea>
+ <bounds width="427" height="314"/>
+ </plot>
+</plotML>
hooks/post-receive
--
FreeHEP Export and Save As Library
_______________________________________________
pkg-java-commits mailing list
[email protected]
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits