-
Notifications
You must be signed in to change notification settings - Fork 1
/
releases.html
2139 lines (1925 loc) · 113 KB
/
releases.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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
<!--#include FILE="./header.inc"-->
<body>
<!--#include FILE="./navigation.inc"-->
<div id="MainIn2ColumnPage">
<div CLASS="clsInsidePageHeader"> GENIE/Generator Releases</div>
<br />
<div id="InsidePageMainText">
To familiarize yourself with the GENIE release naming conventions, please see
<A href="./naming_conventions.html">here</A>.
<br />
<br />
<IMG src="./images/genie/guard.gif" align="left" width="100px" hspace="10px">
<b>GENIE recommends:</b>
<br />
For large MC productions and physics studies, use
one of the comprehensive model configurations supported in the latest
GENIE production release (<B>v3.4.0</B>).
<br />
<br />
To experiment with the latest publicly released physics models and technical
features, you can (at your own risk) use the development version and/or enable
non-default options. Please understand that these models and features may
be experimental and not well validated.
</div>
<br />
<!--
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
RELEASE TABLE
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-->
<div id="InsidePageSectionHeader">
Release table
</div>
<div id="InsidePageSectionBody">
<h3><u>Future production release series:</u></h3>
<!--
*** *** *** *** *** *** DUGONG *** *** *** *** *** ***
-->
<div id="ReleaseTableHeader">
<IMG src="./images/release/dugong.png" align="left" width="120px" hspace="10px">
<B> Dugong production release series</B> [Generator vrs series 5 - Planned for 2025] <br />
<I class="clsReleaseTableHeaderSubtext">
GENIE/Generator Version 5.0.0 is envisioned as the first release
of explict <b>Argon tunes</b>
produced from a <b>global analysis of folded data distributions from the SBND experiment</b>.
This release will be enabled by work to
integrate the GENIE global analysis software
into the SBND analysis software.
This effort to combine the most successful and well-motivated
empirical and theory-based comprehensive models in GENIE
with the full power of SBND data,
will yield the models that will <b>underpin physics exploitation in DUNE</b>.
</I>
</div>
<br />
<!--
<div id="ReleaseTableHeader2">
<b>Version: 5.0.0 (planned; 2025) </b>
<br />
<small>
Tag: - ,
Released: - ,
Status: -
</small>
<br />
<br />
<div id="ReleaseTableBody">
</div>
</div>
<br />
<br />
<br />
-->
<!--
*** *** *** *** *** *** CHEETAH *** *** *** *** *** ***
-->
<div id="ReleaseTableHeader">
<IMG src="./images/release/cheetah_small.jpg" align="left" width="120px" hspace="10px">
<B> Cheetah production release series</B> [Generator vrs series 4 - Planned for Q4/2022] <br />
<I class="clsReleaseTableHeaderSubtext">
Release of an expanded set of GENIE Comprehensive Model Configurations,
including <b>several new microscopic / theoretical calculations and improved empirical hadronic models</b>, and
<b>full deployment of new phyiscs tuning results</b>
from the leading GENIE Global Analysis of Neutrino Scattering Data,
<b>including hadronization tunes and nuclear cross-section data tunes</b>.
All new tunes will seamlessly integrated into the GENIE Generator platform.
GENIE/Generator version 4.0.0 will be accompanied by a new major release of the GENIE/Reweight product (version 2.0.0)
that will provide full support for the new GENIE physics tunes (including support for intrinsically non-reweightable
systematic parameters). GENIE/Reweight version 2.0.0 will be accompanied by the release of our
detailed Professor/YODA response functions constructed from our brute-force systematic parameter scans, as part of
the GENIE global fits of neutrino scattering data, as well as the release of
all covariance matrices from the GENIE global fits.
</I>
</div>
<br />
<!--
<div id="ReleaseTableHeader2">
<b>Version: 4.0.0 (planned; Q1 2020) </b>
<br />
<small>
Tag: - ,
Released: - ,
Status: -
</small>
<br />
<br />
<div id="ReleaseTableBody">
</div>
</div>
<br />
<br />
<br />
-->
<h3><u>Current production release series:</u></h3>
<!--
*** *** *** *** *** *** BEAR *** *** *** *** *** ***
-->
<div id="ReleaseTableHeader">
<IMG src="./images/release/bear_small.jpg" align="left" width="120px" hspace="10px">
<B> Bear production release series</B> <br />
<I class="clsReleaseTableHeaderSubtext">
<b>Several new empirical and theory-driven global model configurations</b>
including a new/improved GENIE default model, amalgamating the long series of Auk physics model
developments into new comprehensive and self-consistent descriptions of neutrino-nucleon/nucleus scattering
from few hundred MeV to multi-TeV energy scales.
Deployment of first results from the leading <b>GENIE Global Analysis of Neutrino Scattering Data</b>,
and seamless integration into a new series of GENIE Generator production releases.
The new GENIE global analysis allows the tuning of large sets of physics parameters (both reweightable
and non-reweightable) and the robust estimation of parameter uncertainties and their correlations,
and it leads to improved comprehensive model configurations with respect to the ones available in the Bear series.
Multiple parameter tunes, from fits to different combinations of datasets, are deployed for each
supported comprehensive model configuration.
</I>
</div>
<br />
<table border="0" cellpadding="1" cellspacing="0">
<tr>
<td class="clsVersionTableGroupOfProductsHeader" colspan="4"> <b>GENIE Products</b> </td>
<td> </td>
<td class="clsVersionTableGroupOfProductsHeader" colspan="9"> <b>External dependencies</b> </td>
<td> </td>
</tr>
<tr>
<td class="clsVersionTableGeneric"> <b>Reweight</b> </td>
<td class="clsVersionTableGeneric"> <b>Generator</b> </td>
<td class="clsVersionTableGeneric"> <b>Comparisons</b> </td>
<td class="clsVersionTableGeneric"> <b>Tuning</b> </td>
<td> </td>
<td class="clsVersionTableGeneric"> <A href="https://root.cern.ch/">ROOT</A> </td>
<td class="clsVersionTableGeneric"> <A href="https://www.gnu.org/software/gsl/">GSL</A> </td>
<td class="clsVersionTableGeneric"> <A href="https://apfel.hepforge.org/">APFEL</A> </td>
<td class="clsVersionTableGeneric"> <A href="https://lhapdf.hepforge.org/lhapdf5/">LHAPDF5</A> </td>
<td class="clsVersionTableGeneric"> <A href="https://lhapdf.hepforge.org/">LHAPDF6</A> </td>
<td class="clsVersionTableGeneric"> <A href="https://pythiasix.hepforge.org/">PYTHIA6</A> </td>
<td class="clsVersionTableGeneric"> <A href="http://home.thep.lu.se/~torbjorn/Pythia.html">PYTHIA8</A> </td>
<td class="clsVersionTableGeneric"> INCL </td>
<td class="clsVersionTableGeneric"> <A href="http://geant4.web.cern.ch/">GEANT4</A> </td>
<td class="clsVersionTableGeneric"> Notes</td>
</tr>
<tr>
<td> </td>
<td colspan="3" class="clsVersionTableCharacterizationAndTuningHeader">
Public and internal releases of products used for the GENIE global analysis of scattering data,
in support of the publicly-released comprehensive model configurations and tunes. </td>
<td> </td>
<td colspan="9" class="clsVersionTableExternalProductsHeader">
External products that:
<ul>
<li>
may have implications on the definition of GENIE tunes,
have their required version number shown in <b class="clsRed">red</b>.
</li>
<li>
are not mandatory for all comprehensive configurations and tunes
but are required only for a specific <u>subset</u> of those,
have their required or recommended version shown within <b>( )</b>.
</li>
<li>
are interfaced to GENIE but are not coupled to any publicly
released model configuration, are listed with a ⁕.
</li>
</ul>
</td>
<td> </td>
</tr>
<tr>
<td colspan="2" class="clsVersionTableReweightGeneratorHeader">
Public releases of the GENIE physics simulation,
as well as of related products in support of GENIE tunes and generator-related analysis tasks. </td>
<td> </td>
<td> </td>
<td> </td>
<td colspan="9" class="clsVersionTableExternalProductsHeader"> </td>
</tr>
<tr>
<td class="clsVersionTableReweight"> 1.2.4 </td>
<td class="clsVersionTableGenerator"> 3.4.2 </td>
<td class="clsVersionTableCharacterizationAndTuning"> 1.4.0 </td>
<td class="clsVersionTableCharacterizationAndTuning"> 1.2.0 </td>
<td> </td>
<td class="clsVersionTableExternalProducts"> ≥ 6.22.08 </td>
<td class="clsVersionTableExternalProducts"> ≥ 2.6 </td>
<td class="clsVersionTableExternalProducts"> ? </td>
<td class="clsVersionTableExternalProducts"> ? </td>
<td class="clsVersionTableExternalProducts"> ≥ 6.3.0 </td>
<td class="clsVersionTableExternalProducts"> 6.4.28 </td>
<td class="clsVersionTableExternalProducts"> ≥ 8.2.45 </td>
<td class="clsVersionTableExternalProducts"> ⁕ modified <br /> v5.2.9.5 </td>
<td class="clsVersionTableExternalProducts"> ⁕ v4.10.4.p02 </td>
<td class="clsVersionTableGeneric">
</td>
</tr>
<tr>
<td class="clsVersionTableReweight"> 1.2.0 </td>
<td class="clsVersionTableGenerator"> 3.4.0 </td>
<td class="clsVersionTableCharacterizationAndTuning"> 1.4.0 </td>
<td class="clsVersionTableCharacterizationAndTuning"> 1.2.0 </td>
<td> </td>
<td class="clsVersionTableExternalProducts"> ≥ 6.22.08 </td>
<td class="clsVersionTableExternalProducts"> ≥ 2.6 </td>
<td class="clsVersionTableExternalProducts"> ? </td>
<td class="clsVersionTableExternalProducts"> ? </td>
<td class="clsVersionTableExternalProducts"> ≥ 6.3.0 </td>
<td class="clsVersionTableExternalProducts"> 6.4.28 </td>
<td class="clsVersionTableExternalProducts"> ≥ 8.2.45 </td>
<td class="clsVersionTableExternalProducts"> ⁕ modified <br /> v5.2.9.5 </td>
<td class="clsVersionTableExternalProducts"> ⁕ v4.10.4.p02 </td>
<td class="clsVersionTableGeneric">
</td>
</tr>
<tr>
<td class="clsVersionTableReweight"> 1.2.0 </td>
<td class="clsVersionTableGenerator"> 3.2.0 </td>
<td class="clsVersionTableCharacterizationAndTuning"> 1.2.0 </td>
<td class="clsVersionTableCharacterizationAndTuning"> 1.2.0 </td>
<td> </td>
<td class="clsVersionTableExternalProducts"> ≥ 6.22.08 </td>
<td class="clsVersionTableExternalProducts"> ≥ 2.6 </td>
<td class="clsVersionTableExternalProducts"> ? </td>
<td class="clsVersionTableExternalProducts"> ? </td>
<td class="clsVersionTableExternalProducts"> ≥ 6.3.0 </td>
<td class="clsVersionTableExternalProducts"> 6.4.28 </td>
<td class="clsVersionTableExternalProducts"> ? </td>
<td class="clsVersionTableExternalProducts"> ⁕ modified <br /> v5.2.9.5 </td>
<td class="clsVersionTableExternalProducts"> ⁕ v4.10.4.p02 </td>
<td class="clsVersionTableGeneric">
</td>
</tr>
<tr>
<td class="clsVersionTableReweight"> 1.0.4 </td>
<td class="clsVersionTableGenerator"> 3.0.6 </td>
<td class="clsVersionTableCharacterizationAndTuning"> 1.0.2 </td>
<td class="clsVersionTableCharacterizationAndTuning"> </td>
<td> </td>
<td class="clsVersionTableExternalProducts"> </td>
<td class="clsVersionTableExternalProducts"> </td>
<td class="clsVersionTableExternalProducts"> N/A </td>
<td class="clsVersionTableExternalProducts"> </td>
<td class="clsVersionTableExternalProducts"> ⁕ </td>
<td class="clsVersionTableExternalProducts"> </td>
<td class="clsVersionTableExternalProducts"> N/A </td>
<td class="clsVersionTableExternalProducts"> N/A </td>
<td class="clsVersionTableExternalProducts"> N/A </td>
<td> </td>
</tr>
<tr>
<td class="clsVersionTableReweight"> 1.0.4 </td>
<td class="clsVersionTableGenerator"> 3.0.4 </td>
<td class="clsVersionTableCharacterizationAndTuning"> </td>
<td class="clsVersionTableCharacterizationAndTuning"> </td>
<td> </td>
<td class="clsVersionTableExternalProducts"> </td>
<td class="clsVersionTableExternalProducts"> </td>
<td class="clsVersionTableExternalProducts"> N/A </td>
<td class="clsVersionTableExternalProducts"> </td>
<td class="clsVersionTableExternalProducts"> ⁕ </td>
<td class="clsVersionTableExternalProducts"> </td>
<td class="clsVersionTableExternalProducts"> N/A </td>
<td class="clsVersionTableExternalProducts"> N/A </td>
<td class="clsVersionTableExternalProducts"> N/A </td>
<td> </td>
</tr>
<tr>
<td class="clsVersionTableReweight"> 1.0.0 </td>
<td class="clsVersionTableGenerator"> 3.0.2 </td>
<td class="clsVersionTableCharacterizationAndTuning"> </td>
<td class="clsVersionTableCharacterizationAndTuning"> </td>
<td> </td>
<td class="clsVersionTableExternalProducts"> </td>
<td class="clsVersionTableExternalProducts"> </td>
<td class="clsVersionTableExternalProducts"> N/A </td>
<td class="clsVersionTableExternalProducts"> </td>
<td class="clsVersionTableExternalProducts"> ⁕ </td>
<td class="clsVersionTableExternalProducts"> </td>
<td class="clsVersionTableExternalProducts"> N/A </td>
<td class="clsVersionTableExternalProducts"> N/A </td>
<td class="clsVersionTableExternalProducts"> N/A </td>
<td class="clsVersionTableGeneric">
Release v1.0.0 of new, factored-out Reweight product
brings this producy sync with the v3 series of our Generator product.
</td>
</tr>
<tr>
<td class="clsVersionTableReweight"> N/A </td>
<td class="clsVersionTableGenerator"> 3.0.0 </td>
<td class="clsVersionTableCharacterizationAndTuning"> 1.0.0 </td>
<td class="clsVersionTableCharacterizationAndTuning"> 1.0.0 </td>
<td> </td>
<td class="clsVersionTableExternalProducts"> </td>
<td class="clsVersionTableExternalProducts"> </td>
<td class="clsVersionTableExternalProducts"> N/A </td>
<td class="clsVersionTableExternalProducts"> </td>
<td class="clsVersionTableExternalProducts"> ⁕ </td>
<td class="clsVersionTableExternalProducts"> </td>
<td class="clsVersionTableExternalProducts"> N/A </td>
<td class="clsVersionTableExternalProducts"> N/A </td>
<td class="clsVersionTableExternalProducts"> N/A </td>
<td class="clsVersionTableGeneric">
Product versions used for GENIE 3.0.0 comprehensive model
characterization and free-nucleon cross-section model retunes
</td>
</tr>
<tr>
<td colspan="2" class="clsVersionTableBottomLine"> </td>
<td colspan="3"> </td>
<td colspan="9"> </td>
</tr>
</table>
<b> Note: </b> The table above shows the recommended amongst all compatible combinations of versions.
<br />
<br />
<div id="ReleaseTableHeader2">
<b>Version: 3.6.0 </b>
<br />
<small>
Tag: R-3_04_00,
<!-- Released: , -->
Status: <i class="clsFRed"> in development</i>
</small>
<br />
<br />
<div id="ReleaseTableBody">
<b>Improvements over 3.4.*</b>
<br />
<span class="clsFContrib">
(<i>Important contributions by non-GENIE authors are especially acknowledged in the text below</i>)
</span>
<br />
<br />
New comprehensive model configurations and tunes:
<ul>
<li> </li>
</ul>
New and/or updated physics models:
<ul>
<li> Addition of the published <b>Minoo Kabirnezhad (MK) single-pion cross-section model</b>
by the Dubna GENIE group, and a critical review of the published work
leading to model variants currently under consideration for GENIE v4.
Details of the original model can be found in
<A href="https://journals.aps.org/prd/abstract/10.1103/PhysRevD.97.013002">Phys. Rev. D 97, 013002</A>.
Details of the MK model variants are currently private.
<span class="clsFContrib">Contribution by Minoo Kabirnezhad (Oxford)</span>.
<A href="https://github.com/GENIE-MC/Generator/pull/130">[GENIE pull request #130]</A>,
<A href="https://github.com/GENIE-MC/Generator/pull/131">[GENIE pull request #131]</A>,
<A href="https://github.com/GENIE-MC/Generator/pull/132">[GENIE pull request #132]</A>.
</li>
<li> </li>
</ul>
Event generation and core framework improvements:
<ul>
<li> Allow algorythms to be used in reweight and add Professor as an optional dependency <A href="https://github.com/GENIE-MC/Generator/pull/366">[GENIE pull request #366]</A>. </li>
</ul>
Improvements in generator tools (flux and geometry drivers, event generation and other apps):
<ul>
<li> </li>
</ul>
Other improvements / bug fixes:
<ul>
<li> </li>
</ul>
Other comments:
<ul>
<li> </li>
</ul>
</div>
</div>
<br />
<div id="ReleaseTableHeader2">
<b>Version: 3.4.2 </b>
<br />
<small>
Tag: R-3_04_02,
Released: 15 April 2024
Status: <i class="clsFGreen"> pro</i>
</small>
<br />
<br />
<div id="ReleaseTableBody">
<b>Improvements over 3.4.0</b>
<br />
<span class="clsFContrib">
(<i>Important contributions by non-GENIE authors are especially acknowledged in the text below</i>)
</span>
<br />
<br />
Improvements in generator tools (flux and geometry drivers, event generation and other apps):
<ul>
<li> Implementation of the correct time shift for GSimpleNtpFlux class when users shift the starting z coordinate for a neutrino ray off of the flux window. <A href="https://github.com/GENIE-MC/Generator/pull/387">[GENIE pull request #387]</A>. </li>
</ul>
Other improvements / bug fixes:
<ul>
<li> Fix how 3rd party FSI handle nuclear remnants
<A href="https://github.com/GENIE-MC/Generator/pull/373">[GENIE pull request #373]</A> and binding energy <A href="https://github.com/GENIE-MC/Generator/pull/367">[GENIE pull request #367]</A>.
</li>
<li> Allow reweight to define algorithms, in order to access configurations
<A href="https://github.com/GENIE-MC/Reweight/pull/25">[GENIE Reweight pull request #25]</A> and <A href="https://github.com/GENIE-MC/Generator/pull/366">[GENIE pull request #366]</A>.
</li>
</ul>
Other comments:
<ul>
<li> The splines for v3.04.00 are valid for v3.04.02 as well.</li>
</ul>
</div>
</div>
<br />
<div id="ReleaseTableHeader2">
<b>Version: 3.4.0 </b>
<br />
<small>
Tag: R-3_04_00,
Released: 10 March 2023,
Status: <i class="clsFBlue">old</i>
</small>
<br />
<br />
<div id="ReleaseTableBody">
<b>Improvements over 3.2.2</b>
<br />
<span class="clsFContrib">
(<i>Important contributions by non-GENIE authors are especially acknowledged in the text below</i>)
</span>
<br />
<br />
New and/or updated physics models:
<ul>
<li> Addition of a spectral function-like approach for binding energies.
<span class="clsFContrib">Contribution by Steven Dolan and Laura Munteanu </span>.
<A href="https://github.com/GENIE-MC/Generator/pull/249">[GENIE pull request #249]</A>.
</li>
</ul>
New comprehensive model configurations and tunes:
<ul>
<li> Added CMC desired by SBN and DUNE experiments: AR23_20i_00_000.
<A href="https://github.com/GENIE-MC/Generator/blob/master/config/AR23_20i/README.md#liquid-argon-experiment-tune">[Readme file]</A>.
</li>
</ul>
Beyond Standard model:
<ul>
<li> Addition of Beam-produced Heavy Neutral Leptons.
<span class="clsFContrib">Contribution by John Plows (Oxford) </span>.
<A href="https://github.com/GENIE-MC/Generator/pull/223">[GENIE pull request #223]</A>.
</li>
</ul>
Other improvements / bug fixes:
<ul>
<li> Fix in HAIntranuke about random number generation.
<A href="https://github.com/GENIE-MC/Generator/pull/241">[GENIE pull request #241]</A>.
</li>
<li> Fix in the hadronisation rotation.
<span class="clsFContrib">Contribution by Qiyu Yan </span>.
<A href="https://github.com/GENIE-MC/Generator/pull/264">[GENIE pull request #264]</A>.
</li>
</ul>
</div>
</div>
<br />
<div id="ReleaseTableHeader2">
<b>Version: 3.2.2 </b>
<br />
<small>
Tag: R-3_02_02,
Released: 29 November 2022,
Status: <i class="clsFBlue">old</i>
</small>
<br />
<br />
<div id="ReleaseTableBody">
<b>Improvements over 3.0.0</b>
<br />
<br />
Technical developments
<ul>
<li> Change in header file includes to fix compilations issues found in some platforms.
</li>
</ul>
</div>
</div>
<div id="ReleaseTableHeader2">
<b>Version: 3.2.0 </b>
<br />
<small>
Tag: R-3_02_00,
Released: 11 March 2022,
Status: <i class="clsFBlue">old</i>
</small>
<br />
<br />
<div id="ReleaseTableBody">
<b>Improvements over 3.0.*</b>
<br />
<span class="clsFContrib">
(<i>Important contributions by non-GENIE authors are especially acknowledged in the text below</i>)
</span>
<br />
<br />
New comprehensive model configurations and tunes:
<ul>
<li> For every alternative cross-section model construction,
released two new comprehensive model variants by incorporating the INCL (Liege) and GEANT4/Bertini FSI codes,
in addition to the existing variants incorporating the INTRANUKE/hA and INTRANUKE/hN FSI codes.
So, for example, for our G18_02 (theory) cross-section model construction, that incorporates the results of
the GENIE 02_11b global analysis, users can obtain the following tunes:
G18_02a_02_11b (hA FSI), G18_02b_02_11b (hN FSI), G18_02c_02_11b (INCL), G18_02d_02_11b (Bertini).
<A href="http://tunes.genie-mc.org/"> Further details on the available tunes can be found here</A>
</li>
<li> Incorporated the <b>final results of the GENIE global analysis of bare-nucleon cross-section data</b>
into all G18_[01a-d/02a-d]_<b>02_11b</b> GENIE tunes.
Preliminary versions of our results were released in v3.0.0 - v3.0.6 in tunes carrying the label 02_11a.
These preliminary (02_11a) were maintained in v3.2.0, but they will be phased out is the next release.
Details about this GENIE analysis are published in
<A href="https://journals.aps.org/prd/abstract/10.1103/PhysRevD.104.072009" target="_top"> Phys.Rev.D 104 (2021) 7, 072009</A>.
</li>
<li> Added 02_11b variants (tunes) for the G18_10 class of comprehensive models.
</li>
<li> Released optional AGKY hadronization model configurations,
incorporating the <b>first results from the GENIE global analysis of data on neutrino-induced hadron shower characteristics</b>
Details about this GENIE analysis are published in
<A href="https://journals.aps.org/prd/abstract/10.1103/PhysRevD.105.012009" target="_top"> Phys.Rev.D 105 (2022) 1, 012009</A>.
</li>
<li> Released a new set of tunes
optimised for our ultra high energy user communities,
based on our new NLO DIS cross-section calculation and event generation modules.
They are: GHE19_00a_00_000 (BGR18 model), GHE19_00b_00_000 (CMS11 model),
GHE19_00c_00_000 (GENHEN-like model) and GHE19_00d_00_000 (GGHR20 model).
</li>
<li> Released a new comprehensive model (GVLE18_01a) optimised for our low energy (< 100 MeV) user communities.
</li>
<li> Released a series of <u>experimental</u> comprehensive models incorporating
new cross-section modelling elements (SuSAv2) in preparation of a new generation of
comprehensive models and tunes for GENIE4.
</li>
</ul>
New and/or updated physics models:
<ul>
<li> Addition of the <b>SuSAv2 1p1h and 2p2h</b> cross-section models.
Details published in <A href="https://journals.aps.org/prd/abstract/10.1103/PhysRevD.101.033003">Phys. Rev. D 101, 033003</A>.
<span class="clsFContrib">Contribution by Stephen Dolan, Guillermo Megias
and Sara Bolognesi (Ecole Polytechnique and IRFU, Saclay, DPP)</span>.
<A href="https://github.com/GENIE-MC/Generator/pull/55">[GENIE pull request #55]</A>
</li>
<li> Addition of a new <b>NLO DIS cross-section calculation and event generation modules</b> (HEDIS package),
including an implementation of the LEPTO interface to the PYTHIA6 hadronization routines,
tested/validated up to 1E+9 GeV, in support of GENIE users in km3net, IceCUBE
and CERN Forward Physics Facility (FASERnu and other experiments).
Details published in <A href="https://iopscience.iop.org/article/10.1088/1475-7516/2020/09/025" target="_top">JCAP 09 (2020) 025</A>
and <A href="https://pos.sissa.it/358/895" target="_top">PoS ICRC2019 (2020) 895</A>.
This model requires a new GENIE external dependence: <A href="https://apfel.hepforge.org/" target="_top">APFEL DGLAP evolution code</A>.
New generalised interfaces for structure function calculations.
<span class="clsFContrib"> Contribution by Juan Rojo, Rhorry Gauld and Aart Heijboer (NIKHEF)</span>
in collaboration with core GENIE member Alfonso Garcia (IFIC/Harvard).
</li>
<li>
New HELepton package, incorporating <b>a) resonant interactions with the nucleon's photon field, and b) coherent
neutrino scattering</b> into the GENIE high energy event generator.
Details in <A href="https://iopscience.iop.org/article/10.1088/1475-7516/2020/09/025" target="_top">JCAP 09 (2020) 025</A>.
These processes were implemented at NLO. In addition, the new HELepton package absorbed old code to simulate the Glashow resonance
and was re-implemented at NLO.
<A href="https://github.com/GENIE-MC/Generator/pull/161">[GENIE pull request #161]</A>
</li>
<li> Addition of the <b>Liege intranuclear rescattering model</b> through an interface to the INCL generator.
This model requires a new GENIE external dependence: INCL.
</li>
<li> Addition of the <b>Bertini intranuclear rescattering model</b> through an interface to the
GEANT4 generator</b>. This model requires a new GENIE external dependence: GEANT4.
<span class="clsFContrib"> Contributions by Dennis Wright and Makoto Asai (SLAC)</span>.
</li>
<li> Addition of a first working <b>interface the PYTHIA8 hadronization code</b>,
as part of an alternative, <i>experimental configuration</i> of the AGKY hadronization model.
This model requires a new GENIE external dependence: PYTHIA8.
<span class="clsFContrib">Contributions by Shivesh Mandalia (QMUL).</span>
</li>
<li> Addition of the <b>Correlated Fermi Gas</b> nuclear model. </li>
<li> A native implementation of a new BSM generator,
simulating the production and decay of <b>Dark Neutrinos</b>
according to the model described in
<A href="https://journals.aps.org/prl/abstract/10.1103/PhysRevLett.121.241801">Phys. Rev. Lett. 121, 241801</A>.
<span class="clsFContrib"> Contributions by Iker de Icaza (Sussex) and Pedro Machado (FNAL)</span>.
<A href="https://github.com/GENIE-MC/Generator/pull/114">[GENIE pull request #114]</A>
<li> A substantial upgrade in the native BSM generator for the simulation of <b>Boosted Dark Matter (BDM)</b>,
bringing it sync with the model described in <A href="https://arxiv.org/abs/1812.05616">arXiv:1812.05616</A>.
The newly deployed BDM code
a) allows a broader set of particle physics models, including
both vector and axial couplings, as well as different isospin structures,
b) has improved modeling of the elastic scattering process, including a pseudoscalar form factor,
c) includes the simulation of scattering off electrons, and
d) includes anti-dark matter scattering.
<span class="clsFContrib"> Contribution by Joshua Berger (Pittsburgh)</span>.
</li>
<li> Addition of a new and complete implementation of a <b>CEvNS event generator</b>.
Uses an implementation of the CEvNS cross-section model
of Kelly Patton, Jonathan Engel, Gail C. McLaughlin, and Nicolas Schunck
described in
<A href="https://journals.aps.org/prc/abstract/10.1103/PhysRevC.86.024612">Phys. Rev. C 86, 024612</A>.
<A href="https://github.com/GENIE-MC/Generator/pull/45">[GENIE pull request #45]</A>
</li>
</ul>
Event generation and core framework improvements:
<ul>
<li> Added a new toolkit to generalise and simplify the implementation of cross-section
models relying on tabulated hadron tensors.
The change underpinned newly developed implementation of the SuSA2 model.
Old models were upgared to use the new toolkit</li>
<li> Complete refactoring of the GENIE decayer and hadronization modules, upgrading
decayers and hadronization modules to full-blown GENIE "event record visitors"
and eliminating PYTHIA6-specific elements from GENIE interfaces.
The change underpinned newly developed interfaces to PYTHIA8. </li>
</ul>
Improvements in generator tools (flux and geometry drivers, event generation and other apps):
<ul>
<li> Added a new toolkit (EvtLib: Event Library Interface Generator)
providing a file <b>interface to external neutrino MC generators</b>.
EvtLib allows experiments to run external neutrino MC generators,
re-using their existing GENIE MC production workflows
and the extensive GENIE flux and geometry tools.
<span class="clsFContrib"> Contribution by Chris Backhouse (UCL). </span>
<A href="https://github.com/GENIE-MC/Generator/pull/103">[GENIE pull request #103]</A>
</li>
<li> Added a new option (-T) in the GENIE atmospheric neutrino event generation app,
to generate the number of corresponding to a given livetime (in sec).
This is similar to the -e option in our apps for accelerator-based experiments,
generating the number of events corresponding to a given data exposure unit
(here, proton on target) rather than generating a fixed number of events.
<span class="clsFContrib"> Contribution by Tony LaTorre (Chicago). </span>
<A href="https://github.com/GENIE-MC/Generator/pull/92">[GENIE pull request #92]</A>
</li>
<li> Automatically select flux surface radii when a detector geometry is specified in
the GENIE atmospheric neutrino event generation app.
<span class="clsFContrib"> Contribution by Tony LaTorre (Chicago). </span>
<A href="https://github.com/GENIE-MC/Generator/issues/83">[GENIE issue #83]</A>
<A href="https://github.com/GENIE-MC/Generator/pull/93">[GENIE pull request #93]</A>
</li>
<li> New options installed in GMCJDriver: Options to
a) always force an interaction of the input neutrino flux ray,
b) use logarithmic binning in the histogram that records the maximum possible interaction
probability, as a function of neutrino energy, in the current MC job, and
c) change the safety factor applied in the estimated maximum interaction probabilities
when rejection sampling is used.
<span class="clsFContrib"> Contribution by Alfonso Garcia (NIKHEF)</span>.
<A href="https://github.com/GENIE-MC/Generator/pull/75">[GENIE pull request #75]</A>
</li>
<li> Added the option to use variable bin width flux histograms in the
T2K and FNAL (applicable to all FNAL experiments) specialised event generation apps.
Previously, this option for histogram-based flux descriptions existed in the generic event generation app
but was left out of the more specialised apps, since the power of these apps is exploited by providing
detailed ntuple-based flux descriptions produced by beamline simulations.
This update improves these specialised apps for users who wish to use them with simpler flux descriptions.
<A href="https://github.com/GENIE-MC/Generator/pull/124">[GENIE pull request #124]</A>
</ul>
Other improvements / bug fixes:
<ul>
<li> Bug fix: Fix an issue with electron (anti)neutrino scattering on Helium.
The Smith-Monitz model (like any other RFG model) is not applicable to Helium,
and cross-section calculation code was crashing. An ad hoc solution was implemented.
<A href="https://github.com/GENIE-MC/Generator/pull/107">[GENIE pull request #107]</A>
</li>
<li> Bug fix: Fixed two bugs with signs used in the Berger-Sehgal and Kuzmin-Lyubushkin-Naumov
resonance models. The fix was installed for clarity and it has no effect,
as the wrong signs were cancelling each other out.
<A href="https://github.com/GENIE-MC/Generator/pull/107">[GENIE pull request #107]</A>
</li>
<li> Bug fix: Added code to handle P33(1600) in the GENIE event generation modules. The P33(1600) resonance
(a 4-star resonance in 2019 PDG) was added in the GENIE v3 cross-section calculations but,
due to missing resonance data, the resonance was ignored during event generation.
In versions affected by this bug, P33(1600) is added as a "Rootino" (pseudo-particle PDG code = 0)
and its decay is not simulated.
<A href="https://github.com/GENIE-MC/Generator/pull/65">[GENIE pull request #65]</A>
</li>
<li> Bug fix: Fixed a mistake in BaryonResonanceDecayer::IsHandled() (returned input PDG code, as opposed
to the correct boolean flag).
</li>
<li> Bug fix: Installed a fix in AGCharm2019 hadronizatiom model, allowing the production of charmed-mesons
(D+, D_s and D0) above a previously existing cutoff value of 100 GeV.
<span class="clsFContrib">
Issue reported by Emircan Elikkaya and Murat Ali Guler (METU) of the SHiP experiment. </span>
<A href="https://github.com/GENIE-MC/Generator/issues/77">[GENIE issue #77]</A>
</li>
<li> Bug fix: Fixed a mistake in a Jacobean used in the Rosenbluth cross-section calculation.
The bug affects the GENIE electron scattering mode only.
<A href="https://github.com/GENIE-MC/Generator/pull/121">[GENIE pull request #121]</A>
</li>
<li> The time coordinate of all particles in the event record (time increments with respect
to the event vertex time) is now recorded.
A new convention was introduced: The particle time increments are given in ys (yocto-seconds / 1E-24 seconds).
The conventions for other relevant quantities given in the event record
remained unchanged (particle position increments in fm, event vertex coordinates in SI units).
<A href="https://github.com/GENIE-MC/Generator/pull/119">[GENIE pull request #119]</A>
</li>
<li> The correct space and time coordinates of the daughter particles produced in PYTHIA decays are now stored in the GENIE event record.
Previously, the coordinates of the daughter particles were set to be the ones of the mother particle.
<A href="https://github.com/GENIE-MC/Generator/pull/119">[GENIE pull request #119]</A>
</li>
</ul>
Other comments:
<ul>
<li> Now supports C++14 (previously C++98) </li>
<li> Dropped support for ROOT5 </li>
<ul>
</ul>
</div>
</div>
<br />
<div id="ReleaseTableHeader2">
<b>Version: 3.0.6 </b>
<br />
<small>
Tag: R-3_00_06,
Released: 23 July 2019,
Status: <i class="clsFBlue">old</i>
</small>
<br />
<br />
<div id="ReleaseTableBody">
<b>Improvements over 3.0.4</b>
<br />
<ul>
<li> Correct handling of the hit nucleon radius during CCQE spline integration in v3.0.4.
This leads to an unphysical suppression of the CCQE total cross section at low energies
for all GENIE model sets that use a local Fermi gas model (the G18_10 series).
Other model sets are unaffected by this issue. More details about this problem are
available in a recent GENIE user forum talk
(<A href="https://genie-docdb.pp.rl.ac.uk/cgi-bin/ShowDocument?docid=129">GENIE doc-db 129</A>).
<li> Fix an error in the Jacobian used by the Rosenbluth EMQE cross section model.
See <A href="https://genie-docdb.pp.rl.ac.uk/cgi-bin/ShowDocument?docid=133">GENIE doc-db 133</A>.
<li> Various issues with EM reaction channels were fixed, e.g., a missing Jacobian in the EMRES channel.
See <A href="https://genie-docdb.pp.rl.ac.uk/cgi-bin/ShowDocument?docid=114">GENIE doc-db 114</A> and
<A href="https://genie-docdb.pp.rl.ac.uk/cgi-bin/ShowDocument?docid=120">GENIE doc-db 120</A>.
<li> Very minor problems (e.g., a spurious warning message) in gntpc and gevcomp apps.
</ul>
</div>
</div>
<br />
<div id="ReleaseTableHeader2">
<b>Version: 3.0.4 </b>
<br />
<small>
Tag: R-3_00_04,
Released: 12 April 2019,
Status: <i class="clsFBlue">old</i>
</small>
<br />
<br />
<div id="ReleaseTableBody">
<b>Improvements over 3.0.2</b>
<br />
<ul>
<li> Previously, Pauli blocking for quasielastic event was implemented as a suppression factor which was
computed analytically. The calculation was valid only for a Fermi Gas model. Pauli blocking is now
implemented in a more generic way, as a cut on the outgoing nucleon momentum, allowing for correct
calculation of the effect irrespectively of the assumed nucleon momentum distribution.
<li> Bug fix: Removal energy was ignored by the quasielastic event generator, which always put the struck
nucleon on the mass shell.</li>
<li> Bug fix: In the GENIE implementation of the Valenia model, an incorrect reference frame was used to compute
the contraction of the leptonic and hadronic tensors. </li>
<li> Bug fix: In the GENIE implementation of the Valenia model, a Coulomb correction was implemented only
as an overall scaling factor in the differential correction, an ignored the effect on the 3-momentum transfer.</li>
<li> Bug fix: In the quasielastic event generation, there was a single instance of Q<sup>2</sup> miscalculation
due to a mismatch of the reference frames of the neutrino and final-state primary lepton momentum 4-vectors.</li>
<li> Bug fix: In the GENIE implementation of the Valenia model, in the calculation of the Coulomb correction
through an integral over the nuclear volume, integration limits did not account for the A<sup>1/3</sup>
grow of the nuclear radius, resulting in a correction that was too small for heavy nuclei.</li>
<li> Bug fix: In the GENIE implementation of the Valenia model, explicit forms of the hadron tensors should be
evaluated in the lab frame with coordinates rotated so that the Coulomb-corrected 3-momentum transfer points
along the positive z direction. Previously, the Coulomb correction was not applied in the edge case where
the uncorrected 3-momentum transfer was pointing along the negative z direction. </li>
<li> Bug fix: Previously, in the new quasielastic event generator first included in v3,
Fermi motion was erroneously applied to free nucleon targets.
<li> Bug fix: Previously, Pauli blocking was erroneously applied in the simulation of
quasielastic charm production. </li>
<li> Bug fix: In the simulation of the Δ → N + π decay, the polar angle θ
was defined wrt to the z axis, rather than wrt to the direction of the momentum-transfer vector
in the Δ CM frame. </li>
<li> Bug fix: The invariant mass threshold for deep-inelastic events was inadvertently set to the
nucleon mass, when the corresponding threshold for resonance events was modified to allow simulation of
Δ → N + π decays below the pion production threshold.
The threshold for deep-inelastic events is now set back to the sum of the nucleon and pion masses.</li>
</ul>
<br />
Detailed technical note to be find at the GENIE Document Database:
<A href="https://genie-docdb.pp.rl.ac.uk/cgi-bin/ShowDocument?docid=113">GENIE doc-db 113</A>.
</div>
</div>
<br />
<div id="ReleaseTableHeader2">
<b>Version: 3.0.2 </b>
<br />
<small>
Tag: R-3_00_02,
Released: 09 December 2018,
Status: <i class="clsFBlue">old</i>
</small>
<br />
<br />
<div id="ReleaseTableBody">
<b>Improvements over 3.0.0</b>
<br />
<ul>
<li> </li>
</ul>
</div>
</div>
<br />
<div id="ReleaseTableHeader2">
<b>Version: 3.0.0 </b>
<br />
<small>
Tag: R-3_00_00,
Released: 10 October 2018,
Status: <i class="clsFBlue">old</i>
</small>
<br />
<br />
<div id="ReleaseTableBody">
We are pleased to announce a major new release, the first in more than a decade, and the start of the Bear series.
<br />
<br />
Release v3.0.0 <b>consolidates a series of physics modelling improvements</b> installed over the past 5 years.
It also represents a <b>major shift in philosophy</b>: Instead of a single "Default" model with optional
modelling elements that can be enabled by users, at own risk, GENIE now constructs, deploys and supports
<b>multiple comprehensive model configurations that run out the box</b>.
Special care was taken to combine models in a way that consistency
is ensured, double-counting is removed, and updated model parameter estimations are made to take into account
the impact of experimental constraints on the specific mixture of models in each given configuration.
Full characterization of comprehensive models and tunes is performed using detailed data/MC comparisons.
<br />
<br />
Between 2015-2018, GENIE implemented a <b>powerfull new global analysis of neutrino scattering data</b>.
The analysis relies on the <i>Comparisons</i> product, which includes <b>extensive curated archives of neutrino,
charged-lepton and hadron scattering data</b>, as well as highly-developed software to produce a
<b>comprehensive set of data/MC comparisons</b>. <i>Comparisons</i> includes <b>interfaces to the
<A href="https://professor.hepforge.org">Professor</A> tuning tool</b>
which "<i>reduces the exponentially expensive process of brute-force tuning to a scaling closer to a power
law in the number of parameters and allows for massive parallelisation</i>".
This enabled the generation of several new tunes, a selection of which was <b>fully integrated in the
<i>Generator</i> product</b> and was made available in GENIE v3.0.0
(see <A href="./tunes.html">here</A> for the current list of publicly available tunes).
Nuclear cross-section and hadronization tunes are ongoing and additional tunes
will be made available in future revisions.
<br />
<br />
The new release constitutes a major technical upgrade, with important modifications in the core framework,
in particular the configuration system, and a re-organization of the entire source tree.
Please also note that from v3.0.0, Reweight is distributed as a separate product in the family of the GENIE
products that also includes the Generator, Comparisons, and Tuning products.
<br />
<br />
Details for GENIE v3.0.0 and its new tunes will be made available in a near-future publications.
</div>
</div>
<br />
<br />
<h3><u>Past production release series:</u></h3>
<!--
*** *** *** *** *** *** AUK *** *** *** *** *** ***
-->
<div id="ReleaseTableHeader">
<IMG src="./images/release/auk_small.jpg" align="left" width="120px" hspace="10px">
<B> Auk production release series</B> <br />
<I class="clsReleaseTableHeaderSubtext">
A long series of <b>adiabatic improvements of the original GENIE physics model</b>,
with the gradual addition of sophisticated <b>tools for the experimental neutrino community</b>
allowing the simulation of complex experimental setups in full detail and the support generator-related analysis tasks.
Several new physics models were installed and made available in the Auk series as optional alternatives of the established
default model, and they will be fully deployed into future GENIE global/comprehensive model confifurations and tunes.
</I>
</div>
<br />
<div id="ReleaseTableHeader2">
<b>Version 2.12.10</b>
<br>
<small>
Tag: R-2_12_10,
Released: 19 February 2018,
Status: <i class="clsFGreen">pro</i>
</small>
<br>
<br>
<div id="ReleaseTableBody">
<b>Improvements over 2.12.8</b>
<br>
<br>Physics changes:</br>
<ul>
<li>`EmpiricalMEC-FracPN_NC`, `EmpiricalMEC-FracPN_CC` now directly specify the NP pair fraction, instead of being multiplied by another factor.</li>
<li>`EffectiveSF` no longer crashes when running on nucleons.</li>
</ul>
<br>FSI development model updates (not part of the default physics model):</br>
<ul>
<li>Save FSI model used (Intranuke2015) so that it can be cut on later.</li>
<li>Add suppression for low energy proton-proton collisions due to Coulomb interaction (hA2015, hN2015).</li>
<li>Disable binding energy corrections for low energy hadrons (caused a lot of errors) (hA2015, hN2015).</li>
<li>Add empirical cutoff for protons, neutrons at ~30 MeV (hN2015, A dependent) to suppressi events where all nucleons are emitted (temporary fix to hN2015).</li>
<li>Disable proton/neutron elastic scattering (hA2015).</li>
</ul>
<br>Non-physics changes:</br>
<ul>
<li>Improve the automatic detection of dependencies in the configure script.</li>
<li>Reorder library list for Apps (put low level libs first) for Mac OS X `bind_at_load`.</li>
<li>Applications using `genie::utils::app_init::XSecTable(inpfile)` now search `$GXMLPATH` for spline files ins the same way config XML files are found.</li>
<li>Resolve speed issues with `QELEventGenerator` from 2.12.8.</li>
<li>Adjust `NievesQE` code so that `max_xsec` is correct for more than 1 nucleus in a simulation.</li>
</ul>
</div>
</div> <!-- end: div id="ReleaseTableHeader2" for 2_12_10 -->
<br />
<div id="ReleaseTableHeader2">
<b>Version 2.12.8</b>
<br>
<small>
Tag: R-2_12_8 ,