source: trunk/source/visualization/VRML/#History#@ 1353

Last change on this file since 1353 was 1350, checked in by garnier, 15 years ago

update to last version 4.9.4

File size: 5.2 KB
RevLine 
[1350]1$Id: History,v 1.22 2010/12/23 14:18:05 lgarnier Exp $
2-------------------------------------------------------------------
3
4 =========================================================
5 Geant4 - an Object-Oriented Toolkit for Simulation in HEP
6 =========================================================
7
8 Category History file
9 ---------------------
10This file should be used by G4 developers and category coordinators
11to briefly summarize all major modifications introduced in the code
12and keep track of all category-tags.
13It DOES NOT substitute the CVS log-message one should put at every
14committal in the CVS repository !
15
16 ----------------------------------------------------------
17 * Reverse chronological order (last date on top), please *
18 ----------------------------------------------------------
19
20History file for visualization/VRML sub-category
21------------------------------------------------
22
2323, December L. Garnier
24- GNUmakefile : Remove Qt stuff from Makefile
25
2611 November 2010 Akinori Kimura (VRML-V09-03-01)
27- Replaced G4cerr with G4cout and added the following line before G4cout.
28 if (G4VisManager::GetVerbosity() >= G4VisManager::errors)
29
3030th May 2010 John Allison (VRML-V09-03-00)
31- G4VRML[1/2][File}SceneHandler: Added AddCompound(const G4VDigi&).
32
3321st October 2009 John Allison (VRML-V09-02-01 coworks greps-V09-02-02)
34- Added AddCompound (const G4THitsMap<G4double>&) methods.
35 o Prevents warnings about hiding - calls G4VSceneHandler base class.
36
3729 September 2009 John Allison (VRML-V09-02-00)
38- Tagged change of disclaimer on file headings (made long ago).
39
4012th June 2006 John Allison (VRML-V08-00-02)
41- G4VRML1/2FileViewer.cc: Fixed rewind problem. ClearView closes and
42 re-opens file.
43- G4VRML1/2FileSceneHandler.cc: Proper terminator on exit:
44
452nd June 2006 John Allison (VRML-V08-00-01)
46- G4VRML2SceneHandlerFunc.icc: Protect zero model pointer.
47
4823rd January 2006 John Allison (VRML-V08-00-00)
49- Rewind output file in G4VRML*FileViewer::ClearView. Avoids
50 duplicate geometries in output file.
51
5227th May 2005 John Allison (VRML-V07-00-00)
53- Fixed bug introduced in ClearTransientStore.
54
5519th April 2004 Gabriele Cosmo (VRML-V06-01-00)
56- Fixed typo in printout in G4VRML1FileSceneHandler.cc and
57 G4VRML2FileSceneHandler.cc.
58
596th November 2003 John Allison (vis-V05-02-03)
60- G4VRML2SceneHandlerFunc: changed const char* pv_name to G4String pv_name.
61
624th October 2003 Gabriele Cosmo (vis-V05-02-01)
63- Simplified GNUmakefile.
64
65VRML-V05-00-00 17th February 2003 Satoshi Tanaka
66- A Small bug fixing of VRML2 driver
67 (Explicit cast from G4String to char*).
68
69VRML-V04-01-00 November 10 2002
70- Bug fixing for marker size (*.icc files)
71
72VRML-V03-02-01 18th September 2001
73- Updation for automatic visualization at Hebden Bridge mini-workshop.
74- Filename incrementation is made the same as the DAWNFILE driver
75
7627th April 2000 Gabriele Cosmo
77- Removed unnecessary #include "G4Transform.hh".
78
79VRML-V01-00-00 27th December 1999 Satoshi Tanaka
80- G4endl ==> "\n" for fDest objects
81
82VRML-V00-01-01 4th November 1999 Satoshi Tanaka
83- Introduction of VRMLBeginModeling() for new vis commands
84
85VRML-00-03-07 Satoshi TANAKA Dec 07, 1998
86- An environmental variable "G4VRML_VIEWER" is renames to
87 "G4VRMLFILE_VIEWER" for consistency.
88
89VRML-00-03-06 Satoshi TANAKA Dec 04, 1998
90- Maximun number of generated g4.wrl files in the destination
91 directory is customizable as: "setenv G4VRMLFILE_MAX_FILE_NUM N"
92 (N is the integer greater than or equal to 1. The default value is 1.)
93
94VRML-00-03-04 Satoshi TANAKA Dec 03, 1998
95- Bug fix of SetPVPickability();
96
97VRML-00-03-03 Satoshi TANAKA Nov 30, 1998
98- Destination directiory of g4.wrl and g4_X.wrl is customizable
99 with the environmental variable "G4VRMLFILE_DEST_DIR".
100
101 Unix:
102 % setenv G4VRMLFILE_DEST_DIR directory_name/
103
104 For example,
105
106 % setenv G4VRMLFILE_DEST_DIR /tmp/
107
108 Do not forget to add "/" at the end of the directory name.
109
110 NT:
111 DOS> set G4VRMLFILE_DEST_DIR directory_name\
112
113 Do not forget to add "\" at the end of the directory name.
114
115- Minor change in policy of automatic incremation of output VRML file:
116
117 OLD way: g4.wrl, g4_2.wrl, ..... , g4_100.wrl
118 NEW way: g4.wrl, g4_1.wrl, g4_2.wrl, ..... , g4_100.wrl
119
120 Maximal number of files in one directory is restricted in order to
121 avoid explosion of your hard disk. The maximal number is hard-coded.
122 You can revise is by editing enum's of G4VRML1FILEScene.hh and
123 G4VRML2FILESchene.hh
124
125 Note that the incrementation is done as follows (pseudo codes)
126
127 filename = "g4.wrl" // initialization
128
129 while( filename already exists in the dest directory )
130 {
131 increment filename
132 }
133
134 It means that if you delete file "g4.wrl" in the destination directory,
135 the file name in the next generation is still g4.wrl.
136
137 The JAVA application VRML/g4vrmlview/g4vrmlview.java
138 for network visualization is also updated.
139
140
141VRML-00-03-02 Satoshi TANAKA Nov 13, 1998
142- Code refinement of VRML 2.0 driver
143- Pickability of Physical volume is controllable with
144 setenv G4VRML_PV_PICKABLE 1/0
145- Nickname of VRML drivers are renames:
146 (Old names were, e.g., "VRML1File")
147
148 VRML1 file : VRML1FILE
149 VRML1 network : VRML1
150
151 VRML2 file : VRML2FILE
152 VRML1 network : VRML2
Note: See TracBrowser for help on using the repository browser.