source: trunk/source/graphics_reps/History @ 1140

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

update to CVS

File size: 21.7 KB
Line 
1cvs log $Id: History,v 1.138 2009/10/28 13:40:40 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
2028th October 2009  John Allison  (greps-V09-02-03 coworks vis-V09-02-10)
21- HepPolyhedron:
22  o Removed static instance of BooleanProcessor.
23  o Removed IsErrorBooleanProcess.  (Use HepPolyhedronProcessor instead -
24    see, e.g., G4PhysicalVolumeModel.)
25- HepPolyhedronProcessor.src: Replaced printf with G4cout.
26
2720th October 2009  Guy Barrand  (greps-V09-02-02 coworks vis-V09-02-09)
28- HepPolyhedronProcessor : class to handle "overall shifting" in case
29  of doing multiple boolean operations. This permited to solve most
30  tricky cases in LHCb visualization.
31- HepPolyhedron : handle the ierr variable on the BooleanProcessor.execute.
32- BooleanProcessor.src : modifs coming from LHCb to "loop on shifts"
33  to attempt solving the "coplanar faces cases".
34- BooleanProcessor.src : modifs coming from LHCb to optmize the code.
35
3620th October 2009  John Allison  (greps-V09-02-02 coworks vis-V09-02-07)
37- G4VGraphicsScene: Added AddCompound (const G4THitsMap<G4double>&).
38
3925th February 2009  John Allison  (greps-V09-02-01)
40- G4VVisManager: Added NotifyHandlers.
41  Notify scene handlers (G4VGraphicsScene objects) that the scene
42  has changed so that they may rebuild their graphics database, if
43  any, and redraw all views.
44
4524th February 2009  John Allison  (greps-V09-02-00)
46- G4VMarker:
47  o Added enum SizeType {none, world, screen};
48  o Added GetSizeType and SetSize/Diameter/Radius(SizeType, G4double).
49
5013th November 2008  Gabriele Cosmo  (greps-V09-01-06)
51- HepPolyhedronHype: fixed arrays upper-bound in constructor, responsible
52  for memory corruption in visualization of G4Hype shape.
53
5428th April 2008  John Allison  (greps-V09-01-05)
55- HepPolyhedronEllipticalCone: correct visibility of auxiliary edges.
56
5714th April 2008  Tatiana Nikitina  (greps-V09-01-04)
58- Added G4Hype representation to HepPolyhedron and G4Polyhedron.
59- Coworks with tag "geom-specific-V09-01-08".
60
6113th March 2008  Gabriele Cosmo  (greps-V09-01-03)
62- Added inclusion of <cstdlib> in HepPolyhedron.cc for porting on gcc-4.3.0.
63
6429th January 2008  John Allison  (greps-V09-01-01)
65- HepPolyhedronParaboloid: bug fix and improvement.
66
674th January 2008  John Allison  (greps-V09-01-00 with vis-V09-01-00)
68- G4VVisManager::Draw2D methods, already available for G4Text, extended to:
69  G4Circle, G4Polyhedron, G4Polyline, G4Polymarker, G4Square.
70
7121th August 2007  Tatiana Nikitina  (greps-V09-00-02)
72- Fixed bug in scaling parameter for G4EllipticalCone representation in
73  HepPolyhedron class.
74
7518th July 2007  Tatiana Nikitina  (greps-V09-00-01)
76- Added G4Paraboloid to HepPolyhedron and G4Polyhedron.
77- Coworks with tag "geom-specific-V09-00-02".
78
7917th July 2007  John Allison  (greps-V09-00-00)
80- G4VGraphicsScene: Added constructor and virtual destructor.
81
828th June 2007  Gabriele Cosmo  (greps-V08-03-00)
83- G4AttHolder: replaced forward declarations in header with explicit inclusions
84  to allow for porting on Intel-icc compiler.
85
863rd April 2007  John Allison  (greps-V08-02-01)
87- G4AttDefStore: now comprises utility functions in namespace
88  G4AttDefStore.  (Used to be a class with only static functions and
89  data members.)
90- G4AttHolder: Made copy constructor and assignment private to enforce
91  proper usage.
92
935th January 2007  John Allison  (greps-V08-02-00)
94- G4VisAttributes:
95  o SetForceLineSegmentsPerCircle: Bug fix: Now correctly implements reset.
96  o Minor refinement: Introduced IsForceLineSegmentsPerCircle().
97- G4Colour: Replaced static data members by static functions that
98  create and copy out the relevant colours.  (Static data members make
99  a lot of noise in the gdb debugger.  Anyway, are best avoided.)
100
1017th November 2006  John Allison  (greps-V08-01-11)
102- HepPolyhedronEllipticalCone: Bug fix.
103- G4Visible: Fixed possible minor (subsidiary) memory leak in SetVisAttributes.
104- G4AttCheck: Cosmetic.
105
1062nd November 2006  John Allison  (greps-V08-01-10)
107- G4Visible: Fixed copy constructor and assignment operator for deep copies.
108
1091st November 2006  John Allison  (greps-V08-01-09; co-works: vis-V08-01-09)
110- Tidied G4Att checking and storing:
111  o G4AttCheck: Added store key to printing in operator<<.
112  o G4AttDef: Improved printing of store key in operator<<.
113  o G4AttDefStore: Removed GetName, introduced GetStoreKey.
114  o G4AttHolder:
115    ~ Removed GetAttDefsName.
116    ~ Replaced AddAttValues and AddAttDefs by a combined AddAtts.
117
11824th October 2006  John Allison  (greps-V08-01-08; co-works: vis-V08-01-08)
119- G4VisAttributes: Change GetAttValues to CreateAttValues.  It creates
120  an expendable copy on the heap, thus following the behaviour of
121  CreateAttValues in trajectories, hits, etc.  This achieves consistency
122  of behaviour and user expectation; the user must delete after use.
123- G4AttHolder: Remove CopyAndAddAttValues.  No longer needed after
124  above change to G4VisAttributes.
125
12621st October 2006  John Allison  (greps-V08-01-07)
127- Added G4AttHolder.
128- G4AttDefStore: Changed GetName type from G4String to const G4String&.
129
13017th October 2006  John Allison  (greps-V08-01-06)
131- Moved below operator<< from G4AttCheck.hh/cc to G4AttDef.hh/cc.
132
13316th October 2006  John Allison  (greps-V08-01-05)
134- Added operator<< for G4AttDefs:
135  std::ostream& operator<<
136    (std::ostream& os, const std::map<G4String,G4AttDef>* definitions)
137- Improved output diagnostics.
138
139---------------------------------------------------------------------------
14015th September 2006  John Allison  (greps-V08-01-04 - coworks vis-V08-01-06)
141- G4Visible: Added fAllocatedVisAttributes to prevent memory leak.
142
14312th September 2006 Jane Tinslay
144- Remove trailing white spaces in G4ConversionUtils
145- Add FilterHit method to G4VVisManager
146
14711th September 2006 Jane Tinslay
148- Add templated G4AttDef's and various utilities
149
15011th September 2006  John Allison
151- Fixed G4AttCheck for dimensionless "Physics" attributes (were
152  previously "Bookkeeping").
153
1546th September 2006 Jane Tinslay
155- Add G4TypeKey & G4TypeKeyT classes
156
157------------------------------------------------
15826th August 2006  John Allison  (greps-V08-01-03)
159- G4VisAttributes: Added time range.
160
16125th August 2006 Jane Tinslay
162- Make G4VFilter Accept method const
163
16414th August 2006  John Allison  (greps-V08-01-02)
165- G4AttCheck: Improved error checking.
166
16710th July 2006  John Allison  (greps-V08-01-01)
168- Co-works with vis-V08-01-01.
169- G4VGraphicsScene.hh: Removed Establish/DecommissionSpecials.
170- G4VisAttributes:
171  o Added ForceLineSegmentsPerCircle.
172  o Cosmetic re-ordering of methods,
173
1743rd July 2006  John Allison  (greps-V08-01-00)
175- G4AttCheck.cc:
176  o Added G4bool to the list of allowed G4AttValue value types.
177  o Added Density to the list of units categories.
178- G4AttDefStore: Added GetName.
179
1802nd May 2006 Jane Tinslay (greps-V08-00-03)
181- Add FilterTrajectory method to G4VVisManager
182
18319th April 2006  John Allison  (greps-V08-00-02 - needs vis-V08-00-04)
184- G4VGraphicsScene: Added Begin/EndPrimitives2D.
185- G4VVisManager: Added Draw2d(const G4Text&).
186
18728th March 2006 Jane Tinslay (jst28032006)
188- Add G4VFilter and G4SmartFilter
189
19013th March 2006  John Allison  (greps-V08-00-01)
191- Added operator<< for G4Text, G4Circle, G4Square, G4Polyhedron.
192- Improved/tidied operator<< for G4Polyline, G4VMarker, G4VisAttributes.
193- Improved comments in G4VVisManager.
194
19513th January 2006  John Allison  (greps-V08-00-00)
196- Added G4PolyhedronArbitrary:
197  o Moved from geometry/solids/specific, where it was part of a
198    development by Peter Truscott and Fan Lei of QinetiQ.
199    G4PolyhedronArbitrary is a way of creating arbitrary G4Polyhedron
200    objects out of vertices and indices.
201  o Removed unnecessary operator= functions.
202
20323rd November 2005  Jane Tinslay
204- Update documentation in G4Colour
205
20610th November 2005  Jane Tinslay (greps-V07-01-09)
207- G4VVisManager: Fix Dispatch method name to "DispatchToModel".
208- G4Colour: Use public static member functions instead of public
209  static data members to avoid problems with dynamic libraries.
210
21110th November 2005  John Allison
212- G4VVisManager and G4VGraphicsScene: Replaced default arguments
213  G4Transform3D::Identity by G4Transform3D().  (This is a avoid
214  initialisation problems with static objects with dynamic libraries.)
215
2169th November 2005  Gabriele Cosmo
217- Implemented migration to support CLHEP-2.0.X, adding explicit namespace
218  to CLHEP types. Affected files: HepPolyhedron[.h.cc], BooleanProcessor.src.
219
22024th October 2005  John Allison (greps-V07-01-08)
221- Moved G4VTrajectoryDrawer to modeling (renamed G4VTrajectoryModel).
222- G4VVisManager.hh: Changed DispatchToCurrentDrawer to DispatchToCurrentModel.
223
22421st October 2005 Jane Tinslay (greps-V07-01-07)
225- Add G4VTrajectoryDrawer, an abstract base class for trajectory drawers
226- Add "DispatchToCurrentDrawer" method to G4VVisManager
227
22820th October 2005  John Allison (greps-V07-01-06)
229- G4Colour.cc: Added #include <sstream>.
230
23117th October 2005 Jane Tinslay (greps-V07-01-05)
232- intercoms->graphics_reps migration for G4VGraphicsScene and G4VVisManager 
233
23413th October 2005 Jane Tinslay  (greps-V07-01-04)
235- Additions to G4Colour
236  o Add static data members for common colours.
237  o Add G4String->G4Colour colour map.
238
2393rd October 2005  John Allison
240- G4NURBStubesector.cc: Replaced <strstream> by <sstream>.
241
24216th September 2005  John Allison  (greps-V07-01-03)
243- G4AttCheck.cc: Added time to legal G4AttValues.
244
24510th August 2005  Gabriele Cosmo  (greps-V07-01-02)
246- Added Polyhedron description for new G4EllipticalCone shape.
247  Implementation by D.Anninos (CERN).
248  Requires tag "geom-specific-V07-01-03" for geometry/solids/specific module.
249
2505th July 2005  John Allison  (greps-V07-01-01)
251- Big clean-up:
252  o Removed redundant intermediate class, G4VVisPrim.
253  o Removed redundant virtual assignments and similar oddities.
254
25520th Jun 2005  Gabriele Cosmo  (greps-V07-01-00)
256- Added Polyhedron description for new G4Ellipsoid shape.
257  Contribution of G.Guerrieri (INFN Genova).
258
25926th May 2005  John Allison  (greps-V07-00-07)
260- Fixed bug introduced in greps-V07-00-05.
261- Removed DEPRECATION of G4Visible::SetVisAttributes(const G4VisAttributes&)
262  pending a resolution of the issues for a future release.
263
26422nd May 2005  John Allison  (greps-V07-00-05)
265- DEPRECATED G4Visible::SetVisAttributes (const G4VisAttributes&).
266  Meanwhile created copy of G4VisAttributes object on the heap.
267
2683rd May 2005  John Allison  (greps-V07-00-04)
269- Improved G4AttCheck.
270
2717th April 2005  John Allison  (greps-V07-00-03)
272- Needs g3tog4-V07-00-00 and geometry-gmk-V07-00-00.
273- Consolidated G4AttCheck.
274
27528th March 2005  John Allison  (johna-050328a)
276- G4AttCheck: Corrected for Extra and ValueType fields.  Augmented
277  test of more fields.
278
27928th March 2005  John Allison  (johna-050328)
280- G4AttCheck: Added check of Extra field.
281
28226th March 2005  John Allison  (johna-050326)
283- G4AttCheck: Implemented prototype conversion from G4AttValue/Defs to
284  "standard" versions.  Needs G4UIcommand, so makes a new category
285  dependency.  Requires one to make a new lib map.  Seems OK, but
286  must check with Gabriele.
287
28822nd March 2005  John Allison  (greps-V07-00-02)
289- G4Polyhedron: Added fNumberOfRotationStepsAtTimeOfCreation.
290- G4VisAttributes: Changed std::vector<G4AttDef> to map<G4String,G4AttDef>.
291- Added first version of G4AttCheck.
292
2939th March 2005  John Allison  (greps-V07-00-01)
294- HepPolyhedron: Added IsErrorBooleanProcess().
295- BooleanProcessor: Added get_processor_error().
296- G4Visible: Moved SetVisAttributes (const G4VisAttributes&) from .icc
297  to .cc file and added warning message.
298
29919th February 2005  John Allison  (greps-V07-00-00)
300- Needed for vis-V07-00-06.
301- Added G4VisExtent::NullExtent.
302
30310th December 2004  G.Cosmo  (greps-V06-02-04)
304- Replaced M_PI with CLHEP's pi.
305
3068th December 2004  G.Cosmo  (greps-V06-02-03)
307- HepPolyhedron, BooleanProcessor: replaced occurences of HepStd::
308  with std::
309- Added inclusion of <cmath> in HepPolyhedron.cc.
310
3117th December 2004  G.Cosmo  (greps-V06-02-02)
312- Implemented migration to <cmath>.
313
31411th November 2004  J.Allison  (greps-V06-02-01 - requires vis-V06-02-05)
315- Removed G4Polymarker::line.  Use G4Polyline instead.
316- Improved commenting of G4AttDef.
317
31828th July 2004  J.Allison  (greps-V06-02-00)
319- Introduced force auxiliary edge visible.
320
3217th June 2004  G.Cosmo  (greps-V06-01-01)
322- Fixed compilation problem on WIN32-VC for G4AttDefStore.
323- Added definition of GLOBLIBS in GNUmakefile for DLLs build on Windows.
324
32530th March 2004  G.Cosmo  (greps-V06-01-00)
326- Implemented constructor and destructor for G4AttDefStore, to properly
327  delete objects in the static map, allocated through explicit calls to
328  GetInstance(). Made G4AttDefStore a singleton.
329
33018th September 2003  J.Allison  (greps-V05-02-00)
331- Introduced G4Colour<->G4ThreeVector conversion operators.
332
3333rd April 2003  G.Cosmo  (greps-V05-00-00)
334- Cleared trivial pedantic warnings.
335
33627th November 2002  J.Allison  (greps-V04-01-05)
337- Small revison of G4Scale and improvements in G4VMarker class description.
338
33920th November 2002  G.Cosmo  (greps-V04-01-04)
340- Patched access to public static data in G4Scale and G4VisAttributes.
341  Added static accessors to be used in the kernel to allow porting on
342  Windows DLLs.
343- HepPolyhedron[.hh.cc]: changed inline static methods to not inlined.
344
34511th November 2002  E.Chernaev  (greps-V04-01-03)
346- Minor bug fix in HepPolyhedron::GetFacet().
347- HepDouble, HepBoolean --> double, bool in HepPolyhedron
348
3497th November 2002  E.Chernaev  (greps-V04-01-02)
350- Added createTwistedTrap() and createPolyhedron() to HepPolyhedron.
351
35228th October 2002  J.Allison  (greps-V04-01-01)
353- Changed AttDefStore to return a map.
354
35524th October 2002  John Allison  (greps-V04-01-00)
356- Added G4AttDefStore.
357- Further improved G4AttDef/Value.
358- Added const G4std::vector<G4AttValue>* fAttValues/Defs to G4VisAttributes.
359
36023rd October 2002  John Allison
361- G4Colour class description corrected.
362- G4VisAttributes comments slightly improved.
363- G4AttDef and G4AttValue headers changed to follow G4 conventions.
364
36527th September 2002  Joseph Perl
366- Added first versions of headers for G4AttDef and G4AttValue.
367
36810th September 2001  John Allison  (greps-V03-02-04)
369- Added G4Scale::GuidanceString.
370
37120th August 2001  John Allison  (greps-V03-02-03)
372- Made typedef's public in G4Point3DList.hh and G4Polyline.hh.
373
37414th August 2001  John Allison  (greps-V03-02-02)
375- Coworks with vis-V03-02-11 and intercoms-V03-02-03.
376- Added G4Polyline::transform.
377- Fixed pedantic warnings in G4NURBS.
378
37924th July May 2001  John Allison  (greps-V03-02-01)
380- Improvements to comments and layout in G4VisExtent.
381- Cosmetic improvements to G4Scale, small change of interface.
382
38321st July May 2001  John Allison  (greps-V03-02-00)
384- Added G4Scale.
385
38625th May 2001  John Allison  (greps-V03-01-02)
387- Added GetSurfaceArea() and GetVolume() to HepPolyhedron (Evgeni).
388- Bug fix in BooleanProcessor.src (Guy, Evgeni).
389
3903rd May 2001  John Allison  (greps-V03-01-01)
391- Replaced G4RWTValOrderedVector by G4std::vector in G4PlacedPolyhedron
392  and G4Point3DList.  Forces co-working tags in categories:
393    geommng-V03-01-02
394    tracking-V03-01-00
395    vis-V03-01-01
396
39711th April 2001  John Allison  (greps-V03-01-00)
398- Some code has been added to cover unforeseen earlier situation
399  during preselection of faces without intersection (Evgeni).
400- Moved #include <CLHEP/config/TemplateFunctions.h> and others from
401  HepPolyhedron.h to HepPolyhedron.cc (Evgeni).
402- Fixed stupid warnings about possible use of uninitialized variables (Evgeni).
403- Made GetNumberOfRotationSteps() static and public (John).
404
4056th February 2001  John Allison  (greps-V03-00-01)
406- More tidying for CodeWizard.  Added virtual destructors to
407  HepPolyhedronBox, etc.  Also made all constructors non-inline.
408
4093rd February 2001  John Allison  (greps-V03-00-00)
410- Tidied for CodeWizard.  Note: G4Circle.icc and G4VVisPrim.icc removed, so
411  "gmake clean" all relevant directories before updating.
412
4135th June May 2000  Evgeni Chernaev (greps-V01-01-04)
414- Bug fix in BooleanProcessor.src.
415- Graceful recovery from caseIE() and caseEE() non-implementation
416  (first polygon returned).
417
41820th May 2000  Evgeni Chernaev (greps-V01-01-03)
419- Temporary workaround to avoid caseIE() and caseEE.
420
42113th May 2000  John Allison (greps-V01-01-02)
422- Changed std:: to HepStd:: for ISO compatibility (Evgeni Chernaev).
423
42411th April 2000  John Allison (greps-V01-01-01)
425- Added operator = (const HepPolyhedron&) to ExtPolyhedron.
426
4276th April 2000  John Allison (greps-V01-01-00)
428- Tagged.
429
4304th April 2000  Evgeni Chernaev
431- Added boolean operations (add, subtract, intersect) on HepPolyhedron objects.
432- Added BooleanProcessor.src.
433
43430th March 2000  John Allison
435- Added virtual operator= to G4Polyhedron.hh and HepPolyhedron.h to avoid
436  warnings about hiding.
437
43823rd February 2000  John Allison
439- Moved G4Polyhedron constructors and destructor to .cc.
440
44122nd February 2000  Evgeni Chernaev (greps-V01-00-03)
442- Re-instated edge flags for "invisible" edges of HepPolyhedronCons and Torus.
443
44422nd February 2000  John Allison  (greps-V01-00-02)
445- Added HepPolyhedron (Evgeni Chernaev).  Re-implemented G4Polyhedron.
446
44711th January 2000  John Allison  (greps-V01-00-01)
448- Fix for spheres with small dtheta.
449
45016th December 1999  John Allison (greps-V01-00-00)
451- Added G4Polyhedron::Transform and G4Polyhedron::InvertFacets (Evgeni
452  Chernaev).
453
45417th November 1999 Satoshi Tanaka (greps-V00-01-01)
455- Header comments for software reference manual
456
4574th October 1999  John Allison  (greps-V00-01-00)
458- Improved comments in G4Visible.hh.
459
46023rd July 1999  John Allison
461- Added base class copy to copy contructor of G4Polyhedron.
462
46321st July 1999  John Allison
464- Added G4PlacedPolyhedron, which includes G4PlacedPolyhedronList.
465
466greps-01-00-08  5th June John Allison
467- Added virtual operator = and overrides to G4Circle and G4Square.
468
469greps-01-00-07  25th May 1999  John Allison
470- Moved operator != to member function.
471
472greps-01-00-06  19th May 1999  John Allison
473- Fixed compilation warnings, mainly overriding virtual functions.
474
475greps-01-00-05  12th May 1999  John Allison
476- Made destructors virtual where applicable.
477
478greps-01-00-04  28th April 1999  John Allison
479- Moved G4VVisManager and G4VGraphicsScene to intercoms.
480
481greps-01-00-03  7th February 1999  John Allison
482- Removed GNU_GCC from G4Polymarker.cc.
483- Added G4VGraphicsScene::AddThis (G4Polycone and G4Polyhedra.
484
485greps-01-00-02  6th January 1999  John Allison
486- Very minor change in G4VisExtent.cc - 2 -> 2.
487- Inclusion of test/ in tag.
488
489greps-01-00-01  6th January 1999  John Allison
490- Corrected constructors of G4VisAttributes for initialisation of
491  fDaughtersInvisible.
492
493greps-00-04-02 02 December 1998 Evgeni Tcherniaev
494- Added G4NURBS::CalcPoint() for calculation coordinates of a
495point lying on the nurbs surface.
496
497greps-00-04-01  25th November 1998  John Allison
498- Added void G4VisAttributes::SetDaughtersInvisible (G4bool).
499
500greps-00-03-03  9th November 1998 Satoshi Tanaka
501Added G4String fInfo and its access functions to G4VMarker
502
503greps-00-03-02  6th November 1998  John Allison
504- Cleaned up GNUmakefile - no longer includes unnecesary -I's
505
506greps-00-03-01  26th September 1998  John Allison
507- Removed SetWorldVolume from G4VVisManager - no longer used.
508
509greps-00-02-03  21st August 1998  John Allison
510- Rationalised G4VisExtent::G4VisExtent (const G4Point3D& centre,
511  G4double radius) so that iit is a true "inverse" of GetExtentRadius.
512- Added global target to GNUmakefile (Gabriele Cosmo).
513
514greps-00-02-02  14th August 1998  John Allison
515- Added GeometryHasChanged() to G4VVisManager.  To be used by the run manager.
516
517greps-00-02-01  6th August 1998  John Allison
518- Removed Draw, ClearView and Show in G4VVisManager.
519
520greps-00-06-03  26th June 1998  Gabriele Cosmo
521- Updated test/GNUmakefile to new electromagnetics.
522
523greps-00-06-02  10th June 1998  John Allison
524- Changed defaults in G4VisExtent to 0.
525
5261st June 1998  Satoshi Tanaka
527- Added Draw(), ClearView(), Show() to G4VVisManager.
528
529greps-00-06-01  29th April 1998  John Allison
530- Introduced Establish/DecommissionSpecials (G4PhysicalVolumeModel&)
531  in place of BeginModeling (G4PhysicalVolumeModel&).
532
533April 21st, 98 G.Cosmo (greps-00-05-03)
534- Tagged.
535
536April 9th, 98 G.Cosmo
537- Porting on DEC-cxx 6.0.
538  Removed meaningless usage of "const" qualifier from functions
539  return type for basic types by value. Modified files: G4NURBS.cc
540
541greps-00-05-02  4th April 1998  John Allison
542- Re-engineered maintenance of current depth, etc.  Needed new method
543  G4VGraphicsScene::BeginModeling (G4PhysicalVolumeModel&) in
544  graphics_reps.  The result is much cleaner model and modeling
545  parameters classes.  Also, the current depth, physical volume and
546  logical volume are immediately available as protected pointers in
547  G4VScene.
548
549HEAD  3rd April 1998  John Allison
550- Added GetWorld/ScreenDiameter/Radius to G4VMarker.
551
552April 2, 1998 G.Barrand :
553- G4Polyhedron.cc : add a G4double cast to help NT/Visual compiler.
554
555greps-00-05-01  26th March 1998  John Allison
556- Removed #if defined(__DECCXX) || defined(WIN32) from G4NURBS.hh.
557- Improved comments in G4VMarker.hh
558
5597th January 1998  John Allison
560- Added arguments to PreAddThis in G4VGraphicsScene.hh.
561- Added virtual destructor to G4VVisManager.
562
563December 19, 97 G. Cosmo - (alpha03)
564
565- Created.
566
567- Previous history (from README)
568
569vis-00-01-02  13th July 1997  John Allison
570- Consolidation of previous tag.
571
572vis-00-01-01  8th June 1997  John Allison
573- First systematic tag.
574- G4Polyhedron - can now set number of sides for circle polygon approximation
Note: See TracBrowser for help on using the repository browser.