Geant4 Cross Reference |
1 # Category raytracer History << 1 ------------------------------------------------------------------- 2 2 3 See `CONTRIBUTING.rst` for details of **requir << 3 ========================================================= 4 which **must** added in reverse chronological << 4 Geant4 - an Object-Oriented Toolkit for Simulation in HEP 5 It must **not** be used as a substitute for wr << 5 ========================================================= >> 6 >> 7 Category History file >> 8 --------------------- >> 9 This file should be used by G4 developers and category coordinators >> 10 to briefly summarize all major modifications introduced in the code >> 11 and keep track of all category-tags. >> 12 It DOES NOT substitute the CVS log-message one should put at every >> 13 committal in the CVS repository ! >> 14 >> 15 ************************************************************* >> 16 * Note that modeling and test have their own History files. * >> 17 ************************************************************* >> 18 >> 19 ---------------------------------------------------------- >> 20 * Reverse chronological order (last date on top), please * >> 21 ---------------------------------------------------------- 6 22 7 ---------------------------------------------- << 23 History file for Ray Tracer category 8 << 24 --------------------------------------- 9 ## 2023-03-22 Ben Morgan (raytracer-V11-01-01) << 10 - Export public compile definitions to indicat << 11 "use on link" model. << 12 << 13 ## 2023-02-06 Ben Morgan (raytracer-V11-01-00) << 14 - Isolate private headers and update dependenc << 15 << 16 ## 2022-11-25 Gabriele Cosmo (raytracer-V11-00 << 17 - Fixed compilation warnings for implicit type << 18 << 19 ## 2022-11-06 John Allison (raytracer-V11-00-0 << 20 - Eliminate G4cerr and introduce G4warn. << 21 - `#define G4warn G4cout` << 22 - The above is temporary until a genuine G << 23 implemented. << 24 - Change G4cerr to G4warn in all cases. << 25 - Change G4cout to G4warn in those cases whe << 26 an error report or a warning. << 27 << 28 ## 2022-09-03 Ben Morgan (raytracer-V11-00-04) << 29 - Resolve inconsistencies in dependencies << 30 - Remove inclusion of headers for unused int << 31 - Remove unused dependencies << 32 - Add needed G4geometrymg dependency << 33 << 34 ## 2022-04-07 Gabriele Cosmo (raytracer-V11-00 << 35 - Fixed GNUmakefile and source.cmake to add re << 36 "geometry/solids/CSG" and "geometry/solids/s << 37 in recent development. << 38 << 39 ## 2022-03-22 Ben Morgan (raytracer-V11-00-02) << 40 - Use geant4_module_sources to add optional so << 41 << 42 ## 2022-01-28 Ben Morgan (raytracer-V11-00-01) << 43 - Replace `geant4_global_library_target` with << 44 call to `geant4_add_category` to define libr << 45 - Rename DLL export symbol for locality to thi << 46 - Make DLL export symbol a CMake module-level << 47 future modularization << 48 << 49 ## 2021-12-10 Ben Morgan (raytracer-V11-00-00) << 50 - Change to new Markdown History format << 51 << 52 --- << 53 << 54 # History entries prior to 11.0 << 55 25 56 18 November 2021 John Allison (raytracer-V10 26 18 November 2021 John Allison (raytracer-V10-07-06) 57 - G4RayTracer.cc: Coverity fix: un-initialised 27 - G4RayTracer.cc: Coverity fix: un-initialised data member. 58 28 59 12 November 2021 - Ben Morgan (raytracer-V10-0 29 12 November 2021 - Ben Morgan (raytracer-V10-07-05) 60 - Retire G4VIS_... preprocessor symbols in too 30 - Retire G4VIS_... preprocessor symbols in toolkit build, only required 61 by obsolete GNUmake system 31 by obsolete GNUmake system 62 32 63 25 October 2021 Guy Barrand (raytracer-V10-07 33 25 October 2021 Guy Barrand (raytracer-V10-07-04) 64 - G4RayTracerSceneHandler.hh: to quiet g++ abo 34 - G4RayTracerSceneHandler.hh: to quiet g++ about "AddPrimitive(G4Plotter&)", have: 65 using G4VSceneHandler::AddPrimitive; 35 using G4VSceneHandler::AddPrimitive; 66 36 67 30 September 2021 John Allison (raytracer-V1 37 30 September 2021 John Allison (raytracer-V10-07-03) 68 - Remove instantiation of G4The(MT)RayTracer f 38 - Remove instantiation of G4The(MT)RayTracer from G4RayTracer. 69 - G4RayTracer is/should be a "pure factory". 39 - G4RayTracer is/should be a "pure factory". Its job is to instantiate 70 a scene handler or viewer on request. G4Th 40 a scene handler or viewer on request. G4The(MT)RayTracer should/need 71 only be instantiated when the viewer is in 41 only be instantiated when the viewer is instantiated. 72 - It is somewhat complicated by the need(?) 42 - It is somewhat complicated by the need(?) for G4TheMTRayTracer to be 73 a singleton - is that really required? Can 43 a singleton - is that really required? Cannot G4RTRun simply get the 74 current ray tracer? Anyway, singleton natu 44 current ray tracer? Anyway, singleton nature is preserved. 75 45 76 24 September 2021 John Allison (raytracer-V1 46 24 September 2021 John Allison (raytracer-V10-07-02) 77 - Make RayTracerX viewers "auto refresh". 47 - Make RayTracerX viewers "auto refresh". 78 - This means the ray tracer will start traci 48 - This means the ray tracer will start tracing immediately on opening 79 (`/vis/open RayTracerX`) and on any change 49 (`/vis/open RayTracerX`) and on any change of view parameters. 80 - In the past it was thought better to refre 50 - In the past it was thought better to refresh manually, to give opportunity 81 of adjusting the view first, but with the 51 of adjusting the view first, but with the introduction of using the 82 view parameters of the previously existing 52 view parameters of the previously existing viewer (visman-V10-07-20), 83 it is easy to choose a view with an OpenGL 53 it is easy to choose a view with an OpenGL viewer, say, then simply open 84 the ray tracer viewer. 54 the ray tracer viewer. 85 - Also, with the advent of multithreading, r 55 - Also, with the advent of multithreading, ray tracing is faster, so 86 adjusting and re-viewing is less tedious. 56 adjusting and re-viewing is less tedious. 87 - This only affects RayTracerX - plain RayTr 57 - This only affects RayTracerX - plain RayTracer is not affected. 88 - You may switch this feature off with `/vis 58 - You may switch this feature off with `/vis/viewer/set/auto-refresh false`. 89 59 90 30 June 2021 John Allison (raytracer-V10-07- 60 30 June 2021 John Allison (raytracer-V10-07-01) 91 - Requires greps-V10-07-09, modeling-V10-07-11 61 - Requires greps-V10-07-09, modeling-V10-07-11 and visman-V10-07-11. 92 - Revise vis models. See visualization/modelin 62 - Revise vis models. See visualization/modeling/History for more details. 93 - Consequent changes: 63 - Consequent changes: 94 o AddPrimitive(const G4Scale&) has been remo 64 o AddPrimitive(const G4Scale&) has been removed from all scene handlers. 95 65 96 15th April 2021 Ben Morgan (raytracer-V10-07-0 66 15th April 2021 Ben Morgan (raytracer-V10-07-00) 97 - Migrate to modular CMake build 67 - Migrate to modular CMake build 98 68 99 20th October 2020 Jonathan Madsen (raytracer- 69 20th October 2020 Jonathan Madsen (raytracer-V10-06-03) 100 - Implemented G4RunManagerFactory::GetMasterRu 70 - Implemented G4RunManagerFactory::GetMasterRunManager() 101 71 102 10th August 2020 John Allison (raytracer-V10- 72 10th August 2020 John Allison (raytracer-V10-06-02) 103 - G4TheMTRayTracer.cc: 73 - G4TheMTRayTracer.cc: 104 o Suppress printing during RayTracer run. Ke 74 o Suppress printing during RayTracer run. Keep current verbosity and 105 printProgress, then 75 printProgress, then 106 G4UImanager::GetUIpointer()->ApplyComman 76 G4UImanager::GetUIpointer()->ApplyCommand("/run/verbose 0"); 107 G4UImanager::GetUIpointer()->ApplyComman 77 G4UImanager::GetUIpointer()->ApplyCommand("/run/printProgress 0"); 108 then restore after. 78 then restore after. 109 79 110 31 May 2020 Ben Morgan (raytracer-V10-06-01) 80 31 May 2020 Ben Morgan (raytracer-V10-06-01) 111 - Use add_definitions to set PRIVATE-level com 81 - Use add_definitions to set PRIVATE-level compile add_definitions 112 for compatibility between old and new CMake 82 for compatibility between old and new CMake systems 113 83 114 12 December 2019 Ben Morgan (raytracer-V10-06- 84 12 December 2019 Ben Morgan (raytracer-V10-06-00) 115 - Cleanup CMake build, removing obsolete granu 85 - Cleanup CMake build, removing obsolete granular library option and 116 explicit include_directories. 86 explicit include_directories. 117 87 118 15th November 2019, Gabriele Cosmo (raytracer- 88 15th November 2019, Gabriele Cosmo (raytracer-V10-05-01) 119 - Fixed cases of implicit type conversions fro 89 - Fixed cases of implicit type conversions from size_t to G4int. 120 90 121 25th October 2019 Ben Morgan (raytracer-V10-05 91 25th October 2019 Ben Morgan (raytracer-V10-05-00) 122 - Link to X11 imported targets when building X 92 - Link to X11 imported targets when building X11 driver 123 93 124 9th November 2018 Gabriele Cosmo (raytracer-V 94 9th November 2018 Gabriele Cosmo (raytracer-V10-04-04) 125 - G4RTMessenger: fixed printout typos. 95 - G4RTMessenger: fixed printout typos. 126 96 127 24th October 2018 John Allison (raytracer-V10 97 24th October 2018 John Allison (raytracer-V10-04-03) 128 - G4RayTracerSceneHandler::BuildVisAttsMap: 98 - G4RayTracerSceneHandler::BuildVisAttsMap: 129 o Use name,copyNo constructor of G4ModelingP 99 o Use name,copyNo constructor of G4ModelingParameters::PVPointerCopyNo. 130 (The nodeID constructor was removed in mod 100 (The nodeID constructor was removed in modeling-V10-04-15). 131 101 132 17th May 2018 Jonathan Madsen (raytracer-V10- 102 17th May 2018 Jonathan Madsen (raytracer-V10-04-01) 133 - updated "thread-local-static-var" model to 103 - updated "thread-local-static-var" model to 134 "function-returning-thread-local-static-refe 104 "function-returning-thread-local-static-reference" model 135 which fixes Windows DLL + MT 105 which fixes Windows DLL + MT 136 106 137 20th March 2018 Makoto Asai (raytracer-V10-04 107 20th March 2018 Makoto Asai (raytracer-V10-04-00) 138 - G4RayTrajectory.cc 108 - G4RayTrajectory.cc 139 o Use HyperStep of G4ParallelWorldProcess to 109 o Use HyperStep of G4ParallelWorldProcess to draw volumes 140 defined in a parallel world. 110 defined in a parallel world. 141 o sources.cmake and GNUmakefile are modified 111 o sources.cmake and GNUmakefile are modified accordingly. 142 112 143 7th May 2017 John Allison (raytracer-V10-03-0 113 7th May 2017 John Allison (raytracer-V10-03-04) 144 - G4RayTracerViewer.cc: 114 - G4RayTracerViewer.cc: 145 o Expanded filename numbering to 4 digits, z 115 o Expanded filename numbering to 4 digits, zero filled, e.g., 146 g4RayTracer.viewer-1_0000.jpeg 116 g4RayTracer.viewer-1_0000.jpeg 147 g4RayTracer.viewer-1_0001.jpeg 117 g4RayTracer.viewer-1_0001.jpeg 148 etc. 118 etc. 149 o Useful for producing many files for a movi 119 o Useful for producing many files for a movie. 150 120 151 5th May 2017 John Allison (raytracer-V10-03-0 121 5th May 2017 John Allison (raytracer-V10-03-03) 152 - Pick up vis attributes of the geometry from 122 - Pick up vis attributes of the geometry from the vis scene (G4Scene). 153 Make a map of the vis attributes by touchabl 123 Make a map of the vis attributes by touchable path from the G4Scene in 154 G4RayTracerSceneHandler. When a touchable is 124 G4RayTracerSceneHandler. When a touchable is encountered in the Ray 155 Tracer, pick up the vis attributes from the 125 Tracer, pick up the vis attributes from the map instead of from the 156 geometry tree. For simple use, for example 126 geometry tree. For simple use, for example 157 /vis/open RayTracer # or RayTracerX 127 /vis/open RayTracer # or RayTracerX 158 /vis/drawVolume 128 /vis/drawVolume 159 /vis/viewer/flush 129 /vis/viewer/flush 160 the result will be the same as before. But w 130 the result will be the same as before. But when a user selects a 161 sub-component, for example 131 sub-component, for example 162 /vs/drawVolume Shape1 132 /vs/drawVolume Shape1 163 the Ray Tracer will now draw only Shape1. Th 133 the Ray Tracer will now draw only Shape1. The Ray Tracer will also 164 follow changes made in other viewers by copy 134 follow changes made in other viewers by copying the view. For example 165 the user can chose a viewing angle and zoom, 135 the user can chose a viewing angle and zoom, and change the visibility 166 and colour of volumes, using, say, a Qt view 136 and colour of volumes, using, say, a Qt viewer (say viewer-0), and see 167 the effect in the Ray Tracer: 137 the effect in the Ray Tracer: 168 /vis/open RayTracer # Gets the same scene 138 /vis/open RayTracer # Gets the same scene as the Qt viewer 169 /vis/viewer/copyViewFrom viewer-0 # Copie 139 /vis/viewer/copyViewFrom viewer-0 # Copies camera parameters, or... 170 /vis/viewer/set/all viewer-0 # ...co 140 /vis/viewer/set/all viewer-0 # ...copies all parameters 171 /vis/viewerflush 141 /vis/viewerflush 172 142 173 19th February 2017 John Allison (raytracer-V1 143 19th February 2017 John Allison (raytracer-V10-03-02) 174 - G4RTXScanner.cc: 144 - G4RTXScanner.cc: 175 o Changed back to XA_RGB_BEST_MAP. (I don't 145 o Changed back to XA_RGB_BEST_MAP. (I don't know what was going on 176 but it seems OK now.) 146 but it seems OK now.) 177 - G4RayTracer.cc and G4RayTracerViewer.cc: 147 - G4RayTracer.cc and G4RayTracerViewer.cc: 178 o The ray tracer pointer is now passed from 148 o The ray tracer pointer is now passed from G4RayTracer to 179 G4RayTracerViewer so that there is no need 149 G4RayTracerViewer so that there is no need to instantiate it there. 180 This works for both sequential and MT mode 150 This works for both sequential and MT modes. (G4RayTracerViewer.cc 181 no longer has any need for special action 151 no longer has any need for special action for G4MULTITHREADED - it 182 is all done in G4RayTracer.cc.) 152 is all done in G4RayTracer.cc.) 183 o Introduced G4RayTracerViewer::Initialise. 153 o Introduced G4RayTracerViewer::Initialise. Fixes a bug whereby the 184 jpeg for RayTracer was always 600x600. 154 jpeg for RayTracer was always 600x600. 185 155 186 22nd February 2017 John Allison (raytracer-V1 156 22nd February 2017 John Allison (raytracer-V10-03-00) 187 - G4RTXScanner.cc: Changed XA_RGB_BEST_MAP to 157 - G4RTXScanner.cc: Changed XA_RGB_BEST_MAP to XA_RGB_DEFAULT_MAP. 188 (It seems XA_RGB_BEST_MAP no longer availabl 158 (It seems XA_RGB_BEST_MAP no longer available on Mac XQuartz 2.7.11.) 189 159 190 31st August 2016 John Allison (raytracer-V10- 160 31st August 2016 John Allison (raytracer-V10-02-01) 191 - Fix G4Orb and G4Ellipsoid hiding warnings. 161 - Fix G4Orb and G4Ellipsoid hiding warnings. 192 162 193 2nd May 2016 John Allison (raytracer-V10-02-0 163 2nd May 2016 John Allison (raytracer-V10-02-00) 194 - G4RTJpegCoder.cc: Fixed gcc-6.1 warning. 164 - G4RTJpegCoder.cc: Fixed gcc-6.1 warning. 195 165 196 2nd February 2015 Gabriele Cosmo (raytracer-V 166 2nd February 2015 Gabriele Cosmo (raytracer-V10-01-00) 197 - Fix to sources.cmake script to include missi 167 - Fix to sources.cmake script to include missing dependency on external library. 198 168 199 20th November 2014 Makoto Asai (raytracer-V10 169 20th November 2014 Makoto Asai (raytracer-V10-00-00) 200 - Fixes for Coverity. 170 - Fixes for Coverity. 201 171 202 15th November 2013 John Allison (raytracer-V0 172 15th November 2013 John Allison (raytracer-V09-06-07) 203 - Some changes as suggested by PVS. 173 - Some changes as suggested by PVS. 204 - Fixes for Coverity. 174 - Fixes for Coverity. 205 175 206 20th September 2013 Gabriele Cosmo (raytracer- 176 20th September 2013 Gabriele Cosmo (raytracer-V09-06-06) 207 - Fixed GNUmakefile. Added dependency on "run" 177 - Fixed GNUmakefile. Added dependency on "run" category... 208 178 209 19th September 2013 Makoto Asai (raytracer-V09 179 19th September 2013 Makoto Asai (raytracer-V09-06-05) 210 - Removed unused variable in G4RTPrimaryGenera 180 - Removed unused variable in G4RTPrimaryGeneratorAction.hh. 211 181 212 19th September 2013 Makoto Asai (raytracer-V09 182 19th September 2013 Makoto Asai (raytracer-V09-06-04) 213 - Both G4TheRayTracer and G4TheMTRayTracer inv 183 - Both G4TheRayTracer and G4TheMTRayTracer invoke G4VVisManager::IgnoreStateChanges() 214 method to avoid unnecessary state-change han 184 method to avoid unnecessary state-change handling. 215 - Co-working with greps-V09-06-10. 185 - Co-working with greps-V09-06-10. 216 186 217 17th September 2013 Makoto Asai (raytracer-V09 187 17th September 2013 Makoto Asai (raytracer-V09-06-03) 218 - Introducing G4TheMTRayTracer that is multi-t 188 - Introducing G4TheMTRayTracer that is multi-threaded. 219 - Co-working with run-V09-06-100 and greps-V09 189 - Co-working with run-V09-06-100 and greps-V09-06-09. 220 190 221 15th September 2013 Makoto Asai (raytracer-V09 191 15th September 2013 Makoto Asai (raytracer-V09-06-02) 222 - Move data member of G4RTSteppingAction stati 192 - Move data member of G4RTSteppingAction static. Preparation toward 223 making G4TheRayTracer class multi-threaded. 193 making G4TheRayTracer class multi-threaded. 224 194 225 16th June 2013 Makoto Asai (raytracer-V09-06- 195 16th June 2013 Makoto Asai (raytracer-V09-06-01) 226 - Make G4RayTrajectory and G4RayTrajectoryPoin 196 - Make G4RayTrajectory and G4RayTrajectoryPoint classes thread safe. 227 197 228 2nd December 2012 John Allison (raytracer-V0 198 2nd December 2012 John Allison (raytracer-V09-06-00) 229 - Removed NURBS and references to i_mode. 199 - Removed NURBS and references to i_mode. 230 200 231 5th July 2012 Gabriele Cosmo (raytracer-V09- 201 5th July 2012 Gabriele Cosmo (raytracer-V09-05-05) 232 - Explicitly use inclusion of headers for syst 202 - Explicitly use inclusion of headers for system of units and physical 233 constants, in plan to remove implicit inclus 203 constants, in plan to remove implicit inclusion from globals.hh. 234 204 235 3rd July 2012 John Allison (raytracer-V09-05 205 3rd July 2012 John Allison (raytracer-V09-05-04) 236 - Fixed some Coverity warnings. 206 - Fixed some Coverity warnings. 237 207 238 3rd July 2012 John Allison (raytracer-V09-05 208 3rd July 2012 John Allison (raytracer-V09-05-03) 239 - Tagged a fix: uses std::sqrt. 209 - Tagged a fix: uses std::sqrt. 240 210 241 8th June 2012 John Allison (raytracer-V09-05 211 8th June 2012 John Allison (raytracer-V09-05-02) 242 - Shadow clean. 212 - Shadow clean. 243 213 244 8th February 2012 John Allison (raytracer-V0 214 8th February 2012 John Allison (raytracer-V09-05-01) 245 - G4RayTracerViewer.cc, G4TheRayTracer.hh/cc: 215 - G4RayTracerViewer.cc, G4TheRayTracer.hh/cc: 246 Adopt fix proposed by jasondet@gmail.com to 216 Adopt fix proposed by jasondet@gmail.com to fix Bug #1274. 247 - G4RayTracerViewer.cc: 217 - G4RayTracerViewer.cc: 248 o Move window size hints to constructor from 218 o Move window size hints to constructor from SetView, so that 249 NColumn/Row are never changed, even if win 219 NColumn/Row are never changed, even if window size hints change 250 (e.g., as a result of /vis/viewer/set/all) 220 (e.g., as a result of /vis/viewer/set/all). It is not possible to 251 change NColumn/Row after instantiation. 221 change NColumn/Row after instantiation. 252 - G4TheRayTracer.cc: 222 - G4TheRayTracer.cc: 253 o Ensure unit vector for the ray shooter. ( 223 o Ensure unit vector for the ray shooter. (Otherwise it can cause a 254 G4Exception in G4ParticleChange::CheckIt.) 224 G4Exception in G4ParticleChange::CheckIt.) 255 225 256 7th February 2012 John Allison (raytracer-V0 226 7th February 2012 John Allison (raytracer-V09-05-00) 257 - G4RayTracerViewer.cc: 227 - G4RayTracerViewer.cc: 258 o G4RayTracerViewer::SetView: Fix up-vector 228 o G4RayTracerViewer::SetView: Fix up-vector bug #1274. 259 o Move window size hints to constructor from 229 o Move window size hints to constructor from SetView, so that 260 NColumn/Row are never changed, even if win 230 NColumn/Row are never changed, even if window size hints change 261 (e.g., as a result of /vis/viewer/set/all) 231 (e.g., as a result of /vis/viewer/set/all). It is not possible to 262 change NColumn/Row after instantiation. 232 change NColumn/Row after instantiation. 263 - G4TheRayTracer.cc: 233 - G4TheRayTracer.cc: 264 o Ensure unit vector for the ray shooter. ( 234 o Ensure unit vector for the ray shooter. (Otherwise it can cause a 265 G4Exception in G4ParticleChange::CheckIt.) 235 G4Exception in G4ParticleChange::CheckIt.) 266 236 267 17th June 2011 Ben Morgan (raytracer-V09-04-04 237 17th June 2011 Ben Morgan (raytracer-V09-04-04) 268 - sources.cmake : Changed to use GEANT4_USE_RA 238 - sources.cmake : Changed to use GEANT4_USE_RAYTRACER_X11 variable. 269 239 270 24th May 2011 Ben Morgan (raytracer-V09-04-03) 240 24th May 2011 Ben Morgan (raytracer-V09-04-03) 271 - sources.cmake : Added additional includes, d 241 - sources.cmake : Added additional includes, definitions and link libraries 272 to build X11 component of RayTracer, if it's 242 to build X11 component of RayTracer, if it's enabled by the user. 273 CMake functionality added to trunk at revisi 243 CMake functionality added to trunk at revision 49996. 274 244 275 20th May 2011 Ben Morgan (raytracer-V09-04-02 245 20th May 2011 Ben Morgan (raytracer-V09-04-02) 276 - CMakeLists.txt : Added G4VIS_ALLOC_EXPORT co 246 - CMakeLists.txt : Added G4VIS_ALLOC_EXPORT compiler definition via 277 add_definitions so it's applied to all sourc 247 add_definitions so it's applied to all sources in this module. We 278 don't add this definition at the visualizati 248 don't add this definition at the visualization category level because 279 only raytracer uses it. It can be moved high 249 only raytracer uses it. It can be moved higher later. 280 250 281 2nd March 2011 John Allison (raytracer-V09-04 251 2nd March 2011 John Allison (raytracer-V09-04-01) 282 - Fix bug introduced by fix to Coverity warnin 252 - Fix bug introduced by fix to Coverity warnings. 283 253 284 1st March 2011 John Allison (raytracer-V09-04 254 1st March 2011 John Allison (raytracer-V09-04-00) 285 - G4RayTracerViewer::DrawView: Trap recursive 255 - G4RayTracerViewer::DrawView: Trap recursive calls, thus avoiding 286 warning messages for each pixel when endOfEv 256 warning messages for each pixel when endOfEventAction is "refresh". 287 EndOfEventAction is not relevant for Ray Tra 257 EndOfEventAction is not relevant for Ray Tracer. At the present 288 time, Ray Tracer takes no notice of the scen 258 time, Ray Tracer takes no notice of the scene. Perhaps in future, 289 it will, but G4RayTracerViewer should still 259 it will, but G4RayTracerViewer should still ignore those recursive 290 calls. 260 calls. 291 - Fix Coverity warnings. 261 - Fix Coverity warnings. 292 262 293 23, December L. Garnier 263 23, December L. Garnier 294 - GNUmakefile : Remove OpenGL/Qt stuff from Ma 264 - GNUmakefile : Remove OpenGL/Qt stuff from Makefile 295 265 296 27th October 2010 Gabriele Cosmo (raytracer-V 266 27th October 2010 Gabriele Cosmo (raytracer-V09-03-04) 297 - Restored DLL setup as originally. Withdrawn 267 - Restored DLL setup as originally. Withdrawn changes in last tag. 298 268 299 19th October 2010 Gabriele Cosmo (raytracer-V 269 19th October 2010 Gabriele Cosmo (raytracer-V09-03-03) 300 - Replaced G4VIS_ALLOC_EXPORT flag with G4ALLO 270 - Replaced G4VIS_ALLOC_EXPORT flag with G4ALLOC_EXPORT for DLL exported 301 symbols. 271 symbols. 302 272 303 14th June 2010 Gabriele Cosmo (raytracer-V09 273 14th June 2010 Gabriele Cosmo (raytracer-V09-03-02) 304 - Added missing virtual destructor to G4VRTSca 274 - Added missing virtual destructor to G4VRTScanner, G4RTXScanner and 305 G4RTSimpleScanner. 275 G4RTSimpleScanner. 306 276 307 30th May 2010 John Allison (raytracer-V09-03 277 30th May 2010 John Allison (raytracer-V09-03-01) 308 - G4RayTracerSceneHandler: Added AddCompound(c 278 - G4RayTracerSceneHandler: Added AddCompound(const G4VDigi&). 309 279 310 29th May 2010 John Allison (raytracer-V09-03 280 29th May 2010 John Allison (raytracer-V09-03-00) 311 - G4RayTrajectory.hh: Added DrawTrajectory() r 281 - G4RayTrajectory.hh: Added DrawTrajectory() ready for i_mode migration. 312 282 313 15th November 2009 John Allison (raytracer-V 283 15th November 2009 John Allison (raytracer-V09-02-02) 314 - Formal tag to record fixing of bugzilla Prob 284 - Formal tag to record fixing of bugzilla Problem 1072. 315 o There is no change of source code. 285 o There is no change of source code. 316 o This was actullay fixed in raytracer-V09-0 286 o This was actullay fixed in raytracer-V09-02-00, which is already accepted. 317 287 318 21st October 2009 John Allison (raytracer-V0 288 21st October 2009 John Allison (raytracer-V09-02-01 coworks greps-V09-02-02) 319 - Added AddCompound (const G4THitsMap<G4double 289 - Added AddCompound (const G4THitsMap<G4double>&) methods. 320 o Prevents warnings about hiding - calls G4V 290 o Prevents warnings about hiding - calls G4VSceneHandler base class. 321 291 322 16 September 2009 John Allison (raytracer-V0 292 16 September 2009 John Allison (raytracer-V09-02-00) 323 - Cosmetic adjustments and tagging. 293 - Cosmetic adjustments and tagging. 324 294 325 19 August 2009 Laurent Garnier 295 19 August 2009 Laurent Garnier 326 - G4RayTracerViewer.cc, G4RayTracerXViewer.cc 296 - G4RayTracerViewer.cc, G4RayTracerXViewer.cc : Fix an bad use of fVP 327 parameters [bugzilla Problem 1072] 297 parameters [bugzilla Problem 1072] 328 298 329 18 August 2009 Laurent Garnier 299 18 August 2009 Laurent Garnier 330 - G4RayTracerXViewer, G4RTXScanner : Fix a cra 300 - G4RayTracerXViewer, G4RTXScanner : Fix a crash introduce by the 331 new way of handling window size hints (Janua 301 new way of handling window size hints (January 2009) 332 302 333 4th April 2008 John Allison (raytracer-V09-0 303 4th April 2008 John Allison (raytracer-V09-01-00) 334 - Fixed gcc-4.3.0 compiler warnings. 304 - Fixed gcc-4.3.0 compiler warnings. 335 305 336 14th June 2007 John Allison (raytracer-V08-0 306 14th June 2007 John Allison (raytracer-V08-03-01) 337 - Fixed memory leak in G4RayTracer (wrapper cl 307 - Fixed memory leak in G4RayTracer (wrapper class). 338 308 339 22nd May 2007 John Allison (raytracer-V08-03 309 22nd May 2007 John Allison (raytracer-V08-03-00) 340 - Fixed for dubious ValGrind diagnostic showin 310 - Fixed for dubious ValGrind diagnostic showing apparent memory leak in 341 G4RTSimpleScanner and G4RTXScanner. 311 G4RTSimpleScanner and G4RTXScanner. 342 312 343 5th January 2007 John Allison (raytracer-V08 313 5th January 2007 John Allison (raytracer-V08-02-00) 344 - Bug fix: use of window size hints. 314 - Bug fix: use of window size hints. 345 315 346 17th November 2006 Joseph Perl (raytracer-V0 316 17th November 2006 Joseph Perl (raytracer-V08-01-02) 347 - Deprecate /vis/rayTracer/backgroundColour. 317 - Deprecate /vis/rayTracer/backgroundColour. 348 - Hasn't worked for some time anyway. 318 - Hasn't worked for some time anyway. 349 - Users are instead referred to /vis/viewer/se 319 - Users are instead referred to /vis/viewer/set/background. 350 320 351 14th November 2006 John Allison (raytracer-V 321 14th November 2006 John Allison (raytracer-V08-01-01) 352 - Merged raytracer-V08-01-00-branch onto main 322 - Merged raytracer-V08-01-00-branch onto main branch. 353 323 354 11th November 2006 John Allison (raytracer-V 324 11th November 2006 John Allison (raytracer-V08-01-00-00) 355 - Followed change to G4Scene. 325 - Followed change to G4Scene. 356 326 357 14th August 2006 John Allison (raytracer-V08 327 14th August 2006 John Allison (raytracer-V08-01-00) 358 - G4RayTracerSceneHandler.cc: Added world to d 328 - G4RayTracerSceneHandler.cc: Added world to dummy scene to improve 359 robustness when under control of vis manager 329 robustness when under control of vis manager. 360 330 361 12th May 2006 John Allison (raytracer-V08-00 331 12th May 2006 John Allison (raytracer-V08-00-04) 362 - SetRecomputeTransients(false). 332 - SetRecomputeTransients(false). 363 333 364 10th May 2006 Makoto Asai (raytracer-V08-00-0 334 10th May 2006 Makoto Asai (raytracer-V08-00-03) 365 - Remove G4RayShooter class to Event category. 335 - Remove G4RayShooter class to Event category. 366 336 367 21st April 2006 John Allison (raytracer-V08- 337 21st April 2006 John Allison (raytracer-V08-00-02) 368 - Relies on improved protection for null model 338 - Relies on improved protection for null models and parameters. 369 339 370 26th January 2006 John Allison (raytracer-V0 340 26th January 2006 John Allison (raytracer-V08-00-01) 371 - G4RayTracerSceneHandler: Improved handling o 341 - G4RayTracerSceneHandler: Improved handling of dummy scene. 372 - G4TheRayTracer: Advance work for possible in 342 - G4TheRayTracer: Advance work for possible inclusion of 373 anti-aliasing. Currently no change of funct 343 anti-aliasing. Currently no change of functionality. 374 344 375 11th January 2006 John Allison (raytracer-V0 345 11th January 2006 John Allison (raytracer-V08-00-00) 376 - Reorganisation (needs visman-V08-00-02): 346 - Reorganisation (needs visman-V08-00-02): 377 o Allowed multiple ray tracers. 347 o Allowed multiple ray tracers. 378 o Separated out the original ray tracer into 348 o Separated out the original ray tracer into G4TheRayTracer, to be 379 used by viewers. 349 used by viewers. 380 o Made G4RTMessenger a smart singleton that 350 o Made G4RTMessenger a smart singleton that queries the vis manager 381 for tracers. 351 for tracers. 382 o Caused G4RayTracer to instantiate a defaul 352 o Caused G4RayTracer to instantiate a default ray tracer if the user 383 wants to use /vis/rayTracer commands witho 353 wants to use /vis/rayTracer commands without the benefit of the 384 vis system (scene handlers and viewers). 354 vis system (scene handlers and viewers). 385 355 386 4th December 2005 Makoto Asai (raytracer-V07- 356 4th December 2005 Makoto Asai (raytracer-V07-01-08) 387 - Correct initialization of G4RTTrackingAction 357 - Correct initialization of G4RTTrackingAction and G4RTSteppingAction 388 358 389 28th November 2005 Jane Tinslay (raytracer-V0 359 28th November 2005 Jane Tinslay (raytracer-V07-01-07) 390 - Remove names of unused parameters to stop co 360 - Remove names of unused parameters to stop compiler warnings 391 361 392 18th November 2005 John Allison (raytracer-V 362 18th November 2005 John Allison (raytracer-V07-01-06) 393 - Merged in raytracer-V07-01-04 - see below. 363 - Merged in raytracer-V07-01-04 - see below. 394 - Implemented window positioning. 364 - Implemented window positioning. 395 365 396 28th October 2005 Makoto Asai (raytracer-V07- 366 28th October 2005 Makoto Asai (raytracer-V07-01-05) 397 - Working tag for merging "envelope" into G4Re 367 - Working tag for merging "envelope" into G4Region. 398 - This tag does not contain raytracer-V07-01-0 368 - This tag does not contain raytracer-V07-01-04 tag that might be 399 already done by J. Allison but does not yet 369 already done by J. Allison but does not yet appear on this file. 400 370 401 13th October September 2005 John Allison (ray 371 13th October September 2005 John Allison (raytracer-V07-01-04) 402 (On branch raytracer-V07-01-01-branch; changes 372 (On branch raytracer-V07-01-01-branch; changes *not* merged into head - 403 need to cvs update -j raytracer-V07-01-02 -j r 373 need to cvs update -j raytracer-V07-01-02 -j raytracer-V07-01-01-branch.) 404 - Migrated to <sstream>. 374 - Migrated to <sstream>. 405 - Default background black - can be changed by 375 - Default background black - can be changed by /vis/viewer/set/background. 406 - GNUmakefile: Removed temporary CPPFLAGS += - 376 - GNUmakefile: Removed temporary CPPFLAGS += -DG4VIS_BUILD_RAYTRACERX_DRIVER. 407 377 408 30th September 2005 Joseph Perl (raytracer-V0 378 30th September 2005 Joseph Perl (raytracer-V07-01-03) 409 New tag to include change Makoto made an hour 379 New tag to include change Makoto made an hour after V07-01-02 was tagged. 410 Change seems to just involve passing pWorld to 380 Change seems to just involve passing pWorld to material list where no argument was passed in previous version. 411 381 412 16th September 2005 John Allison (raytracer-V 382 16th September 2005 John Allison (raytracer-V07-01-02) 413 (On branch raytracer-V07-01-01-branch; changes 383 (On branch raytracer-V07-01-01-branch; changes merged into head.) 414 - Bug fix (black holes): Made small epsilon pu 384 - Bug fix (black holes): Made small epsilon push into world to ensure inside. 415 385 416 20th July 2005 John Allison (raytracer-V07-01 386 20th July 2005 John Allison (raytracer-V07-01-01) 417 - Protected RayTracerX by G4VIS macro. 387 - Protected RayTracerX by G4VIS macro. 418 388 419 17th July 2005 John Allison (raytracer-V07-01 389 17th July 2005 John Allison (raytracer-V07-01-00) 420 - Introduced RayTracerX. RayTracerX opens an 390 - Introduced RayTracerX. RayTracerX opens an X window and builds up 421 the picture, refining it gradually. Already 391 the picture, refining it gradually. Already calculated pixels are 422 not recalculated, so it is as efficient as a 392 not recalculated, so it is as efficient as a top-to-bottom raster 423 scan. It produces a jpeg file as well, just 393 scan. It produces a jpeg file as well, just like RayTracer. 424 394 425 11th June 2004 Gabriele Cosmo (raytracer-V06 395 11th June 2004 Gabriele Cosmo (raytracer-V06-01-00) 426 - Use global flag G4VIS_ALLOC_EXPORT to export 396 - Use global flag G4VIS_ALLOC_EXPORT to export extern symbols for DLLs. 427 Modified GNUmakefile and rearranged usage of 397 Modified GNUmakefile and rearranged usage of extern symbols in classes. 428 398 429 12th November 2003 Mark Donszelmann 399 12th November 2003 Mark Donszelmann 430 - GNUmakefile: added Modeling/include director 400 - GNUmakefile: added Modeling/include directory to compile on Windows. 431 401 432 6th November 2003 John Allison (raytracer-V0 402 6th November 2003 John Allison (raytracer-V05-02-04, vis-V05-02-03) 433 - GNUmakefile: rationalised. 403 - GNUmakefile: rationalised. 434 404 435 4th October 2003 Gabriele Cosmo (raytracer-V 405 4th October 2003 Gabriele Cosmo (raytracer-V05-02-03) 436 - GNUmakefile: 406 - GNUmakefile: 437 o added dependency to new module "geometry/n 407 o added dependency to new module "geometry/navigation". 438 o replaced "digits+hits" with "digits_hits". 408 o replaced "digits+hits" with "digits_hits". 439 - Coworks with "geometry-V05-02-00" and "digit 409 - Coworks with "geometry-V05-02-00" and "digits_hits-V05-02-00". 440 410 441 25th September 2003 Hisaya Kurashige (raytra 411 25th September 2003 Hisaya Kurashige (raytracer-V05-02-02) 442 - Modify GNUmakefile to use processes/cuts cat 412 - Modify GNUmakefile to use processes/cuts category 443 413 444 18th September 2003 John Allison (raytracer- 414 18th September 2003 John Allison (raytracer-V05-02-01, greps-V05-02-00) 445 - Introduced G4VRTScanner and its default conc 415 - Introduced G4VRTScanner and its default concrete implementation, 446 G4RTSimpleScanner. It controls the shooting 416 G4RTSimpleScanner. It controls the shooting order of rays. 447 - Added new command /vis/rayTracer/backgroundC 417 - Added new command /vis/rayTracer/backgroundColour. 448 418 449 4th August 2003 Makoto Asai (raytracer-V05-0 419 4th August 2003 Makoto Asai (raytracer-V05-02-00) 450 - Migrate to the changes with "Cuts per region 420 - Migrate to the changes with "Cuts per region" 451 421 452 18th June 2003 Gabriele Cosmo (raytracer-V05 422 18th June 2003 Gabriele Cosmo (raytracer-V05-01-01) 453 - Removed usage of G4USE_STD_NAMESPACE in G4RT 423 - Removed usage of G4USE_STD_NAMESPACE in G4RTJpegMaker.cc, after 454 migration from G4std. 424 migration from G4std. 455 425 456 30th May 2003 Makoto Asai (raytracer-V05-01- 426 30th May 2003 Makoto Asai (raytracer-V05-01-00) 457 - Fix pedantic warning message. 427 - Fix pedantic warning message. 458 428 459 11th December 2002 John Allison (vis-V04-01- 429 11th December 2002 John Allison (vis-V04-01-10) 460 - Fix for SUN-CC warnings: AddThis hides the v 430 - Fix for SUN-CC warnings: AddThis hides the virtual function... 461 - Fix memory leak in RayTracer. 431 - Fix memory leak in RayTracer. 462 432 463 11th November 2002 Hajime Yoshida and Minamim 433 11th November 2002 Hajime Yoshida and Minamimoto (raytracer-V04-00-01) 464 - Corrected G4RayTracer.cc devide-by-zero. 434 - Corrected G4RayTracer.cc devide-by-zero. 465 435 466 16th October 2002 John Allison (raytracer-V0 436 16th October 2002 John Allison (raytracer-V04-00-00) 467 - Tag for changes in G4VTrajectory, etc. 437 - Tag for changes in G4VTrajectory, etc. 468 438 469 22nd April 2002 John Allison 439 22nd April 2002 John Allison 470 - Workaround for pseudo-parallel/orthogonal pr 440 - Workaround for pseudo-parallel/orthogonal projection in Ray Tracer. It is 471 perspective projection with *very* small fie 441 perspective projection with *very* small field angle (perMillion). 472 442 473 22nd Nov 2001 Gabriele Cosmo (raytracer-V03 443 22nd Nov 2001 Gabriele Cosmo (raytracer-V03-02-02) 474 - G4RTJpegMaker.cc: added check on ISO complia 444 - G4RTJpegMaker.cc: added check on ISO compliance for binary mode on 475 file streamsi, to allow compilation on non-I 445 file streamsi, to allow compilation on non-ISO compilers. 476 446 477 13th Nov 2001 Hajime Yoshida and Minamimoto 447 13th Nov 2001 Hajime Yoshida and Minamimoto (raytracer-V03-02-01) 478 - Updation of G4RTJpegMaker.cc for Windows pla 448 - Updation of G4RTJpegMaker.cc for Windows platform. 479 449 480 14th July 2001 John Allison (raytracer-V03-0 450 14th July 2001 John Allison (raytracer-V03-02-00) 481 - Changed some arguments in G4RayTracer.hh fro 451 - Changed some arguments in G4RayTracer.hh from G4ThreeVector to const 482 G4ThreeVector& to keep Sun compiler happy. 452 G4ThreeVector& to keep Sun compiler happy. 483 453 484 18th May 2001 John Allison (raytracer-V03-01 454 18th May 2001 John Allison (raytracer-V03-01-00) 485 - Removed unnecessary virtual inheritance of G 455 - Removed unnecessary virtual inheritance of G4VViewer in G4RayTracerViewer. 486 456 487 2nd May 2000 John Allison 457 2nd May 2000 John Allison 488 - G4RayTracer: set out-of-world ray to black. 458 - G4RayTracer: set out-of-world ray to black. 489 - G4RayTracerViewer: corrected trapping of ort 459 - G4RayTracerViewer: corrected trapping of orthogonal projection. 490 460 491 10th March 2000 Makoto Asai 461 10th March 2000 Makoto Asai 492 - Added some comments for copyright notice and 462 - Added some comments for copyright notice and for the software reference manual. 493 463 494 24th February 2000 John Allison 464 24th February 2000 John Allison 495 - Added protection for null viewer in G4RTStep 465 - Added protection for null viewer in G4RTSteppingAction.cc and 496 G4RayTrajectory.cc. 466 G4RayTrajectory.cc. 497 - Corrected for zoom, etc., in G4RayTracerView 467 - Corrected for zoom, etc., in G4RayTracerViewer.cc. 498 468 499 23rd February 2000 John Allison 469 23rd February 2000 John Allison 500 - Added G4RayTracerSceneHandler and Viewer. 470 - Added G4RayTracerSceneHandler and Viewer. 501 - Some modifications to other RayTracer routin 471 - Some modifications to other RayTracer routines for vis compliance. 502 - (Note: headAngle still not right - ray trace 472 - (Note: headAngle still not right - ray traced views are sometimes tipped.) 503 473 504 22nd February 2000 John Allison (raytracer-V0 474 22nd February 2000 John Allison (raytracer-V01-00-01a) 505 - Added G4std:: in a few places to obtain ISO 475 - Added G4std:: in a few places to obtain ISO compliance. 506 - Change "char*" to "const char*" in G4OutBitS 476 - Change "char*" to "const char*" in G4OutBitStream::CopyByte(...). 507 477 508 22nd February 2000 Makoto Asai (raytracer-V01 478 22nd February 2000 Makoto Asai (raytracer-V01-00-01) 509 - Change "char*" to "const char*" 479 - Change "char*" to "const char*" 510 - use g4std/fstream 480 - use g4std/fstream 511 481 512 17th February 2000 Makoto Asai (raytracer-V01 482 17th February 2000 Makoto Asai (raytracer-V01-00-00) 513 - Primary tag of sub-category 483 - Primary tag of sub-category 514 484 515 29th January 2000 Makoto Asai 485 29th January 2000 Makoto Asai 516 - Introduction of G4RayTracer (visualization/R 486 - Introduction of G4RayTracer (visualization/RayTracer/...) 517 - Migration of G4RayTracer 487 - Migration of G4RayTracer 518 affected files : 488 affected files : 519 visualization/GNUmakefile 489 visualization/GNUmakefile 520 visualization/management/include/MyVisMana 490 visualization/management/include/MyVisManager.cc 521 visualization/management/src/G4VisManager. 491 visualization/management/src/G4VisManager.cc 522 affected files in other directory : 492 affected files in other directory : 523 config/G4VIS_BUILD.gmk 493 config/G4VIS_BUILD.gmk 524 config/G4VIS_USE.gmk 494 config/G4VIS_USE.gmk 525 495