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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181
|
==============================
12.10.23 Release CLHEP-2.4.7.1
==============================
==============================
29.09.23 Release CLHEP-2.4.7.0
==============================
==============================
08.02.23 Release CLHEP-2.4.6.4
==============================
==============================
19.12.22 Release CLHEP-2.4.6.3
==============================
2022-12-15 Gabriele Cosmo <Gabriele.Cosmo@cern.ch>
* Fixed cases of C++20 deprecated arithmetics with unnamed enumerations.
==============================
02.12.22 Release CLHEP-2.4.6.2
==============================
==============================
01.12.22 Release CLHEP-2.4.6.1
==============================
==============================
10.10.22 Release CLHEP-2.4.6.0
==============================
==============================
05.10.22 Release CLHEP-2.4.5.4
==============================
==============================
09.06.22 Release CLHEP-2.4.5.3
==============================
==============================
26.05.22 Release CLHEP-2.4.5.2
==============================
2022-03-10 Evgueni Tcherniaev <Evgueni.Tcherniaev@cern.ch>
* Fixed compilation warnings in LorentzRotation.h when c++20 is enabled.
==============================
31.08.21 Release CLHEP-2.4.5.1
==============================
==============================
30.08.21 Release CLHEP-2.4.5.0
==============================
==============================
28.05.21 Release CLHEP-2.4.4.2
==============================
==============================
19.01.21 Release CLHEP-2.4.4.1
==============================
==============================
09.11.20 Release CLHEP-2.4.4.0
==============================
==============================
09.11.20 Release CLHEP-2.4.3.0
==============================
==============================
09.11.20 Release CLHEP-2.4.2.0
==============================
2019-10-29 Guilherme Amadio <amadio@cern.ch>
* Get rid of switch statement in operator()/operator[] of Hep3Vector
* Replace dx/dy/dz with operator[] in Hep3Vector
Note: The substitution of x()/y()/z() in operator() is necessary to
avoid infinite recursion, as x()/y()/z() are now defined in terms of
operator[] instead.
* Replace private dx/dy/dz with public x()/y()/z() in Hep3Vector
This is in preparation to change the data layout of Hep3Vector
by replacing the private dx/dy/dz members with a vector, data[3],
to allow us to remove the inefficient switch from operator[]().
* Remove obsolete #pragma interface/implementation
These pragmas are obsolete since GCC 2.7.2.
https://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Interface.html.
==============================
21.10.19 Release CLHEP-2.4.1.3
==============================
==============================
20.06.19 Release CLHEP-2.4.1.2
==============================
==============================
19.06.19 Release CLHEP-2.4.1.1
==============================
==============================
11.06.18 Release CLHEP-2.4.1.0
==============================
* src/RotationA.cc: fix a Wshadow problem introduced in 2.3.4.4
==============================
16.03.18 Release CLHEP-2.4.0.4
==============================
==============================
15.03.18 Release CLHEP-2.4.0.3
==============================
==============================
15.02.18 Release CLHEP-2.4.0.2
==============================
==============================
11.12.17 Release CLHEP-2.4.0.1
==============================
==============================
22.11.17 Release CLHEP-2.4.0.0
==============================
==============================
18.09.17 Release CLHEP-2.3.4.5
==============================
==============================
21.03.17 Release CLHEP-2.3.4.4
==============================
2017-03-21 Lynn Garren <garren@fnal.gov>
* src/RotationA.cc:
fix for CLHEP-141 supplied by Evgueni Tcherniaev
* test/testRotationAxis.cc:
test for CLHEP-141 supplied by Evgueni Tcherniaev
==============================
30.11.16 Release CLHEP-2.3.4.3
==============================
==============================
23.11.16 Release CLHEP-2.3.4.2
==============================
==============================
22.11.16 Release CLHEP-2.3.4.1
==============================
==============================
18.11.16 Release CLHEP-2.3.4.0
==============================
==============================
26.08.16 Release CLHEP-2.3.3.2
==============================
==============================
21.06.16 Release CLHEP-2.3.3.1
==============================
==============================
31.05.16 Release CLHEP-2.3.3.0
==============================
==============================
22.04.16 Release CLHEP-2.3.2.2
==============================
==============================
19.04.16 Release CLHEP-2.3.2.1
==============================
==============================
10.11.15 Release CLHEP-2.3.1.1
==============================
==============================
03.11.15 Release CLHEP-2.3.1.0
==============================
==============================
09.07.15 Release CLHEP-2.3.0.0
==============================
==============================
12.06.15 Release CLHEP-2.2.0.8
==============================
==============================
27.05.15 Release CLHEP-2.2.0.6
==============================
==============================
10.02.15 Release CLHEP-2.2.0.5
==============================
==============================
21.11.14 Release CLHEP-2.2.0.4
==============================
2014-11-20 Lynn Garren <garren@fnal.gov>
* Vector/ThreeVector.icc: inline Hep3Vector::operator () (int i)
==============================
18.08.14 Release CLHEP-2.2.0.3
==============================
==============================
12.08.14 Release CLHEP-2.2.0.2
==============================
==============================
23.06.14 Release CLHEP-2.2.0.1
==============================
==============================
16.06.14 Release CLHEP-2.2.0.0
==============================
==============================
14.05.14 Release CLHEP-2.2.0.0.b01
==============================
==============================
14.11.14 Release CLHEP-2.1.4.3
==============================
==============================
12.05.14 Release CLHEP-2.1.4.2
==============================
2014-02-24 Lynn Garren <garren@fnal.gov>
* remove register declaration of doubles
use of register is now redundant and ignored by modern compilers
* test: protect against warnings about variables that are used inside asserts
==============================
14.11.13 Release CLHEP-2.1.4.1
==============================
==============================
05.11.13 Release CLHEP-2.1.4.0
==============================
==============================
14.11.12 Release CLHEP-2.1.3.1
==============================
2012-11-14 Lynn Garren <garren@fnal.gov>
* Vector/Rotation.icc: fix a bug introduced when trying to stop shadowing complaints
* RotationX, RotationY, RotationZ: change the names of internal variables to
avoid possible confusion with Units
(tested in a controlled environment to avoid introducing any bugs)
==============================
06.11.12 Release CLHEP-2.1.3.0
==============================
==============================
16.08.12 Release CLHEP-2.1.2.5
==============================
2012-08-07 Lynn Garren <garren@fnal.gov>
* LorentzVector.h: make the HepLorentzVector(double t) constructor explicit
==============================
09.07.12 Release CLHEP-2.1.2.4
==============================
==============================
31.05.12 Release CLHEP-2.1.2.3
==============================
2012-05-31 Lynn Garren <garren@fnal.gov>
* Vector, src: fix for shadowing when global units used
* Vector/LorentzVector.icc: USING_VISUAL code blocks are no longer needed
* test: include CLHEP/Units/GlobalSystemOfUnits.h in tests
2012-05-11 Lynn Garren <garren@fnal.gov>
* src, test: use explicit std:: with math functions
==============================
14.02.12 Release CLHEP-2.1.2.2
==============================
==============================
06.02.12 Release CLHEP-2.1.2.1
==============================
2012-01-31 Lynn Garren <garren@fnal.gov>
* change the names of internal variables so -Wshadow does not complain
==============================
16.12.11 Release CLHEP-2.1.2.0
==============================
==============================
29.07.11 Release CLHEP-2.1.1.0
==============================
==============================
11.11.10 Release CLHEP-2.1.0.1
==============================
==============================
23.07.10 Release CLHEP-2.1.0.0
==============================
==============================
16.06.10 Release CLHEP-2.1.0.0.b01
==============================
==============================
11.06.10 Release CLHEP-2.0.5.0.b01
==============================
2009-08-25 Lynn Garren <garren@fnal.gov>
* Vector/ThreeVector.h, Vector/ThreeVector.icc: 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
==============================
==============================
08.12.09 Release CLHEP-2.0.4.5
==============================
==============================
12.11.09 Release CLHEP-2.0.4.4
==============================
==============================
03.11.09 Release CLHEP-2.0.4.4.b01
==============================
==============================
04.07.09 Release CLHEP-2.0.4.3
==============================
==============================
18.11.08 Release CLHEP-2.0.4.2
==============================
==============================
04.11.08 Release CLHEP-2.0.4.1
==============================
==============================
07.08.08 Release CLHEP-2.0.4.0
==============================
==============================
01.05.08 Release CLHEP-2.0.3.3
==============================
==============================
18.10.07 Release CLHEP-2.0.3.2
==============================
==============================
15.11.06 Release CLHEP-2.0.3.1
==============================
==============================
18.10.06 Release CLHEP-2.0.3.0
==============================
==============================
20.06.06 Release CLHEP-2.0.2.3
==============================
==============================
21.11.05 Release CLHEP-2.0.2.2
==============================
2005-11-21 Lynn Garren <garren@fnal.gov>
* src/Makefile.am, test/Makefile.am: Build libraries for
Windows Visual C++ without lib prefix.
2005-11-14 Lynn Garren <garren@fnal.gov>
* RotationInterfaces.h: Instantiate private destructors so that
dictionary builders will not complain.
2005-11-03 Lynn Garren <garren@fnal.gov>
* configure.in, LorentzVector.icc
Provide a flag to enable code differences when compiling with
Visual C++.
==============================
22.06.05 Release CLHEP-2.0.2.1
==============================
Wed Jun 22 2005 Andreas Pfeiffer <andreas.pfeiffer@cern.ch>
* 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 <garren@fnal.gov>
* 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
==============================
2005-04-07 Lynn Garren <garren@fnal.gov>
* configure.in: set AR and ARFLAGS
2005-02-18 Lynn Garren <garren@fnal.gov>
* 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 <garren@fnal.gov>
* configure.in: Visual C++ flags are now "-EHsc -nologo -GR -GX -MD"
2005-02-03 Lynn Garren <garren@fnal.gov>
* configure.in: install step creates libCLHEP.a, libCLHEP.so,
and/or libCLHEP.dylib by adding a symbolic link.
2005-02-02 Andreas PFEIFFER <andreas.pfeiffer@cern.ch>
* configure.in: modified compiler flags for windows:
added "-O -GR -GX -MD" as this is needed for the multi-thread
environments used.
==============================
30.11.04 Release CLHEP-2.0.1.2
==============================
Mon Nov 29 2004 Mark Fischler <mf@fnal.gov>
* In LorentzVectorC.cc, in deltaR, replaced the direct subtraction
pp.phi() - w.getV().phi() with pp.deltaRPhi(w.getV()) which behaves
correctly across the 2pi boundary. This correction had been in
CLHEP 1.8.2 for some time.
Mon Nov 29 2004 Lynn Garren <garren@fnal.gov>
* add missing implemetations to BoostX.cc, BoostY.cc, BoostZ.cc,
RotationY.cc, and RotationZ.cc
==============================
27.10.04 Release CLHEP-2.0.1.1
==============================
Fri Sep 24 2004 Lynn Garren <garren@fnal.gov>
* use AM_CXXFLAGS
* require autoconf 2.59, automake 1.9.1, and libtool 1.9b
Tue Aug 31 2004 Lynn Garren <garren@fnal.gov>
* 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
==============================
==============================
11.05.04 Release CLHEP-2.0.0.2
==============================
==============================
11.05.04 Release CLHEP-1.9.0.2
==============================
Thu Apr 29 2004 Mark Fischler <mf@fnal.gov>
* 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).
==============================
21.04.04 Release CLHEP-2.0.0.1
==============================
Thu Nov 06 2003 Lynn Garren <garren@fnal.gov>
* adding ZOOM Exceptions package for FNAL
* adding supporting RefCount and Cast packages
==============================
24.10.03 Release CLHEP-2.0.0.0
==============================
==============================
23.10.03 Release CLHEP-1.9.0.0
==============================
Fri Oct 10 2003 Mark Fischler <mf@fnal.gov>
* 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.
Thu May 1 11:18:49 2003 Mark Fischler <mf@fnal.gov>
* 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.
==============================
01.06.02 Release CLHEP-1.8.0.0
==============================
Fri May 24 14:44:32 2002 Mark Fischler <mf@fnal.gov>
* Vector/Rotation.cc,RotationA.cc,RotationE.cc,RotationX.cc:
* Vector/RotationY.cc,RotationZ.cc:
Protection against taking acos(>1.0000) in cases where
roundoff has caused a matrix element to become greater than 1.
=========================================
25.04.02 revised StdHep uses HepMC
=========================================
Sun Mar 31 10:54:23 2002 Evgueni Tcherniaev <Evgueni.Tcherniaev@cern.ch>
* Global_Clean_Up:
The following macros have been removed from config/CLHEP-target.h.in
(the reason is indicated). Respectively checks for them have been
removed from configure.in:
HEP_HAVE_STL - all supported compilers have string, vector, ...
HEP_HAVE_BOOL - all supported compilers have bool
HEP_HAVE_NAMESPACE - all supported compilers have namespace
HEP_HAVE_EXPLICIT - all supported compilers have explicit
HEP_HAVE_TYPENAME - all supported compilers have typename
HEP_HAVE_EMPTY_TEMPLATE_PARAMETER_LIST
- all supported compilers have template<>
HEP_SQR_NEEDS_PARAMETER_WITHOUT_CONST
HEP_ABS_NEEDS_PARAMETER_WITHOUT_CONST
- current definition of sqr() and abs() works everywhere
HEP_QSORT_NEEDS_FUNCTION_WITH_EXTERN_C_LINKAGE - qsort() is not used
The following macros have been removed from config/CLHEP.h:
HepStdString
HepStdVector
HepStdList
HEP_TEMPLATE_SPECIALIZATION
HEP_BEGIN_NAMESPACE
HEP_END_NAMESPACE
HEP_USING_NAMESPACE
The following modifications have been made in the code:
HepStdString --> HepSTL::string
HepStdVector --> HepSTL::vector
HepBoolean --> bool
HepDouble --> double
HepFloat --> float
HepInt --> int
HEP_BEGIN_NAMESPACE(xxx) --> namespace xxx {
HEP_END_NAMESPACE(xxx) --> } // namespace xxx
=========================================
08.03.02 HepMC has become a part of CLHEP
=========================================
Wed Mar 6 09:37:58 2002 Mark Fischler <mf@fnal.gov>
* Vector/Boost.cc,Boost.h,Boost.icc,BoostX.cc,BoostX.h,BoostX.icc:
* Vector/BoostY.cc,BoostY.h,BoostY.icc,BoostZ.cc,BoostZ.h,BoostZ.icc:
* Vector/LorentzRotation.cc,LorentzRotation.h,LorentzRotation.icc:
* Vector/LorentzRotationC.cc,LorentzRotationD.cc:
* Vector/Rotation.cc,Rotation.h,Rotation.icc,RotationA.cc:
* Vector/RotationC.cc,RotationE.cc,RotationInterfaces.cc:
* Vector/RotationInterfaces.h,RotationInterfaces.icc,RotationL.cc:
* Vector/RotationP.cc,RotationX.cc,RotationX.h,RotationX.icc:
* Vector/RotationXYZ.cc,RotationY.cc,RotationY.h,RotationY.icc:
* Vector/RotationZ.cc,RotationZ.h,RotationZ.icc,ThreeVector.icc:
* Vector/TwoVector.icc:
Speeed enhancements by making Rotation completely non-polymorphic,
inlining everything that remotely seems appropriate, ordering
appearance of inline definitions such that the inlining is ot
defeated, and so forth.
This addresses the issue that R*v in CLHEP 1.7 was 3.5 times slower
than in CLHEP 1.6. They are now the same speed.
Tue Dec 4 08:31:13 2001 Mark Fischler <mf@fnal.gov>
* Vector/ZMinput.cc:
Helper methods to support flexible input formats.
Mon Dec 3 11:55:35 2001 Mark Fischler <mf@fnal.gov>
* Vector/ThreeVector.h,ThreeVector.icc:
Declaration of deltaPhi() and implementation of azimAngle in
terms of it.
Fri Nov 30 11:32:56 2001 Mark Fischler <mf@fnal.gov>
* Vector/AxisAngle.cc,Boost.icc,BoostX.icc,BoostY.icc,BoostZ.icc:
* Vector/EulerAngles.cc,LorentzRotation.icc,LorentzRotationC.cc:
* Vector/Rotation.icc,RotationA.cc,RotationC.cc,RotationE.cc:
* Vector/SpaceVectorD.cc,ThreeVector.cc,TwoVector.cc,TwoVector.h:
* Vector/TwoVector.icc:
- fix warnings about uninitialized base classes;
- correct behavior of deltaR() for vectors near but on
opposite sides of phi = - pi;
- correct azimangle and provide deltaPhi() method;
- set(x,y) for Hep2Vector;
- all classes that have operator>> can now accept
input in same form as operator<< generates output;
- return value if you take eta(zero vector) is zero
rather than 10^72;
==========================================
09.11.01 HepPDT has become a part of CLHEP
==========================================
Thu Aug 2 2001 Mark Fischler <mf@fnal.gov>
* Vector/Boost.icc:
Repair incorrect syntax in new error message code.
Fri Jul 27 2001 Mark Fischler <mf@fnal.gov>
* Vector/ThreeVector.h,ThreeVector.icc,ThreeVector.cc:
* Vector/AxisAngle.cc,Boost.cc,BoostX.cc,BoostY.cc,BoostZ.cc:
* Vector/EulerAngles.cc,LorentzRotationD.cc,LorentzVectorC.cc:
* Vetor/Rotation.cc,RotationE.cc,SpaceVectorP.cc,SpaceVectorR.cc:
NaN-proofed the package: At every place where there is a potential
division by zero or a function that could return a memeaningless
result or Not-A-Number, it is checked and an error message (via
ZMthrowA or ZMthrowC) is done if there is a problem. No silent NaN
generation.
* Vector/Boost.icc:
Rectify a misleading error message if ctor is supplied a 0 direction.
==============================
15.06.01 Release CLHEP-1.7.0.0
==============================
Mon Jun 11 10:20:35 2001 Evgueni Tcherniaev <Evgueni.Tcherniaev@cern.ch>
* configure.in,Makefile.in:
* configure/Makefile.common.in:
* test/Makefile.in:
Added $(VERSION) to the name of the library
* GenericFunctions/FunctionNumDeriv.cc: Replaced max() by if()
* GenericFunctions/Variable.hh:
Removed const from parameters of the constructor
Variable(unsigned int selectionIndex=0);
* Geometry/Transform3D.cc,Transform3D.h:
Added getDecomposition(Scale &, Rotation &, Translation &)
* test/Makefile.in:
* test/testTransform3D.cc (Added): Added test for Transform3D.
* test/testAList.cc,testCmd.cc,testCmd.out.save (Removed):
* test/testComb.cc,testStrings.cc (Removed):
Removed obsolete tests.
Wed Apr 4 10:06:03 2001 Mark Fischler <mf@fnal.gov>
* Tools/Makefile.in (Removed):
* Tools/RandMultiGauss.cc,RandMultiGauss.h (Removed):
* Tools/RandomVector.cc,RandomVector.h (Removed):
* Tools/RandomVector.icc (Removed):
* RandomObjects/Makefile.in (Added):
* RandomObjects/RandMultiGauss.cc,RandMultiGauss.h (Added):
* RandomObjects/RandomVector.cc,RandomVector.h (Added):
* RandomObjects/RandomVector.icc (Added):
As agreed, we migrate the Tools involving Random and another
CLHEP package into a package which I have chosen to name
RandomObjects.
RandomObjects in principle depends on Random, Matrix, and Vecgtor
(though the tools that depend on Vector are not yet present).
* Vector/AxisAngle.h,EulerAngles.h:
Eliminated inconsistancy of virtual methods in no-virtual-destructor
class. These classes should not be used polymorphically.
* test/ranRestoreTest.cc,testRandDists.cc (Removed):
* test/testRandDists.input,testRandDists.out.save (Removed):
These were moved into Random/test
* Random/test/GNUmakefile,gaussSmall.cc (Added):
* Random/test/gaussSpeed.cc,ranRestoreTest.cc (Added):
* Random/test/testRandDists.cc,testRandDists.dat (Added):
* Random/test/testRandDists.input,testRandDists.input-long (Added):
* Random/test/testRandDists.out.save (Added):
Moved detailed and long tests into package-specific test area
as agreed.
* Vector/doc/VectorDefs.tex (Added):
LaTeX documentation source for details of all the formulas and
definitions in the Vector package.
Tue Apr 3 11:36:23 2001 Mark Fischler <mf@fnal.gov>
* Vector/LorentzVector.h,LorentzVector.icc:
inline operator const Hep3Vector & () const;
to avoid errors on solaris CC 4.2
Fri Jan 19 16:07:15 2001 Evgueni Tcherniaev <Evgueni.Tcherniaev@cern.ch>
* Vector/Makefile.in: Added new *.cc files.
* Vector/EulerAngles.h: Included "CLHEP/config/iostream.h"
* Vector/AxisAngle.cc,AxisAngle.h,EulerAngles.h,EulerAngles.cc:
* Vector/RotationInterfaces.h,RotationX.cc,RotationY.cc:
* Vector/RotationZ.cc,TwoVector.cc,TwoVector.h:
Changed std:: to HepStd::
* Vector/LorentzRotation.cc:
Removed operators "using"; setw(), setprecision() changed to
HepStd::setw(), HepStd::setprecision()
==========================================================================
18.01.01 ZOOM PhysicsVectors Capabilities have become part of CLHEP/Vector
==========================================================================
Thu Jan 18 20:30:00 2001 Mark Fischler <mf@fnal.gov>
* ENTIRE_Vector_Package:
Code for merge with capabilities of ZOOM PhysicsVectors.
Mon Nov 6 16:25:21 2000 Evgueni Tcherniaev <Evgueni.Tcherniaev@cern.ch>
* Vector/LorentzVector.h,LorentzVector.icc:
* test/testLorentzVector.cc:
Correction in const conversion operator.
Thanks to Leif.Lonnblad@thep.lu.se.
* Evaluator/Evaluator.cc,Evaluator.h:
More accurate usage of const.
======================================================================
24.10.00 Generic Functions by Joe Boudreau have become a part of CLHEP
======================================================================
==============================
20.10.00 Release CLHEP-1.6.0.0
==============================
==============================================================================
12.10.00 Expression Evaluator by Evgueni Tcherniaev has become a part of CLHEP
Alist, String and Combination have been disabled
==============================================================================
==============================
08.05.00 Release CLHEP-1.5.0.0
==============================
Sat May 6 08:48:17 2000 Evgueni Tcherniaev <Evgueni.Tcherniaev@cern.ch>
* Tools/Random/*.* (Removed):
* Tools/Makefile.in,RandMultiGauss.cc,RandMultiGauss.h (Added):
* Tools/RandomVector.cc,RandomVector.h,RandomVector.icc (Added):
* test/testVectorDists.cc:
RandMultiGauss and RandomVector have been moved to CLHEP/Tools.
* Random/JamesRandom.cc: Commented unused "HepDouble uni;"
* test/testVectorDists.cc:
Added #include "CLHEP/config/TemplateFunctions.h"
to ensure correct abs(double).
* test/ranRestoreTest.cc: Changed std:: to HepStd::
* Makefile.in:
* config/Makefile.common.in: Removed call of RANLIB.
============================================================
24.04.00 StdHepC++ by Lynn Garren has become a part of CLHEP
============================================================
Wed Apr 5 10:16:40 2000 Evgueni Tcherniaev <Evgueni.Tcherniaev@cern.ch>
* Vector/LorentzVector.cc,ThreeVector.cc:
operator(): removed "rdummy" - unnecessary reference to
a static variable "dummy"
* String/Strings.cc,Strings.h:
HepString::operator+() has been declared as const.
Thanks to Abi Soffer <abi@slac.stanford.edu> for the problem report.
Added check for whether char* passed to operator= is "this" or not.
Fix provided by Stephen J. Gowdy <SGowdy@lbl.gov>
* test/testAList.cc,testComb.cc,testStrings.cc:
Fixes of memory leaks provided by BaBar.
* test/testCmd.cc: Output bool as with "true" or "false".
Mon Mar 13 11:12:41 2000 Mark Fischler <mf@fncrdn.fnal.gov>
* Tools/Random/RandMultiGauss.cc,RandMultiGauss.h (Added):
* Tools/Random/RandomVector.cc,RandomVector.h,RandomVector.icc (Added):
* test/testVectorDists.cc,testVectorDists.input (Added):
* test/testVectorDists.out.save (Added):
The vector distribution RandMiultiGauss, this time in its proper
place in Tools/Random and with a validity test in test.
Thu Jan 27 15:21:27 2000 Evgueni Tcherniaev <Evgueni.Tcherniaev@cern.ch>
* Vector/ThreeVector.cc:
rotateUz(): fix proposed by the Geant4 team to avoid accuracy
problems noticed on DEC-cxx.
Mon Oct 25 10:41:20 1999 Evgueni Tcherniaev <Evgueni.Tcherniaev@cern.ch>
* Vector/LorentzVector.cc,ThreeVector.cc:
Added static in declaration of dummy in operator()
* Vector/Rotation.cc:
getAngleAxis(): added test for cos(a) < -1
Mon Jul 5 21:15:56 1999 Evgueni Tcherniaev <Evgueni.Tcherniaev@cern.ch>
* Vector/LorentzVector.h,LorentzVector.icc:
Added 'const' to the parameter of rotateUz()
Tue May 11 17:17:43 1999 Evgueni Tcherniaev <Evgueni.Tcherniaev@cern.ch>
* Vector/LorentzVector.cc,ThreeVector.cc:
Simplified input from a stream. Removed coupling with HepString
* test/testLorentzVector.input,testLorentzVector.out.save (Added):
* testThreeVector.input testThreeVector.out.save (Added):
* test/Makefile.in,testLorentzVector.cc,testThreeVector.cc:
Added tests for input/output from/to a stream
==============================
20.04.99 Release CLHEP-1.4.0.0
==============================
Tue Feb 23 19:02:32 1999 Evgueni Tcherniaev <Evgueni.Tcherniaev@cern.ch>
* Vector/Rotation.cc:
More efficient implementation of rotateX(), rotateY(), rotateZ()
Mon Feb 22 15:56:41 1999 Evgueni Tcherniaev <Evgueni.Tcherniaev@cern.ch>
* Vector/Rotation.cc:
More efficient implementation of rotate(angle, axis)
* test/testRotation.cc (Added):
* test/Makefile.in: Added test for HepRotation
Thu Feb 18 12:19:13 1999 Evgueni Tcherniaev <Evgueni.Tcherniaev@cern.ch>
* Vector/ThreeVector.icc: More efficient implementation of setPhi().
Mon Feb 15 19:01:54 1999 Evgueni Tcherniaev <Evgueni.Tcherniaev@cern.ch>
* Vector/ThreeVector.cc,ThreeVector.h:
Added const in the parameter list
Wed Jan 27 17:14:28 1999 Evgueni Tcherniaev <Evgueni.Tcherniaev@cern.ch>
* Vector/LorentzVector.h,LorentzVector.icc:
* test/testLorentzVector.cc:
Added operator*= and operator* for scaling with HepDouble
Thu Jan 14 15:14:40 1999 Evgueni Tcherniaev <Evgueni.Tcherniaev@cern.ch>
* Vector/:
* LorentzRotation.h,LorentzRotation.icc,Rotation.h,Rotation.icc:
Added missing const in operator[]
* config/Makefile.common.in,test/Makefile.in:
Removed -DCLHEP_TARGET_H=<...> to avoid problem on Linux
Wed Jan 13 09:59:26 1999 Evgueni Tcherniaev <Evgueni.Tcherniaev@cern.ch>
* Vector/:
* LorentzVector.cc,LorentzVector.h,ThreeVector.cc,ThreeVector.h:
Added streaming operator >>
* Vector/LorentzVector.h,LorentzVector.icc:
Introduced setVectMag() and setVectM() functions.
* Matrix/SymMatrix.cc,test/testInversion.cc:
Removed declaration of unused variables
Tue Jan 12 15:36:41 1999 Evgueni Tcherniaev <Evgueni.Tcherniaev@cern.ch>
* Vector/Rotation.h,LorentzRotation.h:
Helper classes HepRotation_row and HepLorentzRotation_row
moved to public to avoid warnings on SUN.
* Vector/:
* LorentzVector.cc,LorentzVector.h,ThreeVector.cc,ThreeVector.h:
Introduced enum for save indexing of the coordinates.
Thu Jan 7 15:20:22 1999 Evgueni Tcherniaev <Evgueni.Tcherniaev@cern.ch>
* Vector/ThreeVector.icc:
More efficient implementation of setMag().
Fixed bug in angle() to protect from acos() of number greater than 1.
* Vector/LorentzRotation.h,LorentzRotation.icc:
Introduced transform(const HepRotation &) for pure spacelike rotation.
=========================================================================
16.12.98 Started: merging with BaBar version of CLHEP provided by G.Cosmo
=========================================================================
Fri Dec 11 11:58:09 1998 Evgueni Tcherniaev <Evgueni.Tcherniaev@cern.ch>
* config/CLHEP.h:
* Matrix/Matrix.cc,Matrix.h,Vector.cc,Vector.h:
* tests/testMatrix.cc:
Introduced HEP_USE_VECTOR_MODULE flag to facilitate
disabling dependence between the Matrix and Vector modules
* Utilities/CLHEP.h:
Added config/TemplateFuntions.h by request of G.Cosmo
Fri Oct 9 10:43:33 1998 Evgueni Tcherniaev <Evgueni.Tcherniaev@cern.ch>
* Vector/LorentzVector.h,LorentzVector.icc,ThreeVector.cc:
Added transverse mass mt=sqrt(perp2()+m2())
Thu Oct 8 15:47:44 1998 Evgueni Tcherniaev <Evgueni.Tcherniaev@cern.ch>
* Vector/ThreeVector.h,ThreeVector.cc:
Added pseudoRapidity()
* Vector/LorentzVector.cc,LorentzVector.h,LorentzVector.icc:
Added rapidity() and pseudoRapidity()
Sun Sep 27 19:58:43 1998 Evgueni Tcherniaev <Evgueni.Tcherniaev@cern.ch>
* Vector/:
* ThreeVector.h,ThreeVector.icc,ThreeVector.cc:
* LorentzVector.h,LorentzVector.icc,LorentzVector.cc:
Added operator[] to read/write the vector components by index
* Vector/:
* LorentzRotation.cc,LorentzRotation.h,LorentzRotation.icc:
* Rotation.cc,Rotation.h,Rotation.icc:
Added C-style subscripts r[i][j]
* test/Makefile.in:
* test/testSubscripts.cc (Added):
Test for subscripts for the classes from the Vector module
Mon Sep 14 15:24:00 1998 Evgueni Tcherniaev <Evgueni.Tcherniaev@cern.ch>
* config/TemplateFunctions.h:
Included #undef for possible existing min/max/sqr/abs macros
* Units/SystemOfUnits.h:
Added angstrom, picobarn, microsecond, picosecond, petaelectronvolt
* Vector/:
* ThreeVector.h,ThreeVector.icc,LorentzVector.h,LorentzVector.icc:
Added setPerp() by request of LHCB.
==========================
28.07.98 Release CLHEP-1.3
==========================
Tue Jul 14 09:05:20 1998 Evgueni Tcherniaev <Evgueni.Tcherniaev@cern.ch>
* config/TemplateFunctions.h (Added):
min(), max(), abs(), sqr() moved from CLHEP.h to TemplateFunctions.h
* config/CLHEP.h:
* Geometry/Transform3D.cc:
* Random/RandBreitWigner.cc,RanecuEngine.cc:
* String/Strings.cc:
* Vector/Rotation.cc:
* test/:
* testLorentzVector.cc,testMinMaxSqrAbs.cc,testStrings.cc:
* testThreeVector.cc:
min(), max(), abs(), sqr() moved from CLHEP.h to TemplateFunctions.h
Thu Apr 9 15:47:33 1998 Evgueni Tcherniaev <Evgueni.Tcherniaev@cern.ch>
* Geometry/Plane3D.h: Rewritten operator ==, added operator !=
* Vector/ThreeVector.icc: Removed call of abs() and sqr()
* Makefile.in: "distclean" target now does not erase "configure"
==========================
05.02.98 Release CLHEP-1.2
==========================
Tue Dec 16 11:24:16 1997 Evgueni Tcherniaev <Evgueni.Tcherniaev@cern.ch>
* Vector/LorentzVector.h,LorentzVector.icc:
Added another cast operator; bug fix in m()
* Geometry/Point3D.h:
Added const for distance() and distance2()
========================================================
08.12.97 Release CLHEP-1.1: Geant4 has migrated to CLHEP
========================================================
Fri Dec 5 09:28:25 1997 Evgueni Tcherniaev <Evgueni.Tcherniaev@cern.ch>
* Units/PhysicalConstants.h,SystemOfUnits.h:
Removed all HepUnitOf...
Redefined pascal
Replaced pasc to pascal
Added km, km2, km3 and mg
* Vector/:
* LorentzRotation.cc,LorentzRotation.h,LorentzRotation.icc:
* LorentzVector.cc,LorentzVector.h,LorentzVector.icc:
New implementation without inheritance from Hep3Vector and
HepRotation
* test/testLorentzVector.cc:
Corrections caused by new implementation of HepLorentzVector
and HepLorentzRotation
Tue Nov 18 10:03:37 1997 Evgueni Tcherniaev <Evgueni.Tcherniaev@cern.ch>
* Vector/Rotation.cc:
Bug fix in phiX(), phiY() and phiZ()
* Vector/:
* Rotation.cc,Rotation.h,Rotation.icc,ThreeVector.cc:
* ThreeVector.h,ThreeVector.icc:
Changes in comments
Mon Oct 6 18:04:21 1997 Evgueni Tcherniaev <Evgueni.Tcherniaev@cern.ch>
* test/testThreeVector.cc,testMatrix.cc: Changes in comments
Fri Sep 26 16:35:31 1997 Evgueni Tcherniaev <Evgueni.Tcherniaev@cern.ch>
* Vector/Rotation.h,Rotation.icc,Rotation.cc:
Added operator(int,int)
Removed inline from *.cc
Bug fix in getAngleAxis() - Thanks to Joe Boudreau
* Vector/ThreeVector.h,ThreeVector.icc,ThreeVector.cc:
Removed friend classes HepPOStream, HepPIStream
* Geometry/Transform3D.cc:
Bug fix in HepTransform3D(double,...,double)
Thanks to Brian Heltsley <heltsley@balpha02f.kek.jp>
Small optimization in HepTransform3D(Point3D,...,Point3D)
Wed Aug 20 16:28:15 1997 Evgueni Tcherniaev <Evgueni.Tcherniaev@cern.ch>
* Vector/LorentzRotation.h,LorentzVector.h,Rotation.h,ThreeVector.h:
Removed friend HepPOStream & friend HepPIStream
Fri Mar 14 18:19:29 1997 Nobu Katayama <katayama@hpplus10.cern.ch>
- Vector added more functionality from Geant4 and Babar
- New Random from Geant4
|