-
Notifications
You must be signed in to change notification settings - Fork 328
/
Copy pathReleaseNotes4.10.6.html
2461 lines (2377 loc) · 121 KB
/
ReleaseNotes4.10.6.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<HTML>
<HEAD>
<TITLE>Geant4 10.6 Release Notes</TITLE>
</HEAD>
<BODY BGCOLOR='F0F0F0'>
<P> </P>
<BR>
<P> </P>
<P ALIGN="Center">
<FONT SIZE="+4" COLOR="#238E23">
<B>Geant4 10.6 Release Notes</B>
</FONT>
<TABLE WIDTH="100%">
<TR><TD ALIGN="Right">
<FONT SIZE="-1" COLOR="#5C3317">
<B><I>December 6<SUP>th</SUP>, 2019</I></B>
</FONT>
</TD></TR>
</TABLE>
<BR><BR>
<HR ALIGN="Center" SIZE="7%">
<P>
The code and binary libraries for the supported systems are available
through our <A TARGET="ext" HREF="http://cern.ch/geant4/support/download">Source
Code Web page</A>.
</P>
<P>
<I>We are grateful for the efforts of Geant4 users who have provided
detailed feedback or comprehensive reports of issues.
We thank in particular those who have contributed corrections,
improvements or developments included in this release. </I>
</P>
<P>
Please refer to the
<A TARGET="ext" HREF="http://cern.ch/geant4/support/user_documentation">Geant4
User Documentation</A> for further information about using Geant4.
</P>
<H2><I>Contents</I></H2>
<OL>
<LI><A HREF="#1.">Supported and Tested Platforms</A></LI>
<LI><A HREF="#2.">Supported CLHEP and VecGeom versions</A></LI>
<LI><A HREF="#3.">Items for migration of the user code</A></LI>
<LI><A HREF="#4.">New Developments and Capabilities</A></LI>
<LI><A HREF="#5.">Expected effects on physics and performance</A></LI>
<LI><A HREF="#6.">Known Run-Time Problems and Limitations</A></LI>
<LI><A HREF="#7.">Compilation Warnings</A></LI>
<LI><A HREF="#8.">Geant4 Software License</A></LI>
<LI><A HREF="#9.">Detailed list of changes and fixes</A></LI>
</OL>
<P> </P>
<A NAME="1."></a>
<HR>
<!-- ============================================== -->
<H2>1. Supported and Tested Platforms</H2>
Platforms:
<UL>
<LI>Linux, gcc-4.9.3.<BR>
Tested on 64 bit architectures (Intel or AMD) with
CERN CentOS Linux 7 (CC7) (based on CentOS Linux 7).</LI>
<LI>MacOSX 10.15 Catalina with llvm/clang-8.0 (Apple LLVM/Clang-11.0)</LI>
<LI>Windows-10 with Visual C++ 14.23 (Visual Studio 2019)</LI>
</UL>
More verified and tested configurations (64 bits):
<UL>
<LI>Linux, gcc-5.4.0/6.3.0/7.3.0/8.2.0/9.2.0, clang-5.0/8.0</LI>
<LI>Linux, Intel-icc 19.0</LI>
<LI>MacOSX 10.13, 14 with clang-7.0</LI>
</UL>
<P> </P>
<A NAME="2."></A>
<HR>
<!-- ============================================== -->
<H2>2. Supported CLHEP and VecGeom version</H2>
This release of Geant4 requires and has been verified with
<A TARGET="ext" HREF="http://cern.ch/clhep/">CLHEP</A>, release <B>2.4.1.3</B>.
Use of a different CLHEP version may cause incorrect simulation results.<BR>
NOTE: an internal module of the relevant CLHEP classes is provided and can be
used as alternative to an external CLHEP library installation.<BR>
A configuration option allows a Geant4 installation to use the
<A HREF="https://gitlab.cern.ch/VecGeom/VecGeom/">VecGeom Library</A>
primitives, to replace the original Geant4 solids. VecGeom version
<B>1.1.5</B> is required when using such configuration.
<P> </P>
<A NAME="3."></A>
<HR>
<!-- ============================================== -->
<H2>3. Items for migration of the user code</H2>
Listed here is some relevant information on developments included in this
release.
Note that for all users a full re-installation of libraries (or a full
re-compilation) and a re-compilation of user applications is required.
<P> </P>
<B>General</B>
<P> </P>
<UL>
<LI>Minimum required version of CMake to build Geant4 is 3.8.</LI>
<LI>Pre-processor flags are promoted to fixed <TT>#define</TT> statements in
a generated header. User code relying on these macros should
include the <TT>G4Types.hh</TT> header to make them available.</LI>
<LI>The preprocessor macros G4UI_USE and G4VIS_USE are removed.</LI>
<LI>The Debug build mode no longer enables Floating Point Exceptions.
Please use the new Debug_FPE build mode if your application requires FPE.</LI>
<LI>Support for Qt4 UI/Vis is deprecated.</LI>
</UL>
<P> </P>
<B>Analysis</B>
<P> </P>
<UL>
<LI>The last two optional arguments of the analysis manager function
<TT>SetNtupleMerging()</TT> have been removed and these parameters
can be changed only via the dedicated functions:
<TT>SetNtupleRowWise()</TT>, <TT>SetBasketSize()</TT> and
<TT>SetBasketEntries()</TT>.</LI>
</UL>
<P> </P>
<B>Geometry, Fields and Transportation</B>
<P> </P>
<UL>
<LI>The default integration method for propagation in magnetic fields is
changed, to select between the new interpolation-capable integration
scheme, for shorter steps, and a helix-based scheme which is chosen for
steps larger than <TT>2*pi</TT> times the curvature radius at the initial
location.</LI>
<LI>Once integration in field require more than a threshold (default 200)
integration substeps within a single physical step, there is a relaxation
of the criteria which breaks the curved trajectory into linear segments
for intersecting with the setup's geometry.
This criteria is governed by the parameter <I>delta chord</I>.
Once the threshold is reached, its value is temporarily doubled.
So subsequent integration substeps are made so that a chord's sagitta is
now less than twice the <I>delta chord</I>.
<UL>
<LI>Every time the number of iterations reaches a new multiple of 100 (the
increase value), the maximum sagitta distance (delta chord) is again
temporarily doubled for the rest of this tracking step.</LI>
<LI>This affects only particles below the 'important' energy threshold when
using G4Transportation only, (currently not G4CoupledTransporation)
which would otherwise be abandoned after a set maximum number of
substeps (default=<TT>1000</TT>).</LI>
<LI>To control the previous behaviour, use the G4PropagatorInField's method
<TT>SetIterationsToIncreaseChordDistance()</TT> to set the number of
iterations between increase; note that the initial threshold is twice
this value. To restore previous behaviour set it to <TT>500</TT>.</LI>
<LI>In a multi-threaded application, each thread must change this threshold,
e.g. by calling this method in your G4UserRunAction's
<TT>BeginOfRunAction()</TT>.</LI>
<LI>This does not occur if the alternative transportation process
G4CoupledTransportation is used, i.e. when one or more parallel
geometries are created for scoring, event biasing, parallel mass
geometry or other use(s).</LI>
</UL></LI>
<LI>An application which uses an external gravitational field must enable the
use of gravity by calling G4Transportation's static method
<TT>EnableGravity()</TT>. This change was introduced in order to call
the <TT>ConfigureForTrack()</TT> method of G4FieldManager only for
charged particles by default. Example <I>field06</I> in
<TT>examples/extended/field</TT> illustrates this.</LI>
</UL>
<P> </P>
<B>Electromagnetic and optical physics</B>
<P> </P>
<UL>
<LI>The new data sets <TT>G4EMLOW-7.9</TT> should be used.</LI>
</UL>
<P> </P>
<B>Hadronic physics</B>
<P> </P>
<UL>
<LI>The new data sets <TT>G4PhotonEvaporation-5.5</TT>,
<TT>G4RadioactiveDecay-5.4</TT>, <TT>G4PARTICLEXS-2.1</TT> and
<TT>G4NDL-4.6</TT> should be used.</LI>
</UL>
<P> </P>
<B>Data Sets</B>
<P> </P>
<UL>
<LI>This release introduces new data set versions.
Please see the corresponding details in
<A href="#data-notes">Section 9</A> of this document.
<UL>
<LI>New data set versions: <TT>G4EMLOW-7.9, G4RadioactiveDecay-5.4,
G4PhotonEvaporation-5.5, G4PARTICLEXS-2.1, G4NDL-4.6</TT>.</LI>
<LI>In order to use <TT>ParticleHP</TT> for charged particles
(protons, deuterons, tritons, He3 and alphas), an optional data
set <TT>G4TENDL-1.3.2</TT> is required, and should be downloaded in
addition from the
<A HREF="http://cern.ch/geant4/support/download">Geant4 web site</A>.</LI>
</UL></LI>
</UL>
<A NAME="4."></A>
<HR>
<!-- ============================================== -->
<H2>4. New Developments and Capabilities </H2>
<B>General</B>
<UL>
<LI>Reviewed G4PhysicsVector adding an additional Value() method option to
propagate down the known log-energy value. This helps avoiding log() calls
when log-vector is used.</LI>
<LI>Added functionality in G4DynamicParticle to provide log-kinetic energy
value, computed only on demand if its stored value is not up-to-date with
the kinetic energy. Reviewed EM processes to select the target atom by
making use of the already known log-energy value in the log-vector access.
Providing measurable CPU speedup.</LI>
<LI>Enhanced UI commands to now return proper return code when they are not
successful.</LI>
<LI>Introduced ability to perform leading particle biasing.</LI>
</UL>
<B>Analysis</B>
<UL>
<LI>Added a new factory function <TT>ManagerInstance()</TT> in G4Analysis,
which allows to create the analysis manager of the type selected via a
string argument and so to choose the output type at run time.</LI>
<LI>Switched the default Root n-tuple merge mode to new column-wise mode
with preserving rows and added a second, optional, argument in the
<TT>SetNtupleRowWise()</TT> function which can be used to override the
defaults.</LI>
</UL>
<B>Digitization & Hits</B>
<UL>
<LI>Added G4TScoreNtupleWriter and G4TScoreNtupleWriterMessenger which
implement storing hits collections of G4THitsMap type vith Geant4 analysis
tools, defined in G4VcoreNtupleWriter. Its usage is demonstrated in basic
examples B3 and B4d.</LI>
</UL>
<B>Geometry and Field</B>
<UL>
<LI>Enabled VecGeom wrapper for G4GenericPolycone, G4EllipticalTube,
G4EllipticalCone and G4Ellipsoid. Requiring VecGeom version 1.1.5.</LI>
<LI>Added support for writing out assemblies envelopes in GDML.</LI>
<LI>Added hooks for capability to navigate in <I>external</I> geometry with
custom navigation.</LI>
<LI>Completed the development of integration driver with 'interpolation'
capability.
It estimates the position, momentum (and potentially other state,
e.g. polarisation) at intermediate values of the integration interval.
During the integration, one or more intervals are used to move the track's
state. For each interval a different instance of the stepper is used.
Subsequent calls for intermediate points (e.g. to locate the intersection
of the curved trajectory with a boundary) use the interpolation capability
using the existing data (stored in the earlier stepping), instead of
re-integration which involves re-evaluating the field and equation of
motion. Note: currently this can be used only with G4DormandPrince745
Runge Kutta integration method.</LI>
<LI>Completed new multiplexing integration driver G4BFieldIntegrationDriver
for magnetic fields, that enables mixing between two methods (drivers)
based on the ratio of the proposed step length and the step curvature at
the track's initial position.
One method is selected for shorter steps, and a different method for steps
longer than <TT>2*pi</TT> (estimation for uniform field). The default driver
created in G4ChordFinder's constructor and G4FieldManager's
<TT>CreateChordFinder()</TT> now creates it; it uses the interpolation
driver with the Dormand Prince 5/4th order Runge-Kutta method for short
steps, and for longer steps it uses the G4HelixHeum method which can
integrate over a large number of helical turns in a sufficiently slowly
varying field.
Enabled by default stepping using interpolation in field propagation.</LI>
</UL>
<B>Materials</B>
<UL>
<LI>Added G4DensityEffectCalculator: new class, providing on fly computation
of the density effect correction using "exact" formulas.</LI>
<LI>Added ICRU90 data for ion ionisation.</LI>
</UL>
<B>Electromagnetic physics</B>
<UL>
<LI>Optimised step limitation in G4UrbanMscModel and modified lateral
displacement sampling.</LI>
<LI>New helper class G4NIELCalculator, to compute NIEL in user stepping
action or sensitive detector code.</LI>
<LI>Added handling of UI thermalization model control in DNA physics lists.</LI>
</UL>
<B>Hadronic physics</B>
<UL>
<LI>Use Glauber-Gribov cross-sections for hyperons and anti-hyperons for
both elastic and inelastic hadron-nucleus interactions.</LI>
<LI>Extended hadron-nucleon cross-sections to charmed and bottom hadrons
(mesons and baryons). Note: these cross-sections are meant to be used
by Glauber-Gribov charmed and bottom hadron nuclear cross-sections, as
well as by the FTF string model for dealing with charmed and bottom
projectiles; however, the inelastic interactions of charmed and bottom
projectiles are not yet included in reference physics lists.</LI>
<LI>Removed tracking cut in hadron-elastic and use numerically safer
computation for very low-energy projectile.</LI>
<LI>Use FTFP also for the annihilation at rest of neutral anti-hadrons.</LI>
<LI>Added new gamma-nuclear model based on pre-compound de-excitation.</LI>
<LI>Added spontaneous fission channel in radioactive-decay.</LI>
<LI>High energy extension of the neutrino-electron cross sections,
for both charged-current and neutral-current interactions
(M_W and M_Z propagator factors and Glashow resonance), for all neutrino
and anti-neutrino flavours.</LI>
</UL>
<B>Physics Lists</B>
<UL>
<LI>Changed transition region between hadronic string and intra-nuclear cascade
models: now it is <TT>[3, 6] GeV</TT> consistently for all particle types
(nucleons, pions, kaons, hyperons, ions and gammas; for anti-baryons,
instead, FTFP is still used for all energies). Note: this does not affect
the physics lists FTFP_BERT_ATL, NuBeam, ShieldingM, and those based on
INCLXX. Moreover, for the QGS-based physics lists, the transition between
FTFP and QGSP remains unchanged in the region <TT>[12, 25] GeV</TT>.</LI>
<LI>Added (consistently) RadioactiveDecay to all physics lists which use
NeutronHP. Note: this affects the physics lists FTFP_BERT_HP, QGSP_BERT_HP,
FTFP_INCLXX_HP and QGSP_INCLXX_HP, whereas Shielding, LBE, QGSP_BIC_HP and
QGSP_BIC_AllHP had it already.</LI>
<LI>A new stopping physics constructor (G4StoppingPhysicsFritiofWithBinaryCascade)
has been introduced, which uses Fritiof (FTF) coupled with Binary cascade
(BIC) for the anti-baryon annihilation at rest. It is used only in the
physics lists FTF_BIC and QGS_BIC.</LI>
</UL>
<B>Visualization and Interfaces</B>
<UL>
<LI>New set of UI commands and improvements in visualization.
Added new UI commands for view interpolation and centering.</LI>
<LI>Introducing cloud drawing style in visualization, using kernel algorithms
for generating points on the surface of volumes, by-passing polyhedral
representations; the solid is being visualised by a polymarker of dots.</LI>
</UL>
<B>Examples</B>
<UL>
<LI><I>GB07</I>: new example (in extended/biasing) to demonstrate the usage
of the leading particle biasing functionality, introduced in the generic
biasing package.</LI>
<LI><I>Hadr08</I>: new example (in extended/hadronic) to demonstrate the
possibility of emulating hadronic-model-per-region capability
(not foreseen by the hadronic framework) via the use of generic biasing
with usual, unbiased weights of 1.0.</LI>
<LI>Extended GFlash examples set by moving existing <I>gflash</I> example to
<I>gflash1</I> and added: <I>gflash2</I> with envelope in parallel world;
<I>gflash3</I> with SD in parallel world; <I>gflasha</I> with histogramming
of shower profiles.</LI>
<LI><I>dnadamage1</I>: DNA simulation of damage on a chromatin fiber.</LI>
<LI><I>microprox</I>: DNA computation of proximity functions in liquid water.</LI>
</UL>
<A NAME="5."></A>
<HR>
<!-- ============================================== -->
<H2>5. Expected effects on physics and computing performance</H2>
<B>Electromagnetic physics</B>
<UL>
<LI>Expected unchanged response for calorimeter simulations.</LI>
<LI>General speedup of electro-magnetic physics by 4-8% depending on the
software platform. Additional speedup if the <I>general gamma process</I>
mode is enabled (disabled by default).</LI>
</UL>
<B>Hadronic physics</B>
<UL>
<LI>Increased energy response and more compact hadronic showers mostly in the
projectile energy range between 5 and 20 GeV, mainly due to the change
in transition energy between FTFP and BERT.</LI>
</UL>
<P> </P>
<A NAME="6."></A>
<HR>
<!-- ============================================== -->
<H2>6. Known Run-Time Problems and Limitations</H2>
For a complete list of outstanding run-time problems and to submit any
problem you may find while running this version of Geant4, please refer
to the
<A TARGET="ext" HREF="http://cern.ch/geant4/problemreport">Geant4 Problem
Reporting System</A>.
<P> </P>
<A NAME="7."></A>
<HR>
<!-- ============================================== -->
<H2>7. Compilation Warnings</H2>
There may be a few compilation warnings on some platforms, particularly
on Windows with Visual Studio, where warnings level has been raised when
building examples.
We do not believe that any of these lead to incorrect run-time behaviour.
<P> </P>
<A NAME="8."></A>
<HR>
<!-- ============================================== -->
<H2>8. Geant4 Software License</H2>
A Software License applies to the Geant4 code.
Users must accept this license in order to use it. The details and the list of
copyright holders is available at
<A href="http://cern.ch/geant4/license">http://cern.ch/geant4/license</A>
and also in the text file <TT>LICENSE</TT> distributed with the source code.
<P> </P>
<A NAME="9."></A>
<HR>
<!-- ============================================== -->
<H2>9. Detailed list of changes and fixes</H2>
These are the main new features/fixes included in this release since the
last patched public release (for more detailed lists of fixes/additions,
please refer to the corresponding History files provided in most packages):
<P> </P>
<A NAME="conf-notes">
<H3><I>Configuration</I></H3></A>
<UL>
<LI><U>CMake</U>
<UL>
<LI>Set minimum required CMake version to 3.8 to fully support C++17
on all systems. Addressing problem report
<A HREF="http://bugzilla-geant4.kek.jp/show_bug.cgi?id=2044">#2044</A>.</LI>
<LI>Updated Intel settings to support use of C++17 with Intel 19 when
using CMake-3.8-3.10. Versions from 3.11 fully support Intel 19/C++17.</LI>
<LI>Removed obsolete GEANT4_BUILD_MUONIC_ATOMS_IN_USE option
and associated configuration/compiler flags.</LI>
<LI>Promoting following pre-processor flags to fixed #defines in a new
header generated by CMake using the chosen build options to
<TT>#define/#undef</TT> as appropriate: G4USE_STD11, G4MULTITHREADED,
G4_STORE_TRAJECTORY, G4VERBOSE, GEANT4_USE_TIMEMORY.
Promoted VecGeom pre-processor flags to fixed <TT>#defines</TT> as well.
Ensuring the header is included by primary "global" category headers
so that all categories will pick up the changes transparently.
Removed use of add_definitions of CMAKE_CXX_FLAGS to set these flags
in Geant4 and client scripts.</LI>
<LI>Removed G4FPE_DEBUG from build mode "Debug". Added new build mode
"Debug_FPE" same as "Debug" mode but appending -DG4FPE_DEBUG.</LI>
<LI>Set OpenGL_GL_PREFERENCE to LEGACY, to prevent warning on
CMake >= 3.10, and keeping existing behaviour.</LI>
<LI>Only scope location of test executable when using a generator that
supports multi-config; allows tests to be run with Ninja Generator as
"ninja test".</LI>
<LI>Do not switch off CMAKE_CXX_EXTENSIONS in Geant4Config; not required
for client applications. Addresses problem report
<A HREF="http://bugzilla-geant4.kek.jp/show_bug.cgi?id=2002">#2002</A>.</LI>
<LI>Using target_XXX usage requirements to transport header paths and links.
Removed requirement to use complete include_directories chain in Module
sources.cmake files. Retain exported "Geant4_INCLUDE_DIR{S}" variables
in case clients use Root dictionary generation (which does not
understand usage requirements of targets until latest versions).
Removed remaining -D flags set via add_definitions, moving to
target_compile_definitions.</LI>
<LI>Namespace exported targets with "Geant4::" to enforce use of targets
and prevent accidental linkage via <TT>-lG4name</TT> expansion.</LI>
<LI>Migrate use of all external packages to use and refind exported targets,
with shim scripts to support CMake versions from 3.8 at build/use time.</LI>
<LI>Store build-time locations of used external packages in an optionally
installable CMake script for reuse, if present, by Geant4Config.cmake
in refinding packages.</LI>
<LI>Require MSVC 19.20 (Visual Studio 2019) or newer as minimum required
version to build Geant4 on Windows. Needed to support use full C++17
Standard. Default C++ Standard with MSVC is now C++17.</LI>
<LI>Removed old genwindef method of generating DLL symbol exports, as
minimum cmake version of 3.8 fully supports direct generation via
target properties.</LI>
<LI>Removed GEANT4_FORCE_QT4 option, deprecating Qt4 support. Retain
fallback to finding Qt4, emitting a CMake warning that use of Qt4 is
deprecated.</LI>
<LI>Disabled configuration for Wt UI/Vis driver, as no longer supported.</LI>
<LI>Updated scripts to support the TiMemory find_package COMPONENTS and
the INTERFACE library generation.</LI>
<LI>Fixed logic of setting up components in Geant4Config.cmake.
Addresses problem report
<A HREF="http://bugzilla-geant4.kek.jp/show_bug.cgi?id=2139">#2139</A>.</LI>
<LI>Fixed issue for path with spaces, reported in Users Forum #451.</LI>
<LI>Added ELLIPSOID, ELLIPTICALCONE and ELLIPTICALTUBE flags to enable
wrapping of G4Ellipsoid, G4EllipticalCone and G4EllipticalTube with
correspondent VecGeom primitives.</LI>
<LI>Updated data-sets versions.</LI>
</UL></LI>
<LI><U>GNUMake</U>
<UL>
<LI>Hard-code Qt version through QT_VERSION flag.
Corrected Qt5 setup for Linux-g++ and Linux-clang.</LI>
<LI>architecture.gmk: added -DG4GMAKE to CPPFLAGS to identify enabling
of GNUmake builds.</LI>
<LI>Fixed default paths for Linux architectures.</LI>
<LI>geomconf.gmk: added VecGeom wrappers flags for G4EllipticalTube,
G4EllipticalCone and G4Ellipsoid.</LI>
<LI>Fixed compilation warning on gcc-9.2 for liblist.c.</LI>
<LI>Added new analysis/factory subdirectory in includes in binmake.gmk;
removed analysis/parameters which does not exist anymore.</LI>
<LI>Corrected default path for XM in Darwin targets.</LI>
<LI>Force use of C++17 in WIN32 targets.</LI>
<LI>interactivity.gmk: added -DQT_NO_DEPRECATED_WARNINGS to Qt compilation
settings, to silence warnings from Qt for use of deprecated features.</LI>
</UL></LI>
</UL>
<A NAME="ana-notes">
<H3><I>Analysis</I></H3></A>
<UL><LI><U>Ntuples</U>
<UL>
<LI>Fixed CSV, XML ntuple file names.</LI>
<LI>Added methods for setting ntuple merge mode in G4VAnalysisManager
with a default implementation (issuing a warning if merging is not
available).</LI>
<LI>Added fRowWise data member in G4RootNtupleManager to make the
parameter available in MPI.</LI>
</UL></LI>
<LI><U>Analysis management & plotting</U>
<UL>
<LI>Enhanced the G4VAnalysisManager interface: added new option for
ntuple merging and updated/added functions for merging:
SetNtupleMerging() - removed rowWise and basketSize optional paremeters;
SetNtupleRowWise() - added parameter 'rowMode' with a default value;
SetBasketSize(), SetBasketEntries() - new methods.
Added functions and UI commands for setting axis log scale for
plotting: <TT>Set[H,P][1,2,3][X,Y.Z]AxisIsLog()</TT> and analogous getters
New UI commands <TT>/analysis/[h,p][1,2,3]/set[X,Y,Z]axisLog true|false</TT>.</LI>
<LI>Added new factory function ManagerInstance() in G4Analysis, which allows
to create the analysis manager of the type selected via a string
argument.</LI>
<LI>Added new analysis sub-category "factory".</LI>
<LI>Cleaned-up analysis type definitions: G4Hn*, G4Pn* types moved out
of type specific namespace.</LI>
<LI>In G4PlotManager: disabled Paw encoding; this fixes a problem with
unwanted axis labels in Greek.</LI>
<LI>Fixed cases of implicit type conversions from size_t to G4int.</LI>
<LI>Link directly to FreeType and HDF5 imported targets.</LI>
</UL></LI>
<LI><U>g4tools</U>
<UL>
<LI>Updated the g4tools version to g4tools-5.0.5.
<UL>
<LI>Handle axis label in case of freetype font.</LI>
<LI>Root format: restore a "per event/row view" for the ntuple
column-wise in MT and MPI.</LI>
<LI>Batch plotting: fixes to avoid labels overlap when having a grid
of plotters.</LI>
<LI>MPI: fixed a memory leak.</LI>
<LI>Fix for axis labels with log scale.</LI>
<LI>Scene graph: have material for interactive plotting.</LI>
<LI>Include modifications coming from other usage of inlib/exlib,
for example, in Root, to be able to read TClonesArray.</LI>
<LI>Fixed compilation warning from gl2ps showing up on gcc-9.2.</LI>
<LI>sg/plotter: added functions set_encoding() and set_encoding_none()
which allow to disable (unwanted) Paw specific encoding.</LI>
<LI>Fixed memory leak in mpi_create_basket().</LI>
<LI>Fixed Coverity warnings.</LI>
<LI>See History_tools for the complete list of modifications.</LI>
</UL></LI>
</UL></LI>
</UL>
<A NAME="digits-notes">
<H3><I>Digitization & Hits</I></H3></A>
<UL>
<LI>Introducing G4ScoringRealWorld, allowing to define command-based scorers
to a logical volume in the mass world.</LI>
<LI>Revised G4ScoringQuantiryMessenger and G4ScoringMessenger to better handle
the error cases.</LI>
<LI>Added "ntuple" subdirectory for score ntuple writer UI commands.</LI>
<LI>Added G4TScoreNtupleWriter and G4TScoreNtupleWriterMessenger
which implements storing hits collections of G4THitsMap type vith
Geant4 analysis tools, define them in G4VcoreNtupleWriter.
The dependency on the analysis category is avoided via template.</LI>
<LI>Fixed implicit type conversions from size_t to G4int in digits and hits
classes (collections, vectors, maps).</LI>
<LI>Pass G4String by const reference in G4SDStructure and digits/hist
collections base classes.</LI>
<LI>G4PSSphereSurfaceFlux: fixed track weight.</LI>
</UL>
<A NAME="emstd-notes">
<H3><I>Electromagnetic Processes</I></H3></A>
<UL>
<LI><B>DNA</B>:
<UL>
<LI>Added G4DNAMolecule class.</LI>
<LI>Added Kreipl and Meesungnoen amorphous ice models.</LI>
<LI>Added new model G4DNAELSEPAElasticModel.</LI>
<LI>Updated G4DNAWaterDissociationDisplacer* classes.</LI>
<LI>Moved checking of position of track status in
G4ITStepProcessor::SetInitialStep().</LI>
<LI>Chemistry: clarified pointer ownership in G4DNAChemistryManager.</LI>
<LI>Fixed reaction site issue.</LI>
<LI>Fixed case of division by zero of diffusionCoefficient in
<TT>G4DNABrownianTransportation::AlongStepGetPhysicalInteractionLength()</TT>
for the case of static molecules.</LI>
<LI>Enabled G4ItNavigator{1,2} to flag if it encounters new type of
external physical volume (meant for adapting external navigators).</LI>
<LI>Fixed cases of implicit type conversions from size_t to G4int.</LI>
<LI>Fixed compilation warnings on gcc-9.1. Code cleanup.</LI>
</UL></LI>
<LI><B>High Energy</B>
<UL>
<LI>G4GammaConversionToMuons, G4AnnihiToMuPair: added
registration/de-registration mechanism.</LI>
<LI>G4GammaConversionToMuons: added initialisation and optional possibility
to use 5D model for the sampling of the final state.</LI>
<LI>G4mplIonisationWithDeltaModel, G4mplIonisationModel: fixed dEdx for
electron gas model (beta<0.01). Addressing problem report
<A HREF="http://bugzilla-geant4.kek.jp/show_bug.cgi?id=2169">#2169</A>.</LI>
</UL></LI>
<LI><B>Low Energy</B>
<UL>
<LI>G4LivermorePhotoElectricModel: use std::getenv; slightly speed-up.</LI>
<LI>G4IonParametrisedLossModel: use std::getenv; allowed ICRU90 option.</LI>
<LI>Use <TT>std::getenv()</TT> for thread safety.</LI>
</UL></LI>
<LI><B>Muons</B>
<UL>
<LI>G4TablesForExtrapolator: create G4LossTableBuilder and destruct at
end of run.</LI>
</UL></LI>
<LI><B>Standard</B>
<UL>
<LI>In most models, make use of the new target atom selector that can
reuse the already known log-energy value.</LI>
<LI>G4UrbanMscModel, G4WentzelVIModel, G4GoudsmitSaundersonMscModel:
make use of the new base class methods in utils module, utilising
the already known log-energy value, in case of dEdx, range and
transport mean free path log-vector table accesses.</LI>
<LI>G4UrbanMscModel: optimised step limitation for 'UseSafetyPlus'
and 'UseDistanceToBoundary'. Minor clean-up of step limit method.
Modified lateral displacement sampling.</LI>
<LI>G4ScreeningMottCrossSection, G4KleinNishinaModel, G4SeltzerBergerModel,
G4eSingleCoulombScatteringModel: use element->GetZasInt() interface
in order to reduce number of double->int conversions at run time.</LI>
<LI>G4BetheHeitler5DModel: set x,y components in BoostG4LorentzVector
function. Replaced local boost and rotation functions with CLHEP
boost, boostZ, transform. One random generator flatArray() call in
sampling loop. New parameters set for muon (30% speed up), nuclear
threshold calculation. Added gamma conversion to mu+ mu- mode.</LI>
<LI>G4eCoulombScatteringModel, G4WentzelOKandVIxSection: cleanup debug
cout and initialisation.</LI>
<LI>G4UrbanMscModel, G4GoudsmitSaundersonMscModel, G4WentzelVIModel: use
<TT>lambdalimit</TT> and <TT>facsafety</TT> parameters from the base
class G4VMscModel.</LI>
<LI>G4SeltzerBergerModel: during initialisation data files upload only data
for elements used in geometry, lazy initialisation of the data is also
available for testing.</LI>
<LI>G4SeltzerBergerModel, G4ICRU49NuclearStoppingModel: safer
initialisation in MT mode.</LI>
<LI>G4ScreeningMottCrossSection, G4eSingleCoulombScatteringModel: optimized
code and data structure; fixed floating point exception for low energy;
use C++11 patterns.</LI>
<LI>G4hCoulombScatteringModel, G4hCoulombScatteringModel: removed unused
headers.</LI>
<LI>G4PairProductionRelModel, G4GammaConversion: the high energy model for
e-/e+ pair production has been extended down to threshold (<TT>2mc^2</TT>)
such that it gives results (both cross-section and final state) identical
to those produced by the low energy (G4BetheHeitlerModel). Since this new
version of the high energy model can describe e-/e+ pair production from
threshold up to PeV (LPM effects are included) the G4BetheHeitlerModel
is now removed from the G4GammaConversion process.</LI>
<LI>G4eplusAnnihilation: set secondary weight correctly using bias manager.</LI>
<LI>G4ESTARStopping, G4GSMottCorrection, G4GSPWACorrections,
G4GoudsmitSaundersonTable, G4SBBremTable, G4SeltzerBergerModel: minor
cleanup; use of <TT>std::getenv()</TT> and use of
<TT>G4Element::GetZasInt()</TT>.</LI>
<LI>Requires data-set G4EMLOW-7.9.</LI>
</UL></LI>
<LI><B>Utils</B>
<UL>
<LI>G4EmElementSelector, G4VEmModel: added extra method to select the
target atom by making use of the already known log-energy value in
the log-vector access.</LI>
<LI>G4VEmProcess, G4VEnergyLossProcess and G4VMscModel: added extra
methods to access log-vector tables by propagating the already
known log-energy value.</LI>
<LI>G4VMscModel, G4VMultipleScattering: added new method
<TT>InitialiseParameters()</TT>, make multiple-scattering specific
methods pure virtual.</LI>
<LI>G4LossTableManager: added <TT>Register/DeRegister()</TT> methods and vector
of pointers for G4VProcess classes for X-ray and optical processes.</LI>
<LI>G4EmParameters: added polarisation flag; moved implementation of
splitting parameters to source and added check on lock; added
<TT>9.99 MeV</TT> low limit in the <TT>SetMaxEnergy()</TT> method,
added thread lock to <TT>Dump()</TT> method.</LI>
<LI>G4EmParameters, G4EmParametersMessenger: splitted classes keeping the
user interface unchanged.
Added new classes for complex EM parameters (G4EmExtraParameters
G4EmExtraParametersMessenger) and new classes for low-energy and
DNA parameters (G4EmLowEParameters, G4EmLowEParametersMessenger).
Added new parameters for multiple-scattering <TT>FactorSafety</TT> and
<TT>LambdaLimit</TT>; now users can customise these values, default
values used are the same as in release 10.5.</LI>
<LI>G4EmSaturation: do not apply saturation for zero step length, as this
is possible only if a tracking cut is applied.</LI>
<LI>G4EmBiasingManager: delete non-tracked particles.</LI>
<LI>New helper class G4NIELCalculator, to compute NIEL in user stepping
action or sensitive detector code. User should provide G4VEmModel
objects, which has NIEL model.</LI>
<LI>G4LossTableManager: added access and initialisation of
G4NIELCalculator. Use std::getenv() for thread safety.</LI>
<LI>G4VEmProcess, G4VEnergyLossProcess, G4VMscModel, G4EmElementSelector:
utilise new optimised LogVectorValue() function from G4PhysicsVector
(for log-vector).</LI>
<LI>G4EmElementSelector: new optimised version; adopting linear
interpolation to avoid redundant energy grid related computations;
branches used to handle rare corner cases are eliminated by increased
robustness of the algorithm.</LI>
<LI>Removed no longer used members in G4EmElementSelector and G4VEmModel.</LI>
<LI>G4LossTableBuilder, G4LossTableManager, G4VEmModel, G4VMscModel,
G4VEmProcess, G4VEnergyLossProcess, G4EmCalculator: allow both
approaches, "General Process" and "Base Materials", work together.</LI>
<LI>G4DNAModelSubType: added Kreipl and Meesungnoen amorphous ice models.
G4EmLowEParametersMessenger: added corresponding commands.</LI>
<LI>DummyModel: added methods to be consistent with above modifications.</LI>
<LI>Fixed Coverity defects.</LI>
</UL>
<LI><B>Xrays</B>
<UL>
<LI>G4Cerenkov, G4Scintillation, G4SynchrotronRadiation,
G4VTransitionRadiation: added registration/de-registration mechanism.</LI>
</UL></LI>
</UL>
<A NAME="event-notes">
<H3><I>Event</I></H3></A>
<UL>
<LI>G4SPSEneDistribution: added protection for potential infinite loop.
Addressing problem report
<A HREF="http://bugzilla-geant4.kek.jp/show_bug.cgi?id=2177">#2177</A>.</LI>
<LI>G4SPSPosDistribution: added accessor methods for volume confinement
Addressing GitHub PR #7.</LI>
<LI>Fixed implicit type conversions from size_t to G4int in G4TrackStack
and G4TrajectoryContainer. Fixed typos and some code cleanup.</LI>
<LI>Make -DG4_USESMARTSTACK a public compile definition of G4event
to propagate it directly to CMake clients.</LI>
</UL>
<A NAME="externals-notes">
<H3><I>Externals</I></H3></A>
<UL>
<LI><U>CLHEP</U>:
<UL>
<LI>Updated to CLHEP version 2.4.1.3.</LI>
<LI>MixMaxRng: throw if seed is zero. Use throw instead of exit()
elsewhere.</LI>
<LI>Defaulted operator=() also for BasicVector3D andPlan3D; fixing
deprecation warnings on gcc-9.1. Fixed shadowing compilation
warnings in Transform3D as reported on gcc-9.1.</LI>
<LI>Added move constructor and move assignment operators in Vector and
Geometry classes.</LI>
<LI>Fixed compilation warnings for cases of implicit type conversions in
Ziggurat classes.</LI>
</UL></LI>
</UL>
<A NAME="gen-notes">
<H3><I>General Processes</I></H3></A>
<UL>
<LI><B>Biasing</B>
<UL>
<LI>Introducing leading particle biasing.</LI>
<LI>G4BOptnChangeCrossSection: added argument to <TT>SetBiasedCrossSection()</TT>
method, as option to update the interaction length when setting a new
cross-section value.</LI>
<LI>Fixed cases of implicit type conversions from size_t to G4int.</LI>
</UL></LI>
<LI><B>Cuts</B>
<UL>
<LI>Added protection against premature call to G4ProductionCutsTable.</LI>
<LI>Fixed cases of implicit type conversions from size_t to G4int.</LI>
</UL></LI>
<LI><B>Decay</B>
<UL>
<LI>G4Decay: extended printout for G4Exception DECAY101 and DECAY102.</LI>
</UL></LI>
<LI><B>Management</B>
<UL>
<LI>Made G4ProcessTable a thread-local singleton.</LI>
<LI>Fixed cases of implicit type conversions from size_t to G4int.</LI>
<LI>Some code cleanup in G4ProcessManager.</LI>
</UL></LI>
<LI><B>Optical</B>
<UL>
<LI>G4OpWLS: call <TT>SetNumberOfSecondaries()</TT> from G4VParticleChange only
once. Addressing problem report
<A HREF="http://bugzilla-geant4.kek.jp/show_bug.cgi?id=2200">#2200</A>.</LI>
<LI>Improved diagnostics printout.</LI>
<LI>Code cleanup and formatting, added C++11 keywords.</LI>
</UL></LI>
<LI><B>Parameterisation</B>
<UL>
<LI>Register G4FastSimulationManagerProcess with highest ordering in
G4FastSimulationManagerHelper to ensure it is the only process invoked
for a given step (ExclusivelyForced) and no other StronglyForced
processes will be considered.</LI>
</UL></LI>
<LI><B>Transportation</B>
<UL>
<LI>The following fixes and improvements affect both G4Transportation and
G4CoupledTransportation:<BR>
- Fixed issues related to resetting of looper flag and other state for
field propagation. Involved replacing check for 'Global' field with check for any field; this is
needed to ensure that propagator-in-field state is reset when the
setup inludes only local fields.
Ensure that looping flag is reset (false) when a force is not exerted
in <TT>G4CoupledTransportation::AlongStepGetPhysicalInteractionLength()</TT>;
before it was overwritten afterwards.
Addressing problem report
<A HREF="http://bugzilla-geant4.kek.jp/show_bug.cgi?id=2144">#2144</A>.<BR>
- Optimisation to avoid calling user field manager's
<TT>ConfigureForTrack()</TT> method, except if particle is charged,
or forces from magnetic moment or gravity are enabled.<BR>
- The change above introduces a new 'flag' to enable gravity fields.
The static method <TT>EnableGravity()</TT> in G4Transportation must be
called if the application uses gravity fields (calling this method
will enable both types of transportation to consider gravity.<BR>
- Added flag to optionally silence warning about looping tracks.
The method <TT>SetSilenceLooperWarnings()</TT> controls it.</LI>
</UL></LI>
</UL>
<A NAME="geo-notes">
<H3><I>Geometry</I></H3></A>
<UL>
<LI>Implemented minor C++11 revision and code cleanup.
Use pre-increment wherever possible.</LI>
<LI>Fixed minor Coverity defects.</LI>
<LI><B>Divisions</B>
<UL>
<LI>Return correct value for multiplicity in G4PVDivision and
G4ReplicatedSlice. Addressing problem report
<A HREF="http://bugzilla-geant4.kek.jp/show_bug.cgi?id=2168">#2168</A>.</LI>
<LI>G4PVDivision: added missing implementation of alternative constructor.</LI>
<LI>Added new virtual <TT>VolumeType()</TT> method in Physical Volume types.</LI>
</UL></LI>
<LI><B>Magnetic field</B>
<UL>
<LI>G4ChordFinder: changed to use concrete type of Stepper as template
parameter.</LI>
<LI>G4InterpolationDriver: revision that uses an instance of the stepper for
each substep. Fixed memory churn; use FSAL property of stepper
(G4DormandPrince745) to avoid one RHS evaluation per integration
substep beyond the first.
Changed from G4VERBOSE to G4FIELD_DEBUG for debug checks.
Now set by default.</LI>
<LI>Removed division in <TT>G4DormandPrince745::Interpolate4thOrder()</TT>.
Fix in 5<SUP>th</SUP> order interpolation method.</LI>
<LI>Reset step estimate in G4MagInt_Driver only at the beginning of a
track.</LI>
<LI>Added G4SextupoleMagField, an implementation of a sextupole magnetic
field.</LI>
<LI>Completed implementation G4BFieldIntegrationDriver, and fixed issues.
It is now used as the default driver for magnetic fields:
it instantiated in G4FieldManager's <TT>CreateChordFinder()</TT> method.
Fixed case of floating point exception in and removed statistics
printouts from destructor.</LI>
<LI>Added method and attribute to G4VIntegrationDriver
<TT>DoesReIntegrate()</TT> to inform whether the driver recomputes
segment when <TT>AccurateAdvance()</TT> is called.</LI>
</UL></LI>
<LI><B>Management</B>
<UL>
<LI>G4GeomSplitter: re-enabled use or <TT>realloc()/free()</TT> and
<TT>memcpy()</TT>, after adapting G4VPhysicalVolume MT splitted data
to adopt only trivial types for allocation. Re-establishing original
performance in initialisation of the geometry in MT mode.</LI>
<LI>Properly initialise splitted data in G4VPhysicalVolume to zero.</LI>
<LI>Replaced deprecated std::binary_function calls with lambdas in
G4SmartVoxelStat and G4GeometryManager. Addressing GitHub PR#8.</LI>
<LI>Defined move constructor and move assignment operator for
G4AffineTransform.</LI>
<LI>G4VSolid: use <TT>G4QuickRand()</TT> in <TT>EstimateCubicVolume()</TT>
and <TT>EstimateSurfaceArea()</TT>.</LI>
<LI>Changed <TT>G4VPhysicalVolume::VolumeType()</TT> to be virtual.
Required for addition of External Navigation, which adds an 'external'
physical volume type (for use with an External sub-Navigator).</LI>
<LI>Revised G4LogicalVolume to cope with 'external' type of physical
volumes. Use stored volume type in <TT>CharacteriseDaughters()</TT>.
These revisions are independent and backward compatible.</LI>
<LI>G4LogicalVolume: added method <TT>ChangeDaughtersType()</TT> to change
the volume type for <TT>CharacterisedDaughters()</TT>. It enables the
user to turn over responsibility for navigation in that volume to an
external navigator.
This is for use when one or more daughter volumes are created as an
existing physical volume type (typically <TT>G4PVPlacement</TT>). It
can also be used to enable to create a (logical) volume which containts
a mixture of existing Geant4 physical volume types and user-created
'external' physical volume type (with type code <TT>kExternal</TT>):
Geant4 types must be created first, and then <TT>ChangeDaughtersType()</TT>
must be called to change the mother's attribute to <TT>kExternal</TT>.
Note: only one type of sub-navigator will be called to find a track's
intersection (or the location of a point) in all daughters of one
mother volume. The sub-navigator chosen will correspond to the volume
type assigned.</LI>
<LI>Fixed cases of implicit type conversions from size_t to G4int.</LI>
<LI>Use header-based <TT>#define/undef</TT> symbols to configure VecGeom
replacements; added new configuration headers G4GeomConfig.hh and
G4GeomTypes.hh.</LI>
</UL></LI>
<LI><B>Navigation</B>
<UL>
<LI>Improved information in G4Exceptions for particles stuck due to
multiple zero steps in G4Navigator.</LI>
<LI>Added hooks for capability to navigate in 'external' geometry:
new base class G4VExternalNavigation for external 'sub'-navigator;
new type of 'External' physical volume, to flag volumes for
external sub-navigator; revisions to G4Navigator to dispatch logical
volumes with daughters which are of 'external' physical-volume type.
An 'external' sub-navigator can be registered with G4Navigator;
'placement' and 'external' physical volumes cannot be currently
mixed inside the same logical volume.</LI>
<LI>Added <TT>Clone()</TT> method in G4Navigator, to allow for 'cloning' the
navigator for G4VIntersectionLocator's 'helper', and potentially for
worker threads.</LI>
<LI>G4TransportationManager: enable worker threads to clone G4Navigator if
needed. Keep first navigator created; by convention that will be the
navigator object of the master thread (or the only thread). Other
(worker) threads will clone the first navigator, if it has an external
sub-navigator registered. This ensures that they clone the ability to
navigate in 'external' volume descriptions.</LI>
<LI>G4MultiLevelLocator: avoid re-estimating endpoint if driver does not
re-integrate when <TT>AccurateAdvance()</TT> is called.</LI>
<LI>Introduced temporary 'relaxation' (increase) of the value of delta-chord,
in G4PropagatorInField, to enable larger steps, after a threshold number
of iterations (parameter). Added methods to get/set the parameter that
controls after how many integration substeps (in one physics step) the
increase of the chord distance is trigerred.</LI>
<LI>Made G4RegularNavigationHelper a G4ThreadLocalSingleton.</LI>
<LI>G4PhantomParameterisation: reverted precision checks as in version
<TT>10.2.p02</TT>. Addressing problem report
<A HREF="http://bugzilla-geant4.kek.jp/show_bug.cgi?id=2192">#2192</A>.</LI>
<LI>Enable UI command <TT>/geometry/navigator/push_notify</TT> which was
not setup properly. Addressing problem report
<A HREF="http://bugzilla-geant4.kek.jp/show_bug.cgi?id=2173">#2173</A>.</LI>
<LI>Fixed cases of implicit type conversions from size_t to G4int.</LI>
</UL></LI>
<LI><B>Solids (Boolean)</B>
<UL>
<LI>G4BooleanSolid: use <TT>G4QuickRand()</TT> in <TT>GetPointOnSurface()</TT>;
reduced max number of tries to generate a point to 100k.</LI>
<LI>Fixed cases of implicit type conversions from size_t to G4int.</LI>
</UL></LI>
<LI><B>Solids (CSG)</B>
<UL>
<LI>G4Tubs: Fixed normal from <TT>DistanceToOut()</TT> to be unit vector, for
abnormal exit points. Added <TT>inverse-Rmax</TT> and <TT>-Rmin</TT> as
data members.</LI>
<LI>Re-use pre-calculated values instead of using std::cos(), std::sin()
in G4Tubs, G4Cons, G4CutTubs and G4Sphere.</LI>
<LI>G4CutTubs: fixed minor Coverity defects for non initialised data in
constructors.</LI>
<LI>Added inclusion of new G4GeomTypes.hh header to those headers allowing
VecGeom replacement.</LI>
</UL></LI>
<LI><B>Solids (Specific)</B>
<UL>
<LI>Enabled VecGeom wrapper for G4GenericPolycone, G4EllipticalTube,
G4EllipticalCone and G4Ellipsoid. Requiring VecGeom version 1.1.5.</LI>
<LI>G4ExtrudedSolid: fixed a bug in DistanceToOut(), affecting extruded
solids defined off-center along the z-axis.</LI>
<LI>Fixed generation of polyhedron in <TT>G4UExtrudedSolid::CreatePolyhedron()</TT>.
Addressing visualization part of the problem report
<A HREF="http://bugzilla-geant4.kek.jp/show_bug.cgi?id=2171">#2171</A>.</LI>
<LI>Avoid defining kCarTolerance as 'static const' in G4VFacet.
Addressing problem report
<A HREF="http://bugzilla-geant4.kek.jp/show_bug.cgi?id=2172">#2172</A>.</LI>
<LI>Modified G4PolyconeSide and G4PolyhedraSide to use only trivial types
for MT splitted data in G4PlSideData and G4PhSideData respectively.</LI>
<LI>Protected check in <TT>G4TwistedTubsSide::DistanceToPlane()</TT> within debug
flag.</LI>