Import Geant4 9.6.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-09 17:01:34 +02:00
parent b1eb5424d2
commit e2d2f9810a
10384 changed files with 698580 additions and 628834 deletions
+6 -6
View File
@@ -17,17 +17,17 @@
namespace CLHEP {
Hep3Vector & Hep3Vector::operator *= (const HepRotation & m) {
return *this = m * (*this);
Hep3Vector & Hep3Vector::operator *= (const HepRotation & m1) {
return *this = m1 * (*this);
}
Hep3Vector & Hep3Vector::transform(const HepRotation & m) {
return *this = m * (*this);
Hep3Vector & Hep3Vector::transform(const HepRotation & m1) {
return *this = m1 * (*this);
}
Hep3Vector & Hep3Vector::rotate(double angle, const Hep3Vector & axis){
Hep3Vector & Hep3Vector::rotate(double aangle, const Hep3Vector & aaxis){
HepRotation trans;
trans.rotate(angle, axis);
trans.rotate(aangle, aaxis);
operator*=(trans);
return *this;
}