source: trunk/source/visualization/VRML/History @ 1355

Last change on this file since 1355 was 1348, checked in by garnier, 13 years ago

update

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