graxml-commit Mailing List for GraXML (Page 18)
Brought to you by:
hrivnac
You can subscribe to this list here.
2005 |
Jan
|
Feb
|
Mar
(1) |
Apr
(5) |
May
(6) |
Jun
(2) |
Jul
|
Aug
(12) |
Sep
(32) |
Oct
(41) |
Nov
(16) |
Dec
(21) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(10) |
Feb
(10) |
Mar
(3) |
Apr
(3) |
May
(10) |
Jun
(12) |
Jul
|
Aug
|
Sep
(11) |
Oct
|
Nov
|
Dec
|
2007 |
Jan
(169) |
Feb
(17) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(5) |
Oct
(100) |
Nov
(14) |
Dec
(10) |
2008 |
Jan
(37) |
Feb
(4) |
Mar
(10) |
Apr
(73) |
May
(22) |
Jun
(8) |
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Julius H. <hr...@us...> - 2007-01-15 14:03:34
|
Update of /cvsroot/graxml/DetDescr/JiveGeometry/jude In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv11101/jude Log Message: Directory /cvsroot/graxml/DetDescr/JiveGeometry/jude added to the repository |
From: Julius H. <hr...@us...> - 2007-01-15 13:15:48
|
Update of /cvsroot/graxml/DetDescr/GDML/src In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv4247/src Modified Files: index.html Log Message: embedded demos included Index: index.html =================================================================== RCS file: /cvsroot/graxml/DetDescr/GDML/src/index.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** index.html 1 Mar 2006 11:06:48 -0000 1.6 --- index.html 14 Jan 2007 17:12:09 -0000 1.7 *************** *** 133,136 **** --- 133,150 ---- </ul> </li> + <li><u>0.5.4:</u> + <ul> + <li>New features: + <ul> + <li>Demo files exported to GraXML.</li> + </ul> + </li> + <li>Bug fixes: + <ul> + <li>...</li> + </ul> + </li> + </ul> + </li> </ul> <h2>Related Develoment</h2> |
From: Julius H. <hr...@us...> - 2007-01-15 12:15:23
|
Update of /cvsroot/graxml/DetDescr/JiveEvent/ant In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv10141/JiveEvent/ant Log Message: Directory /cvsroot/graxml/DetDescr/JiveEvent/ant added to the repository |
From: Julius H. <hr...@us...> - 2007-01-15 12:00:15
|
Update of /cvsroot/graxml/Graphics/GraXML/src/net/hep/graphics/GraXML/GUI/Components In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv696/src/net/hep/graphics/GraXML/GUI/Components Modified Files: Dimensions.java SimpleButton.java Added Files: DemoPanel.java Log Message: embedded demos included Index: Dimensions.java =================================================================== RCS file: /cvsroot/graxml/Graphics/GraXML/src/net/hep/graphics/GraXML/GUI/Components/Dimensions.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Dimensions.java 30 Mar 2005 12:44:30 -0000 1.1 --- Dimensions.java 14 Jan 2007 17:04:58 -0000 1.2 *************** *** 20,22 **** --- 20,24 ---- public static final Dimension BIG = new Dimension(30, 30); + public static final Dimension LONG = new Dimension(160, 20); + } Index: SimpleButton.java =================================================================== RCS file: /cvsroot/graxml/Graphics/GraXML/src/net/hep/graphics/GraXML/GUI/Components/SimpleButton.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** SimpleButton.java 30 Mar 2005 12:44:30 -0000 1.1 --- SimpleButton.java 14 Jan 2007 17:04:58 -0000 1.2 *************** *** 15,18 **** --- 15,21 ---- * <pre> * $Log$ + * Revision 1.2 2007/01/14 17:04:58 hrivnac + * embedded demos included + * * Revision 1.1 2005/03/30 12:44:30 hrivnac * GraXML introduced *************** *** 37,40 **** --- 40,57 ---- public SimpleButton(String name, + int alignment, + Font font, + String tip, + ActionListener listener) { + super(name); + setHorizontalTextPosition(AbstractButton.CENTER); + setFont(font); + if (tip != null) { + setToolTipText(tip); + } + addActionListener(listener); + } + + public SimpleButton(String name, ImageIcon icon, int alignment, --- NEW FILE: DemoPanel.java --- package net.hep.graphics.GraXML.GUI.Components; // AWT import java.awt.event.ActionListener; import java.awt.Color; // Swing import javax.swing.AbstractButton; import javax.swing.JLabel; import javax.swing.JPanel; import javax.swing.BoxLayout; /** {@link JPanel} for loading demonstration SceneGraphs.. * <br><img src="doc-files/DemoPanel.gif"> * <p><font color="#880088"> * <pre> * $Log: DemoPanel.java,v $ * Revision 1.1 2007/01/14 17:04:58 hrivnac * embedded demos included * * </pre> * </font></p> * @version $Id: DemoPanel.java,v 1.1 2007/01/14 17:04:58 hrivnac Exp $ * @author <a href="mailto:Jul...@ce...">J.Hrivnac</a> */ public final class DemoPanel extends JPanel { public DemoPanel(ActionListener listener) { _listener = listener; setLayout(new BoxLayout(this, BoxLayout.Y_AXIS)); JLabel label = new JLabel(" Examples: "); label.setForeground(Color.black); label.setFont(Fonts.BOLD); label.setToolTipText("<html>Demonstrations:<br>" + "<small>Demonstrations contain example geometrical files files</html>"); add(label); } /** Add {@link SimpleButton}. * @param name The name of the builder class. */ public void add(String name) { String sName = name.substring(name.lastIndexOf("/") + 1, name.length()); SimpleButton button = new SimpleButton(sName, AbstractButton.CENTER, Fonts.PLAIN, "Demonstration of " + name, _listener); button.setMinimumSize(Dimensions.LONG); button.setMaximumSize(Dimensions.LONG); add(button); } ActionListener _listener; } |
From: Julius H. <hr...@us...> - 2007-01-15 11:17:21
|
Update of /cvsroot/graxml/Graphics/JiveEvent/ant In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv3328/ant Modified Files: build.xml Log Message: embedded demos included Index: build.xml =================================================================== RCS file: /cvsroot/graxml/Graphics/JiveEvent/ant/build.xml,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** build.xml 11 Jan 2007 14:08:21 -0000 1.7 --- build.xml 14 Jan 2007 17:10:41 -0000 1.8 *************** *** 12,16 **** <property name="env.ANT_SITE" value="dist"/> <property file="ant/config-${env.ANT_SITE}.properties"/> ! <property name="version" value="0.1.3"/> <path id="classpath.build"> --- 12,16 ---- <property name="env.ANT_SITE" value="dist"/> <property file="ant/config-${env.ANT_SITE}.properties"/> ! <property name="version" value="pre-0.1.4"/> <path id="classpath.build"> *************** *** 126,129 **** --- 126,131 ---- <fileset dir="${build}" includes="**/bgm.ser"/> <fileset dir="${build}" includes="**/*.properties"/> + <fileset dir="${src}" includes="net/hep/atlas/graphics/JiveEvent/Schema/event.xsd"/> + <fileset dir="${src}" includes="net/hep/atlas/graphics/JiveEvent/Test/data/test_eventFast.xml"/> </jar> </target> |
From: Julius H. <hr...@us...> - 2007-01-15 10:40:16
|
Update of /cvsroot/graxml/DetDescr/AGDD/src/net/hep/AGDD/GeometricModel In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv5954/src/net/hep/AGDD/GeometricModel Modified Files: AGDDBuilder.java Log Message: embedded demos included Index: AGDDBuilder.java =================================================================== RCS file: /cvsroot/graxml/DetDescr/AGDD/src/net/hep/AGDD/GeometricModel/AGDDBuilder.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** AGDDBuilder.java 11 Jan 2007 14:15:28 -0000 1.7 --- AGDDBuilder.java 14 Jan 2007 17:15:22 -0000 1.8 *************** *** 30,33 **** --- 30,36 ---- * <pre> * $Log$ + * Revision 1.8 2007/01/14 17:15:22 hrivnac + * embedded demos included + * * Revision 1.7 2007/01/11 14:15:28 hrivnac * version 0.7.0 *************** *** 78,81 **** --- 81,91 ---- public void configure() {} + /** Get list of (embedded) demostration files. + * @return The list of (embedded) demostration files. */ + public String[] demos() { + String[] demos = {"net/hep/AGDD/Test/data/Demo.agdd"}; + return demos; + } + /** Create unique name, taking into account {@link net.hep.graphics.GraXML.Disconnecter.ConnectionsDB}, * append <code>;<i></code> as necessary. *************** *** 174,182 **** return _schema; } private static String _jaxb = "net.hep.AGDD.JAXB"; ! private static String _schema = "AGDD.xsd"; /** Zero vector. */ public static final Vector3d UVECTOR = new Vector3d(0, 0, 0); --- 184,200 ---- return _schema; } + + /** Get Embedded AGDD Schema file. + * @return The Embedded AGDD Schema file. */ + protected String schemaEmbedded() { + return _schemaEmbedded; + } private static String _jaxb = "net.hep.AGDD.JAXB"; ! private static String _schema = "AGDD.xsd"; + private static String _schemaEmbedded = "net/hep/AGDD/Schema/AGDD0.xsd"; + /** Zero vector. */ public static final Vector3d UVECTOR = new Vector3d(0, 0, 0); |
From: Julius H. <hr...@us...> - 2007-01-15 10:36:47
|
Update of /cvsroot/graxml/DetDescr/JiveGeometry/src/net/hep/atlas/graphics/JiveGeometry/Test In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv12922/Test Log Message: Directory /cvsroot/graxml/DetDescr/JiveGeometry/src/net/hep/atlas/graphics/JiveGeometry/Test added to the repository |
From: Julius H. <hr...@us...> - 2007-01-15 03:26:18
|
Update of /cvsroot/graxml/DetDescr/JiveGeometry/src/net/hep/atlas/graphics/JiveGeometry/JAXB In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv12922/JAXB Log Message: Directory /cvsroot/graxml/DetDescr/JiveGeometry/src/net/hep/atlas/graphics/JiveGeometry/JAXB added to the repository |
From: Julius H. <hr...@us...> - 2007-01-15 02:31:14
|
Update of /cvsroot/graxml/Graphics/JiveEvent/src/net/hep/atlas/graphics/JiveEvent/GeometricModel In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv3328/src/net/hep/atlas/graphics/JiveEvent/GeometricModel Modified Files: JiveEventBuilder.java PDG.java Log Message: embedded demos included Index: JiveEventBuilder.java =================================================================== RCS file: /cvsroot/graxml/Graphics/JiveEvent/src/net/hep/atlas/graphics/JiveEvent/GeometricModel/JiveEventBuilder.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** JiveEventBuilder.java 23 Dec 2005 00:19:21 -0000 1.4 --- JiveEventBuilder.java 14 Jan 2007 17:10:42 -0000 1.5 *************** *** 21,24 **** --- 21,27 ---- * <pre> * $Log$ + * Revision 1.5 2007/01/14 17:10:42 hrivnac + * embedded demos included + * * Revision 1.4 2005/12/23 00:19:21 hrivnac * schema should be in the current directory *************** *** 56,59 **** --- 59,69 ---- } + /** Get list of (embedded) demostration files. + * @return The list of (embedded) demostration files. */ + public String[] demos() { + String[] demos = {"net/hep/atlas/graphics/JiveEvent/Test/data/test_eventFast.xml"}; + return demos; + } + /** Get PDG manager. * @return The manager with PDG tables loaded.*/ *************** *** 79,84 **** --- 89,102 ---- return _schema; } + + /** Get Embedded JiveEvent Schema file. + * @return The Embedded JiveEvent Schema file. */ + protected String schemaEmbedded() { + return _schemaEmbedded; + } private static String _schema = "event.xsd"; + + private static String _schemaEmbedded = "net/hep/atlas/graphics/JiveEvent/Schema/" + _schema; private PDG _pdg; Index: PDG.java =================================================================== RCS file: /cvsroot/graxml/Graphics/JiveEvent/src/net/hep/atlas/graphics/JiveEvent/GeometricModel/PDG.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** PDG.java 30 Mar 2005 13:10:21 -0000 1.1 --- PDG.java 14 Jan 2007 17:10:43 -0000 1.2 *************** *** 30,33 **** --- 30,36 ---- * <pre> * $Log$ + * Revision 1.2 2007/01/14 17:10:43 hrivnac + * embedded demos included + * * Revision 1.1 2005/03/30 13:10:21 hrivnac * JiveEvent introduced *************** *** 55,59 **** factory.setValidating(true); DocumentBuilder parser = factory.newDocumentBuilder(); ! Node pdg = parser.parse(ClassLoader.getSystemResource(_table).openStream()).getDocumentElement(); NodeList particles = pdg.getChildNodes(); Node particle; --- 58,62 ---- factory.setValidating(true); DocumentBuilder parser = factory.newDocumentBuilder(); ! Node pdg = parser.parse(PDG.class.getClassLoader().getResourceAsStream(_table)).getDocumentElement(); NodeList particles = pdg.getChildNodes(); Node particle; |
From: Julius H. <hr...@us...> - 2007-01-14 23:08:43
|
Update of /cvsroot/graxml/DetDescr/JiveGeometry/src/net/hep/atlas In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv12419/atlas Log Message: Directory /cvsroot/graxml/DetDescr/JiveGeometry/src/net/hep/atlas added to the repository |
From: Julius H. <hr...@us...> - 2007-01-14 22:52:53
|
Update of /cvsroot/graxml/Graphics/GraXML/src/net/hep/graphics/GraXML/FrontEnd In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv16673/src/net/hep/graphics/GraXML/FrontEnd Modified Files: builders.properties Log Message: JiveGeometry builder added Index: builders.properties =================================================================== RCS file: /cvsroot/graxml/Graphics/GraXML/src/net/hep/graphics/GraXML/FrontEnd/builders.properties,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** builders.properties 30 Mar 2005 12:44:30 -0000 1.1 --- builders.properties 14 Jan 2007 21:47:06 -0000 1.2 *************** *** 3,4 **** --- 3,5 ---- gdml=net.hep.geant4.GDML.GeometricModel.GDMLBuilder Event=net.hep.atlas.graphics.JiveEvent.GeometricModel.JiveEventBuilder + Geometry=net.hep.atlas.graphics.JiveGeometry.GeometricModel.JiveGeometryBuilder |
From: Julius H. <hr...@us...> - 2007-01-14 21:37:09
|
Update of /cvsroot/graxml/DetDescr/JiveGeometry/src/net In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv11996/net Log Message: Directory /cvsroot/graxml/DetDescr/JiveGeometry/src/net added to the repository |
From: Julius H. <hr...@us...> - 2007-01-14 21:35:00
|
Update of /cvsroot/graxml/DetDescr/JiveGeometry/lib In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv11101/lib Log Message: Directory /cvsroot/graxml/DetDescr/JiveGeometry/lib added to the repository |
From: Julius H. <hr...@us...> - 2007-01-14 21:35:00
|
Update of /cvsroot/graxml/DetDescr/JiveGeometry/etc In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv11101/etc Log Message: Directory /cvsroot/graxml/DetDescr/JiveGeometry/etc added to the repository |
From: Julius H. <hr...@us...> - 2007-01-14 21:33:58
|
Update of /cvsroot/graxml/DetDescr/JiveGeometry In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv10660/JiveGeometry Log Message: Directory /cvsroot/graxml/DetDescr/JiveGeometry added to the repository |
From: Julius H. <hr...@us...> - 2007-01-14 20:57:58
|
Update of /cvsroot/graxml/DetDescr/GDML/src/net/hep/geant4/GDML/GeometricModel In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv8575/net/hep/geant4/GDML/GeometricModel Modified Files: GDMLBuilder.java Log Message: embedded demos included Index: GDMLBuilder.java =================================================================== RCS file: /cvsroot/graxml/DetDescr/GDML/src/net/hep/geant4/GDML/GeometricModel/GDMLBuilder.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** GDMLBuilder.java 14 Jan 2007 17:12:10 -0000 1.5 --- GDMLBuilder.java 14 Jan 2007 17:21:43 -0000 1.6 *************** *** 25,28 **** --- 25,31 ---- * <pre> * $Log$ + * Revision 1.6 2007/01/14 17:21:43 hrivnac + * embedded demos included + * * Revision 1.5 2007/01/14 17:12:10 hrivnac * embedded demos included *************** *** 68,74 **** * * Revision 1.9 2004/03/22 14:40:18 hrivnac ! * refactoring with GraXML /** Get list of (embedded) demostration files. ! * @return The list of (embedded) demostration files. */ ! * * Revision 1.8 2004/03/21 21:03:59 hrivnac --- 71,75 ---- * * Revision 1.9 2004/03/22 14:40:18 hrivnac ! * refactoring with GraXML * * Revision 1.8 2004/03/21 21:03:59 hrivnac |
From: Julius H. <hr...@us...> - 2007-01-14 20:37:18
|
Update of /cvsroot/graxml/Graphics/JiveEvent/src In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv3328/src Modified Files: index.html Log Message: embedded demos included Index: index.html =================================================================== RCS file: /cvsroot/graxml/Graphics/JiveEvent/src/index.html,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** index.html 12 Aug 2005 09:25:58 -0000 1.5 --- index.html 14 Jan 2007 17:10:42 -0000 1.6 *************** *** 71,79 **** </ul> </li> ! <li><u>0.1.3:</u> <ul> <li>New features: <ul> ! <li>...</li> </ul> </li> --- 71,79 ---- </ul> </li> ! <li><u>0.1.4:</u> <ul> <li>New features: <ul> ! <li>Demo files exported to GraXML.</li> </ul> </li> |
From: Julius H. <hr...@us...> - 2007-01-14 19:00:25
|
Update of /cvsroot/graxml/Graphics/GraXML/src/net/hep/graphics/GraXML/doc-files In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv696/src/net/hep/graphics/GraXML/doc-files Modified Files: Guide.html Log Message: embedded demos included Index: Guide.html =================================================================== RCS file: /cvsroot/graxml/Graphics/GraXML/src/net/hep/graphics/GraXML/doc-files/Guide.html,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** Guide.html 11 Jan 2007 13:56:48 -0000 1.14 --- Guide.html 14 Jan 2007 17:04:59 -0000 1.15 *************** *** 919,922 **** --- 919,933 ---- </ul> </ul> + <li>3.1.11:</li> + <ul> + <li>New features:</li> + <ul> + <li>Demonstration examples are callable directly from GUI.</li> + </ul> + <li>Bug fixes:</li> + <ul> + <li>...</li> + </ul> + </ul> </ul> |
From: Julius H. <hr...@us...> - 2007-01-14 18:02:53
|
Update of /cvsroot/graxml/Graphics/GraXML/src/net/hep/graphics/GraXML/GUI In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv696/src/net/hep/graphics/GraXML/GUI Modified Files: RootActionListener.java RootWindow.java Log Message: embedded demos included Index: RootWindow.java =================================================================== RCS file: /cvsroot/graxml/Graphics/GraXML/src/net/hep/graphics/GraXML/GUI/RootWindow.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** RootWindow.java 25 Aug 2005 15:26:23 -0000 1.2 --- RootWindow.java 14 Jan 2007 17:04:58 -0000 1.3 *************** *** 63,66 **** --- 63,69 ---- // Java + import java.util.Map; + import java.util.TreeMap; + import java.io.InputStream; import java.io.StringWriter; import java.io.PrintWriter; *************** *** 74,77 **** --- 77,83 ---- * <pre> * $Log$ + * Revision 1.3 2007/01/14 17:04:58 hrivnac + * embedded demos included + * * Revision 1.2 2005/08/25 15:26:23 hrivnac * customised palette is reused after reload *************** *** 236,239 **** --- 242,261 ---- } + /** Read, parse and show embedded (demo) file. + * @param file The filename of vthe embedded file with Generic Model of the geometry to show. */ + public final void showEmbedded(String file) { + if (_dirty) { + clean(); + SelectedColor.setPaletteOffset(); + System.gc(); + } + try { + show(new SceneGroup(_demos.get(file))); + } + catch (GraXMLException e) { + reportException("Can't show embedded file " + file, e, log); + } + } + /** Reload the last file. */ public final void reShow() { *************** *** 353,356 **** --- 375,386 ---- _help = new HelpLabel(); south.add(_help); + DemoPanel demo = new DemoPanel(_actionListener); + for (MasterBuilder mb : MasterBuilder.builderObjects()) { + for (String demoFile : mb.demos()) { + demo.add(demoFile); + _demos.put(demoFile.substring(demoFile.lastIndexOf("/") + 1, demoFile.length()), demoFile); + } + } + south.add(demo); _console = new Console(); _interpreter = new Interpreter(_console); *************** *** 706,709 **** --- 736,741 ---- private String _file = null; + private Map<String, String> _demos = new TreeMap<String, String>(); + private static boolean _exists = false; Index: RootActionListener.java =================================================================== RCS file: /cvsroot/graxml/Graphics/GraXML/src/net/hep/graphics/GraXML/GUI/RootActionListener.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** RootActionListener.java 30 Mar 2005 12:44:30 -0000 1.1 --- RootActionListener.java 14 Jan 2007 17:04:58 -0000 1.2 *************** *** 40,43 **** --- 40,46 ---- * <pre> * $Log$ + * Revision 1.2 2007/01/14 17:04:58 hrivnac + * embedded demos included + * * Revision 1.1 2005/03/30 12:44:30 hrivnac * GraXML introduced *************** *** 312,319 **** _j3d.resetCutters(); } ! else if (value.equals("Shorten")) { _j3d.changeLimits(0.5); } _j3d.mouse().setTransform(_mouseT3d); } --- 315,327 ---- _j3d.resetCutters(); } ! else if (value.equals("Shorten")) { _j3d.changeLimits(0.5); } + // Demos + else { + _window.showEmbedded(value); + } + _j3d.mouse().setTransform(_mouseT3d); } |
From: Julius H. <hr...@us...> - 2007-01-14 17:36:51
|
Update of /cvsroot/graxml/Graphics/GraXML/src/net/hep/graphics/GraXML/GUI/Components/doc-files In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv696/src/net/hep/graphics/GraXML/GUI/Components/doc-files Added Files: DemoPanel.gif Log Message: embedded demos included --- NEW FILE: DemoPanel.gif --- (This appears to be a binary file; contents omitted.) |
From: Julius H. <hr...@us...> - 2007-01-14 17:32:28
|
Update of /cvsroot/graxml/DetDescr/GDML/src/net/hep/geant4/GDML/GeometricModel In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv4247/src/net/hep/geant4/GDML/GeometricModel Modified Files: GDMLBuilder.java Log Message: embedded demos included Index: GDMLBuilder.java =================================================================== RCS file: /cvsroot/graxml/DetDescr/GDML/src/net/hep/geant4/GDML/GeometricModel/GDMLBuilder.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** GDMLBuilder.java 23 Dec 2005 11:09:41 -0000 1.4 --- GDMLBuilder.java 14 Jan 2007 17:12:10 -0000 1.5 *************** *** 25,28 **** --- 25,31 ---- * <pre> * $Log$ + * Revision 1.5 2007/01/14 17:12:10 hrivnac + * embedded demos included + * * Revision 1.4 2005/12/23 11:09:41 hrivnac * schema should be in the current directory *************** *** 65,69 **** * * Revision 1.9 2004/03/22 14:40:18 hrivnac ! * refactoring with GraXML * * Revision 1.8 2004/03/21 21:03:59 hrivnac --- 68,74 ---- * * Revision 1.9 2004/03/22 14:40:18 hrivnac ! * refactoring with GraXML /** Get list of (embedded) demostration files. ! * @return The list of (embedded) demostration files. */ ! * * Revision 1.8 2004/03/21 21:03:59 hrivnac *************** *** 100,103 **** --- 105,116 ---- public void configure() {} + /** Get list of (embedded) demostration files. + * @return The list of (embedded) demostration files. */ + public String[] demos() { + String[] demos = {"net/hep/geant4/GDML/Test/data/Solids.gdml", + "net/hep/geant4/GDML/Test/data/Booleans.gdml"}; + return demos; + } + /** Create unique name, taking into account {@link net.hep.graphics.GraXML.Disconnecter.ConnectionsDB}, * append <code>;<i></code> as necessary. *************** *** 199,206 **** return _schema; } ! private static String _jaxb = "net.hep.geant4.GDML.JAXB"; private static String _schema = "gdml.xsd"; /** Zero vector. */ --- 212,227 ---- return _schema; } ! ! /** Get Embedded GDML Schema file. ! * @return The Embedded GDML Schema file. */ ! protected String schemaEmbedded() { ! return _schemaEmbedded; ! } ! private static String _jaxb = "net.hep.geant4.GDML.JAXB"; private static String _schema = "gdml.xsd"; + + private static String _schemaEmbedded = "net/hep/geant4/GDML/Schema/gdml0.xsd"; /** Zero vector. */ |
From: Julius H. <hr...@us...> - 2007-01-14 17:32:22
|
Update of /cvsroot/graxml/DetDescr/GDML/ant In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv4247/ant Modified Files: build.xml Log Message: embedded demos included Index: build.xml =================================================================== RCS file: /cvsroot/graxml/DetDescr/GDML/ant/build.xml,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** build.xml 11 Jan 2007 14:23:21 -0000 1.7 --- build.xml 14 Jan 2007 17:12:09 -0000 1.8 *************** *** 12,16 **** <property name="env.ANT_SITE" value="dist"/> <property file="ant/config-${env.ANT_SITE}.properties"/> ! <property name="version" value="0.5.3"/> <path id="classpath.build"> --- 12,16 ---- <property name="env.ANT_SITE" value="dist"/> <property file="ant/config-${env.ANT_SITE}.properties"/> ! <property name="version" value="pre-0.5.4"/> <path id="classpath.build"> *************** *** 125,128 **** --- 125,131 ---- <fileset dir="${build}" includes="**/bgm.ser"/> <fileset dir="${build}" includes="**/*.properties"/> + <fileset dir="${src}" includes="net/hep/geant4/GDML/Test/data/Solids.gdml"/> + <fileset dir="${src}" includes="net/hep/geant4/GDML/Test/data/Booleans.gdml"/> + <fileset dir="${src}" includes="net/hep/geant4/GDML/Schema/*xsd"/> </jar> </target> |
From: Julius H. <hr...@us...> - 2007-01-14 17:32:17
|
Update of /cvsroot/graxml/DetDescr/GDML/src/net/hep/geant4/GDML/Schema In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv4247/src/net/hep/geant4/GDML/Schema Added Files: gdml0.xsd Log Message: embedded demos included --- NEW FILE: gdml0.xsd --- <?xml version="1.0" encoding="UTF-8"?> <!-- Standalone copy of the source GDML schema. It includes all components in one file. --> <xs:schema attributeFormDefault="unqualified" elementFormDefault="unqualified" version="1.0" xmlns:gdml="http://cern.ch/2001/Schemas/GDML" xmlns:xs="http://www.w3.org/2001/XMLSchema"> <!-- xs:include schemaLocation="gdml_core.xsd"/ --> <!-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> <xs:simpleType name="InlineExpressionType"> <xs:restriction base="xs:string"></xs:restriction> </xs:simpleType> <!-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> <xs:simpleType name="ExpressionOrIDREFType"> <xs:union memberTypes="xs:IDREF InlineExpressionType xs:double "></xs:union> </xs:simpleType> <!-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> <xs:complexType name="IdentifiableExpressionType"> <xs:simpleContent> <xs:extension base="InlineExpressionType"> [...1336 lines suppressed...] features or backward incompatible bug fixes are added and means the GDML Processor is allowed to refuse processing of such a document if this is using the more recent version of the GDML Schema then GDML Processor understands Y - minor number, increased when incremental and backward compatible changes or improvements are made into the GDML Schema. GDML Processor should be able to process such a document using higher minor version number then that of the GDML Processor Z - bugfix revision number, increased when fully backward compatible changes which resolve a problem in GDML Schema are applied</xs:documentation> </xs:annotation> </xs:attribute> </xs:complexType> </xs:element> </xs:schema> |
From: Julius H. <hr...@us...> - 2007-01-14 17:27:01
|
Update of /cvsroot/graxml/DetDescr/AGDD/src In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv5954/src Modified Files: index.html Log Message: embedded demos included Index: index.html =================================================================== RCS file: /cvsroot/graxml/DetDescr/AGDD/src/index.html,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** index.html 12 Jan 2007 14:18:36 -0000 1.21 --- index.html 14 Jan 2007 17:15:22 -0000 1.22 *************** *** 146,149 **** --- 146,150 ---- <ul> <li>Supports AGDD v8.</li> + <li>Demo files exported to GraXML.</li> </ul> </li> |
From: Julius H. <hr...@us...> - 2007-01-14 17:26:55
|
Update of /cvsroot/graxml/DetDescr/AGDD/ant In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv5954/ant Modified Files: ToDo.txt build.xml Log Message: embedded demos included Index: ToDo.txt =================================================================== RCS file: /cvsroot/graxml/DetDescr/AGDD/ant/ToDo.txt,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** ToDo.txt 12 Jan 2007 14:18:35 -0000 1.5 --- ToDo.txt 14 Jan 2007 17:15:22 -0000 1.6 *************** *** 7,11 **** - all comments in XSD - Reflective volumes ? - - date in AGDD is the date (as in materials) - Standardmaterials.agdd and Included.agdd should not be tested --- 7,10 ---- Index: build.xml =================================================================== RCS file: /cvsroot/graxml/DetDescr/AGDD/ant/build.xml,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** build.xml 12 Jan 2007 14:18:36 -0000 1.11 --- build.xml 14 Jan 2007 17:15:22 -0000 1.12 *************** *** 12,16 **** <property name="env.ANT_SITE" value="dist"/> <property file="ant/config-${env.ANT_SITE}.properties"/> ! <property name="version" value="0.8.0"/> <path id="classpath.build"> --- 12,16 ---- <property name="env.ANT_SITE" value="dist"/> <property file="ant/config-${env.ANT_SITE}.properties"/> ! <property name="version" value="pre-0.8.0"/> <path id="classpath.build"> *************** *** 130,133 **** --- 130,135 ---- <fileset dir="${build}" includes="**/bgm.ser"/> <fileset dir="${build}" includes="**/*.properties"/> + <fileset dir="${src}" includes="net/hep/AGDD/Test/data/Demo.agdd"/> + <fileset dir="${src}" includes="net/hep/AGDD/Schema/AGDD0.xsd"/> </jar> </target> |