-
Notifications
You must be signed in to change notification settings - Fork 2
/
ChangeLog
executable file
·4511 lines (2899 loc) · 141 KB
/
ChangeLog
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
==============================
12.05.14 Release CLHEP-2.1.4.2
==============================
2014-05-04 Lynn Garren <[email protected]>
* Random/test/testBug58950.cc: accept fix for bug 104289
2014-05-04 Lynn Garren <[email protected]>
* Matrix/src/Vector.cc: remove inline - no reason to use it in a cc file
2014-02-24 Lynn Garren <[email protected]>
* Vector, Random, Matrix: remove register declaration of ints and doubles
use of register is now redundant and ignored by modern compilers
* GenericFunctions, Geometry/test, Utility/test, Vector/test:
protect against warnings about variables that are used inside asserts
==============================
18.11.13 Release CLHEP-2.1.4.1
==============================
2013-11-18 Lynn Garren <[email protected]>
* Evaluator/src/setSystemOfUnits.cc: additional units to match Units
2013-11-14 Lynn Garren <[email protected]>
* Random/Random/Randomize.h: include RandExpZiggurat and RandGaussZiggurat
* configure.ac: change for unsupported Darwin build with autotools
==============================
05.11.13 Release CLHEP-2.1.4.0
==============================
2013-11-04 Lynn Garren <[email protected]>
* Random/test: make sure all output streams have unique names
* Random/RandGaussZiggurat - abs type correctness
2013-10-31 Lynn Garren <[email protected]>
* Random/src/RandGaussZiggurat.cc - fix potential shadowing issue
* Random/src/RandExpZiggurat.cc - fix potential shadowing issue
* Units/Units/SystemOfUnits.h: adding definitions for curies
* Units/test/testUnits.cc: use the same M_PI logic as found elsewhere
* clhep-config: fix for OSX
* cmake/Modules/ClhepBuildTex.cmake: don't try to install a file that has not been created
2013-09-26 Lynn Garren <[email protected]>
* Random: including RandGaussZiggurat and RandExpZiggurat
2013-01-11 Lynn Garren <[email protected]>
* Matrix: change the names of more internal variables so -Wshadow does not complain
==============================
14.11.12 Release CLHEP-2.1.3.1
==============================
2012-11-14 Lynn Garren <[email protected]>
* Vector: clean up naming overlap between Units and internal variables
==============================
06.11.12 Release CLHEP-2.1.3.0
==============================
2012-11-08 Lynn Garren <[email protected]>
* creation of symbolic links now respects DESTDIR
2012-09-06 Joe Boudreau <[email protected]>
* MATRIX/DiagMatrix, MATRIX/GenMatrix, MATRIX/SymMatrix:
Added two methods to [-,Diag,Sym]Matrix to carry out the matrix
inversion without the users needing to provide an ierr flag.
These methods are all inline and called invert() and inverse(),
so they overload the existing inversion routines for the relevant class.
If an error occurs, then an std::runtime_error is thrown.
2012-08-22 Lynn Garren <[email protected]>
* clhep-config: fix for Mountain Lion
==============================
16.08.12 Release CLHEP-2.1.2.5
==============================
2012-08-15 Lynn Garren <[email protected]>
* GenericFunctions: latest changes from Joe Boudreau
* GenericFunctions: change the names of internal variables so -Wshadow does not complain
2012-08-14 Lynn Garren <[email protected]>
* cmake/Modules: use OUTPUT_STRIP_TRAILING_WHITESPACE with execute_process commands
* CMakeLists.txt, cmake/Modules: enable -DLIB_SUFFIX=64
2012-08-07 Lynn Garren <[email protected]>
* Vector/LorentzVector.h: make the HepLorentzVector(double t) constructor explicit
==============================
09.07.12 Release CLHEP-2.1.2.4
==============================
2012-07-09 L. Garren <[email protected]>
* cmake/Modules: enclose CMAKE_COMMAND in quotes when inside execute_process
* test shell scripts: make sure any paths are enclosed in quotes
2012-06-25 L. Garren <[email protected]>
* cmake/Modules: Use newer execute_process instead of exec_program
Try to cope with special characters in path
==============================
31.05.12 Release CLHEP-2.1.2.3
==============================
2012-05-31 Lynn Garren <[email protected]>
* Random: fix for shadowing when global units used
* Vector: fix for shadowing when global units used
USING_VISUAL code blocks are no longer needed
2012-05-30 Lynn Garren <[email protected]>
* GenericFunctions: latest changes from Joe Boudreau
* Matrix: cleanup for -Wextra
2012-05-11 Lynn Garren <[email protected]>
* Vector, Evaluator, Random, Geometry: use explicit std:: with math functions
==============================
14.02.12 Release CLHEP-2.1.2.2
==============================
2012-02-14 L. Garren <[email protected]>
* cmake/Modules/ClhepVariables.cmake:
make sure config files are executable
add clhep_package_config_no_lib()
==============================
06.02.12 Release CLHEP-2.1.2.1
==============================
2012-02-03 Lynn Garren <[email protected]>
* Random/src/Ranlux64Engine.cc: use a template to get rid of the warnings
2012-02-02 Lynn Garren <[email protected]>
* GenericFunctions/GenericFunctions/ClassicalSolver.hh: make destructor virtual
* GenericFunctions/src/PhaseSpace.cc: fix typo,
GenFun::Variable index() returns unsigned int, not double
* GenericFunctions/src/InterpolatingPolynomial.cc: deal with int comparison
2012-02-02 Lynn Garren <[email protected]>
* Vector, Geometry, Random, Matrix, Exceptions :
change the names of internal variables so -Wshadow does not complain
2012-01-31 Lynn Garren <[email protected]> and Mark Fischler <[email protected]>
* Evaluator/src/Evaluator.cc: fix a problem with unary +/- and exponentials
* Evaluator/test/testBug90848.cc: new test for bug #90848
==============================
16.12.11 Release CLHEP-2.1.2.0
==============================
2011-12-15 Lynn Garren <[email protected]>
* cmake is now the preferred build option
* building with autotools and configure is deprecated
* you MUST use cmake when building with clang and other exotic compilers
* various improvements to the cmake build from Ben Morgan (Warwick)
* to build documents, call cmake with -DCLHEP_BUILD_DOCS=ON
* lib/CLHEP-<version> contains cmake files for use by find_package
* lib/pkgconfig contains clhep.pc
==============================
29.07.11 Release CLHEP-2.1.1.0
==============================
2011-07-12 Lynn Garren <[email protected]>
* cmake/Templates/ClhepVersion.h.in: cmake template for ClhepVersion.h
2011-07-11 Lynn Garren <[email protected]>
* CMakeLists.txt: adding the ability to build with cmake
* cmake/Modules: utility macros for cmake
2011-06-06 Lynn Garren <[email protected]>
* clhep-config: Since the clhep installation may have been relocated,
use the full path to clhep-config to get the install prefix.
Note that this presumes that bin, lib, and include are all under
the same $prefix.
2011-05-27 Mark Fischler <[email protected]> and Lynn Garren <[email protected]>
* Random/Random/RandSkewNormal.h, Random/Random/RandSkewNormal.icc,
Random/src/RandSkewNormal.cc: An implementation of the Azzalini
skew-normal distribution, as requested in bug #75534
==============================
11.11.10 Release CLHEP-2.1.0.1
==============================
2010-10-25 Lynn Garren <[email protected]>
* Random/Random/NonRandomEngine.h, Random/Random/RandomEngine.h,
Random/Random/RandomEngine.icc, Random/src/RandomEngine.cc: minor
changes to avoid compilation warnings when using the -W flag
2010-10-21 Mark Fischler <[email protected]> and Lynn Garren <[email protected]>
* Random/src/Ranlux64Engine.cc: fix problem with random numbers when
seed is greater than 32bits
* Random/test/testBug73093.cc: test for the Ranlux64Engine problem
==============================
23.07.10 Release CLHEP-2.1.0.0
==============================
2010-07-23 Lynn Garren <[email protected]>
* renamed configure.in to configure.ac in all packages
2010-07-22 Lynn Garren <[email protected]>
* GenericFunctions/src/AnalyticConvolution.cc:
replace finite with std::isfinite (for MacOSX)
use _finite from float.h if _WIN32 (for VC++)
2010-06-30 Lynn Garren <[email protected]>
* Random/src/Hurd160Engine.cc, Hurd288Engine.cc: deal with an
undefined order of execution warning reported by gcc 4.5
2010-06-29 Mark Fischler <[email protected]>
* Evaluator/src/Evaluator.cc: Improve the logic so that unary plus
and minus work as expected. See bug report #66214.
2010-06-28 Lynn Garren <[email protected]>
* Evaluator/Evaluator/Evaluator.h: Add error_name() method to
return the error as a string
* Evaluator/test/testBug66214.cc: Test unary operator bug (report #66214)
2010-06-23 Mark Fischler <[email protected]> and Lynn Garren <[email protected]>
* Random/Random/RanecuEngine.h: add a private method (see below)
* Random/src/RanecuEngine.cc: Modify constructor and setSeed to utilize all
info provided and avoid coincidence of same state from different seeds
* Random/test/testRanecuSequence.cc: test for repeating sequences
2010-03-09 Lynn Garren <[email protected]>
* GenericFunctions/src/RKIntegrator.cc:
Add parentheses to fix a VC++ warning
==============================
16.06.10 Release CLHEP-2.1.0.0.b01
==============================
2009/06/26 boudreau
* GenericFunctions/src/AnalyticConvolution.cc:
add protection to gauss and exp
2008/11/19 boudreau
* GenericFunctions/GenericFunctions/CutBase.icc: fix compiler warnings
2007-01-23 boudreau
* GenericFunctions/src/AnalyticConvolution.cc: patch for sigma=0
2007/01/21 boudreau
* GenericFunctions/GenericFunctions/AbsFunction.hh:
use new ParameterComposition
* GenericFunctions/GenericFunctions/Bessel.icc:
bug fix (remove extra "inline")
* GenericFunctions: added Airy.hh Gamma.hh GammaDistribution.hh
KroneckerDelta.hh Legendre.hh ParameterComposition.hh
SymToArgAdaptor.hh
==============================
11.06.10 Release CLHEP-2.0.5.0.b01
==============================
2010-06-11 Lynn Garren <[email protected]>
* CLHEP now uses the LGPL license.
* Matrix: inline virtual functions are now only virtual and not inline
2010-04-29 Lynn Garren <[email protected]>
* Random now depends on Utility
2010-03-19 W. E. Brown <[email protected]>
- New package Utility, inspired by useful bits of C++0X and Boost
2009-08-25 Lynn Garren <[email protected]>
* Vector/ThreeVector: Each constructor possibility is now a separate
instance to avoid confusion if Hep3Vector is in the constructor of
another function.
==============================
09.03.10 Release CLHEP-2.0.4.6
==============================
2010-03-09 Lynn Garren <[email protected]>
* GenericFunctions/src/RKIntegrator.cc:
Add parentheses to fix a VC++ warning
2010-03-08 Mark Fischler <[email protected]> and Lynn Garren <[email protected]>
* Random/src/RandEngine.cc: Cast RAND_MAX to unsigned long to avoid
gcc 4.4 warnings.
* Random/src/RanecuEngine.cc: Fix a bug introduced in 2.0.4.5/1.9.4.5
which resulted in the inability to rollback the random state.
* Random/test/testBug58950: test rolling back the random state
==============================
08.12.09 Release CLHEP-2.0.4.5
==============================
2009-12-07 Lynn Garren <[email protected]>
* Random/test/testBug58950.cc: test for the 64bit bug
2009-12-01 Mark Fischler <[email protected]> and Lynn Garren <[email protected]>
* Random/src/RanecuEngine.cc: Negative seeds are not allowed. In the past,
negative seeds were ignored, resulting in a reproducable sequence.
Instead, we now use the absolute value of any negative seeds.
2009-12-01 Mark Fischler <[email protected]> and Lynn Garren <[email protected]>
* Random/Random/RanecuEngine.h, Random/src/RanecuEngine.cc: define
maxSeq as a static const int since it contains the size of an array
* Random/src/RanecuEngine.cc: ensure that all seeds are in the expected 32bit range.
==============================
12.11.09 Release CLHEP-2.0.4.4
==============================
2009-11-10 Lynn Garren <[email protected]>
* GenericFunctions/src/Gaussian.cc, BivariateGaussian.cc, PtRelFcn.cc,
TrivariateGaussian.cc: protect against M_PI in cmath
* Matrix/test/testBug7328.cc: allow for heap collection before testing
* Matrix/configure.in, Matrix/test/Makefile.am: finer control over testBug7328
* Exceptions/test/exctest2.cc, exctest3.cc: improve ansi compliance
2009-11-04 Lynn Garren <[email protected]>
* GenericFunctions/GenericFunctions/Bessel.icc, EllipticIntegral.icc:
replace math.h with cmath
==============================
03.11.09 Release CLHEP-2.0.4.4.b01
==============================
2009-11-03 Lynn Garren <[email protected]>
* */src/Makefile.am: use -L<path> -l<library> for dependencies
2009-08-25 Lynn Garren <[email protected]>
* configure.in, */configure.in: remove old -lcxa -lunwind icc flags
==============================
04.07.09 Release CLHEP-2.0.4.3
==============================
2009-06-30 Lynn Garren <[email protected]>
* configure.in, */configure.in, */src/Makefile.am: Make sure that
the shared library build picks up package dependencies.
==============================
18.11.08 Release CLHEP-2.0.4.2
==============================
2008-11-18 Lynn Garren <[email protected]>
* Random/test/testVectorSave.cc: Add a test for bug #44156
* clhep-config.in, */*-config.in: get rid of undefined symbols
2008-11-13 Mark Fischler <[email protected]>
* Random/src/engineIDulong.cc: Fix problem that caused check for proper
engine type to fail where an unsigned long is 64bits. (bug #44156)
* Random/src/*Engine.cc: make sure that existing stored engine states
don't break due to the change in engineIDulong.cc
==============================
04.11.08 Release CLHEP-2.0.4.1
==============================
2008-11-04 Lynn Garren <[email protected]>
* Units/PhysicalConstants.h: update Avogadro, h_Planck, electron_mass_c2,
proton_mass_c2, amu_c2, and k_Boltzmann to PDG 2008 values
* Units/SystemOfUnits.h: update e_SI to PDG 2008 value
* Units.tex: update for modern LaTeX
==============================
07.08.08 Release CLHEP-2.0.4.0
==============================
2008-08-06 Lynn Garren <[email protected]>
* configure.in, Makefile.am, build-header.in: automatically
create ClhepVersion.h during the build proceedure
Version information is available as integers and the full string.
2008-07-17 Lynn Garren <[email protected]>
* various changes in Random to keep gcc 4.3 happy
2008-07-16 Lynn Garren <[email protected]>
* Matrix/src/SymMatrix.cc, Matrix.cc, DiagMatrix.cc, MatrixLinear.cc:
Iterators were set to a nonexistent memory location in many places.
Even though the iterators were not used, this operation is not allowed
and causes problems with the newer VC++ compilers.
In some cases, a more efficient rewrite was possible.
==============================
01.05.08 Release CLHEP-2.0.3.3
==============================
2008-05-01 Lynn Garren <[email protected]>
* */test/Makefile.am: use "/Fo$@" instead of "-o $@" for Visual C++
2008-04-30 Lynn Garren <[email protected]>
* configure.in: VC++ compiler flag -GX is replaced by -EHsc
icc compiler flag -mp is replaced by -fp-model precise
remove KCC from list of C++ compilers
2008-04-29 Lynn Garren <[email protected]>
* Units/PhysicalConstants.h: update h_Planck, electron_mass_c2,
proton_mass_c2, neutron_mass_c2, and amu_c2 to PDG 2006 values
* Units/SystemOfUnits.h: update e_SI to PDG 2006 value
==============================
18.10.07 Release CLHEP-2.0.3.2
==============================
2007-10-18 Mark Fischler <[email protected]>
* RandPoissonQ.cc: Change fire(mena) to call
shoot(theLocalEngine(),mean) instead of
shoot(mean), which had caused "cross-talk" between
modules that should not have affected eah other.
==============================
15.11.06 Release CLHEP-2.0.3.1
==============================
2006-11-15 Lynn Garren <[email protected]>
* configure.in: change ordering of possible C++ compilers so that
g++ remains the default compiler if icc is in the path
==============================
18.10.06 Release CLHEP-2.0.3.0
==============================
2006-10-13 Lynn Garren <[email protected]>
* configure.in: build only static libraries when using gcc with cygwin
2006-10-05 Lynn Garren <[email protected]>
* configure.in: add flags for the Intel compiler (icc)
2006-09-29 Lynn Garren <[email protected]>
* configure.in. Makefile.am: stop building HepMC, HepPDT, and StdHep
==============================
20.06.06 Release CLHEP-2.0.2.3
==============================
2006-05-17 Lynn Garren <[email protected]>
* configure.in: add support for g++4
2006-05-14 Andreas Pfeiffer <[email protected]>
* configure.in: add changes from Gabriele Cosmo for MacOSX
==============================
21.11.05 Release CLHEP-2.0.2.2
==============================
2005-11-21 Lynn Garren <[email protected]>
* Makefile.am: Library for Windows Visual C++ is named CLHEP.lib.
2005-11-17 Lynn Garren <[email protected]>
* configure.in: Remove check for sstream so Windows will not generate
spurious complaint.
Remove HepPDT/StringStream.h. Remove Cast/StringStream.h.
2005-11-14 Lynn Garren <[email protected]>
* Vector/RotationInterfaces.h: Instantiate private destructors so that
dictionary builders will not complain.
2005-11-04 Lynn Garren <[email protected]>
* HepPDT/addEvtGenParticles.cc: Bug fix
2005-11-03 Lynn Garren <[email protected]>
* Vector/configure.in, LorentzVector.icc
Provide a flag to enable code differences when compiling with
Visual C++.
2005-10-20 Lynn Garren <[email protected]>
* HepPDT/CommonParticleData.icc: Bug fix - low and high cutoffs
for the width were not being saved.
* Also write out cutoffs.
2005-07-27 Lynn Garren <[email protected]>
* HepPDT/convertTemporaryMap.icc: Fill DecayData properly.
Also get proper particle names when parsing PDG table.
==============================
22.06.05 Release CLHEP-2.0.2.1
==============================
Wed Jun 22 2005 Andreas Pfeiffer <[email protected]>
* configure.in: changed soname to install_name for darwin targets,
dylibs still don't build properly on 10.3/10.4, static libs ok.
2005-06-19 Lynn Garren <[email protected]>
* configure.in, Makefile.am:
Use lib when building Visual C++ libraries.
Disable shared library build for Solaris CC.
==============================
22.04.05 Release CLHEP-2.0.2.0
==============================
Fri Apr 22 2005 Andreas Pfeiffer <[email protected]>
* configure.in: changed flags for building dynamic libs on Mac OS X
still problems building them for OS X 10.3, to be checked on 10.4
prepared for tagging release 1.9.2.0
Thu Apr 7 2005 Lynn Garren <[email protected]>
* configure.in: set AR and ARFLAGS
2005-03-15 Lynn Garren <[email protected]>
* examples are now installed
2005-03-15 Mark Fischler <[email protected]>
* engineIDulong.cc, engineIDulong.h
DoubConv.cc, DoubConv.h
EngineFactory.cc, ranRestoreTest.cc
all Random Engine classes
Add put() and get() methods to every engine transfering state to a
vector of unsigned longs.
Thu Mar 10 2005 Andreas Pfeiffer <[email protected]>
* Geometry/BasicVector3D.h : added operator to convert to Hep3Vector
for backward compatibility (savannah bug id 6740)
* Geometry/config.in, Geometry/test/testBug6740.cc, Geometry/test/testBug6740.sh,
Geometry/test/testBug6740.output, Geometry/test/Makefile.am: added test for bug ID 6740
2005-02-14 Mark Fischler <[email protected]>
* JamesRandom.cc
Check that seed is non-negative.
Negative seeds give terrible sequences.
2005-02-11 Mark Fischler <[email protected]>
* RandPoissonQ.cc RandPoissonT.cc RandomEngine.cc
Added missing implementations, per bug # 1806
(FireArray(), shootArray(), getTableSeeds)
2005-03-15 Mark Fischler <[email protected]>
* SymMatrix.cc, testBug7328.cc
Repair of bug 7328, a memory leak encountered when inverting symmetric
matrices above the size of 6x6.
2005-02-25 Mark Fischler <[email protected]>
* Matrix.cc, testBug6181.cc
Repair of bug 6181, a serious error in inverting matrices above the
size of 6x6.
2005-02-18 Lynn Garren <[email protected]>
* configure.in, Makefile.am: Stop using libtool.
The newer releases of libtool seem to have dropped support for
Windows Visual C++.
2005-02-14 Lynn Garren <[email protected]>
* */configure.in: Visual C++ flags are now "-EHsc -nologo -GR -GX -MD"
2005-02-03 Lynn Garren <[email protected]>
* configure.in: install step creates libCLHEP.a, libCLHEP.so,
and/or libCLHEP.dylib by adding a symbolic link.
* HepMC/GenParticle.h: define HepMC::GenParticle::setParticleID
* HepPDT: define HepPDT::QQDecayTable::writeTable,
HepPDT::QQChannel::write, and HepPDT::QQDecay::write
2005-02-02 Andreas PFEIFFER <[email protected]>
* */configure.in: modified compiler flags for windows:
added "-O -GR -GX -MD" as this is needed for the multi-thread
environments used.
2005-02-01 Lynn Garren <[email protected]>
* config: remove HEP_CC_NEED_SUB_WITHOUT_CONST from config/CLHEP.h.
HEP_CC_NEED_SUB_WITHOUT_CONST has been defined to 1 in all cases for
a long time.
* Matrix: remove HEP_CC_NEED_SUB_WITHOUT_CONST ifdefs
2005-02-01 Andreas PFEIFFER <[email protected]>
* Geometry/Geometry/BasicVector3D.h : changed template specialisations for
multiplication of vector<float> with scalar and division of vector<float>
by scalar to use float scalars instead of double (savannah bug id 6523)
2005-01-31 Andreas PFEIFFER <[email protected]>
* Matrix/src/Matrix.h: fixed error in sub(int, int, int, int), savannah
bug id 6176, added corresponding files (testBug6176*) in test/,
updated Makefile.am accordingly to generate tests.
Mon Dec 27 2004 Mark Fischler <[email protected]>
* *.cc and .h for all the engine classes.
* Random.cc EngineFactory.cc StaticRandomStates.cc
Ability to restore engines and distributions without knowing in
the restoring program which type of engine was used in the saving
program.
Wed Dec 22 2004 Mark Fischler <[email protected]>
* Random.h StaticRandomState.h Random.cc StaticRandomState.cc
Added HepRandom::saveStaticRandomState(ostream) and restore to istream.
Mon Dec 20 2004 Mark Fischler <[email protected]>
* Random.h RandGauss.h RandFlat.h RandFlat.icc RandBit.h
Random.cc RandGauss.cc RandFlat.cc
Added static methods for save/restore to streams.
Thu Dec 16 2004 Mark Fischler <[email protected]>
* Random/*.cc for all engines and distributions.
* Random/test/ranRestoreTest.cc
Added put and get methods, as well as ostream operations, so that
engine and distribution instances can be saved and restored to/from
streams.
Thu Dec 16
Wed Dec 15 2004 Mark Fischler <[email protected]>
* RandPoissonQ.cc (RandPoissonT.cc)
RandPoissonQ has a path, potentially taken when mean is more
than 100, where an additional gaussian random number is needed.
Instead we use the engine owned by the RandPoissonQ instance.
This will affect in rare cases the values of random variates
delivered by **instances** (not the shoot() methods) of RandPoissonQ
and RandPoissonT.
Thu Dec 16
Tue Dec 14 2004 Mark Fischler <[email protected]>
* RandGeneral.cc
Modify local variable theIntegralPdf, using a std::vector instead
of a double* pointing to a new-ed array. No behavioral change.
Thu Dec 16
Fri Dec 3 2004 Mark Fischler <[email protected]>
* Random/*.cc for all engines
* Random/test/ranRestoreTest.cc
Modified engines and additional-state distributions so that
restoreENgineState behaves better (error message and return
instead of hang up) when file requested is not found.
==============================
30.11.04 Release CLHEP-2.0.1.2
==============================
Tue Nov 30 2004 Andreas Pfeiffer <[email protected]>
* Geometry/Plane3D.h: replaced wrong <float> by <T> in
Point3D<T> point(const Point3D<float> & p) const {
Mon Nov 29 2004 Mark Fischler <[email protected]>
* In LorentzVectorC.cc, in deltaR, fixed to use pp.deltaRPhi(w.getV())
Mon Nov 29 2004 Lynn Garren <[email protected]>
* Vector/src: add missing implemetations
Fri Nov 26 2004 Andreas Pfeiffer <[email protected]>
* HepMC/doc/Makefile.in: add -o option to dvips, otherwise it
prints on some systems
==============================
27.10.04 Release CLHEP-2.0.1.1
==============================
Wed Oct 27 2004 Andreas Pfeiffer <[email protected]>
* Geometry/BasicVector3D.h: made dtor virtual as this is a base class
* Geometry/Transform3D.h: added virtual dtor for persistency. This may go away in later releases.
Fri Sep 24 2004 Lynn Garren <[email protected]>
* use AM_CXXFLAGS
* require autoconf 2.59, automake 1.9.1, and libtool 1.9b
* Matrix: remove unnecessary copy and disable allocator
Tue Aug 31 2004 Lynn Garren <[email protected]>
* change Solaris CC compile flags from "-O -mt" to "-O"
* libtools 1.9b or later is required for Solaris CC
==============================
23.07.04 Release CLHEP-2.0.1.0
==============================
Fri Jul 23 2004 Lynn Garren <[email protected]>
* remove obsolete Utilities from 2.0 to avoid confusion
* more changes for Solaris tests
* HepPDT version is 1.01.00
* HepPDT: access ParticleData information by name (std::string)
Wed May 19 2004 Lynn Garren <[email protected]>
* HepPDT: fix bugs in translation
* HepPDT: add translation tests
* a couple of miscellaneous changes for Solaris
==============================
11.05.04 Release CLHEP-2.0.0.2
==============================
Tue May 11 2004 Lynn Garren <[email protected]>
* tagged for CLHEP 2.0.0.2 (CLHEP_2_0_0_2)
* library version changed to 2.0.0.2
Tue May 11 2004 Lynn Garren <[email protected]>
* HepMC 1.25 changes merged with CLHEP/HepMC
* HepMC/HepMC/CBhepevt.icc: include stdio.h
* HepMC/HepMC/CBherwig.icc: include stdio.h
note that CLHEP/HepMC already had the most important change to use
std::iterator<std::forward_iterator_tag,GenParticle*,ptrdiff_t>
Tue May 11 2004 Mark Fischler <[email protected]>
* RandPoissonT.cc
* RandPoissonQ.cc
Repaired misbehavior when mean is precisely 100.0 in these routines.
Thu Apr 29 2004 Mark Fischler <[email protected]>
* LorentzVectorK.cc
Modified behavior when rapidity of a light-like vector moving
in the -z direction is taken. Previously, would have tried to take
log(0.0).
Thu Apr 29 2004 Mark Fischler <[email protected]>
* RandEngine.cc
* RandEngine.h
Code to accomodate possible systems where RAND_MAX is not
one fo the two "expected" values of 2**15-1 or 2**31-1.
Wed Apr 28 2004 Lynn Garren <[email protected]>
* make CLHEP work with Visual C++
Wed Apr 21 2004 Lynn Garren <[email protected]>
* change version to CLHEP 2.0.0.1
* fix Herwig and Isajet translation routines in HepPDT
add translation checking tests
Thu Nov 06 2003 Lynn Garren <[email protected]>
* adding ZOOM Exceptions package for FNAL
* adding supporting RefCount and Cast packages
Fri Oct 24 2003 Lynn Garren <[email protected]>
* tagged for CLHEP 2.0.0.0
* backwards compatibility code disabled
Thu Oct 23 2003 Lynn Garren <[email protected]>
* tagged for CLHEP 1.9.0.0
* backwards compatibility code enabled
Fri Oct 10 2003 Mark Fischler <[email protected]>
* ZMxpv.h and ZMxpv.cc
Modified the ZZMthrowA and ZMthrowC macros such that the package
never calls exit(), throwing an exception instead. Existing code
in entire package was already instrumented to throw the various
exceptions.
* Boost.h and Boost.icc and Boost.cc
Correct a typo in Boost::vectorMutiplication() [that is, boost*4vector].
This affected off-axis boosts applied to a LorentzVector when the
x- and/or y- components of both the Boost and the LorentzVector are
not small. Boosts in the z-direction are unaffected and Boosts
dominantly in the z-direction suffered only second-order effects.
Repair a bug in LorentzVector::deltaR() which could return large
values when the phi values are close to + and - pi respectively,
for two vectors which are actually near each other.
Rectify misbehaviour when isNear() is taken between a specialized
or general Boost and a general LorentzRotation.
Supply output operator.
* BoostX.cc, BoostY.cc, BoostZ.cc
Rectify misbehaviour when isNear() is taken between a specialized
or general Boost and a general LorentzRotation.
Supply output operators.
* LorentzRotation.cc
Multiplication by specialized rotations
More efficient multiplicatio by a rotation
*LorentzVectorC.cc
Correction in isNear for two vectors both close to -Z axis.
* RotationE.cc
Methods to find EUler angles phi() and psi() now forgiving of
cos phi apparently slightly above 1 due to roundoff error.
Fri Oct 10 2003 Lynn Garren <[email protected]>
* HepMC 1.24 changes merged with CLHEP/HepMC
Tue Jul 22 17:40:39 CDT 2003 Lynn Garren <[email protected]>
* Alpha release of the CLHEP split
* Directory structure has changed
* Each package may be built either separately, or as part of CLHEP
Mon May 5 10:32:18 2003 Evgueni Tcherniaev <[email protected]>
* Geometry/BasicVector3D.h,Normal3D.h,Plane3D.cc,Plane3D.h,Point3D.h:
* Geometry/Transform3D.cc,Transform3D.h,Vector3D.h:
* Geometry/BasicVector3D.cc,Normal3D.cc,Point3D.cc (Added):
* Geometry/Transform3D.icc,Vector3D.cc (Added):
Template implementation of Point3D<T>, Vector3D<T> and Normal3D<T>.
* test/testBasicVector3D.cc:
* test/testBasicVector3D.input,testBasicVector3D.out.save:
New (rather complete) test for basic geometrical classes.
* test/Makefile.in:
Use diff -w to avoid problems on Windows.
Thu May 1 11:18:49 2003 Mark Fischler <[email protected]>
* Vector/RotationE.cc:
This modifies the eulerAngles() method to address a flaw
pointed out by A. Skiba: When the rotation matrix for a HepRotation
was slightly perturbed due to accumulated roud-off error, and the
rotation was very nearly but not exactly about the Z axis, the
Euler angles computed could be incorrect in the sense that
reconstructing a HepRotation from them would give a significantly
different rotation.
The new algorithm is much more numerically stable, and handles these
cases better.
* Vector/doc/eulerAngleComputation.tex:
This file gives mathematical detail of the problem and the algorithm
used to improve the numerical stability.
* Vector/test/eulerProb.cc,eulerTest.cc (Added):
The original program submitted by Skiba to exhibit numerical
instability in eulerAngles() method, and a program to significantly
excercise many different cases to verify that the improved method
does give accurate results in the difficult and easy cases.
Wed Jan 22 16:35:11 2003 Lynn Garren <[email protected]>
* HepMC/GenParticle.h,GenVertex.h:
* HepMC/particleHas.cc,particleNum.cc (Added):
* HepMC/vertexHas.cc,vertexNum.cc (Added):
added (by request) numChildren(), numParents(), hasChildren(),
and hasParents() methods to HepMC::GenVertex and HepMC::GenParticle.
* HepMC/GenParticle.cc:
don't attempt to print address of non-existent vertex pointer
* HepMC/examples/GNUmakefile: minor improvements
* HepMC/examples/testMethods.cc: testing new utility methods
* HepMC/doc/HepMC_user_manual.ps: CLHEP revision
Tue Jan 14 10:30:44 2003 Lynn Garren <[email protected]>
* HepPDT/TableBuilderT.hh:
* HepPDT/examples/examMyPDT.cc: use map.erase
Wed Dec 4 13:45:54 2002 Lynn Garren <[email protected]>
* StdHep/printVersion.cc:
use string.h since the version must be accessable from C
Sun Nov 24 16:03:56 2002 Joe Boudreau <[email protected]>