#include <G4INCLThreeVector.hh>
Definition at line 54 of file G4INCLThreeVector.hh.
◆ ThreeVector() [1/2]
G4INCL::ThreeVector::ThreeVector |
( |
| ) |
|
|
inline |
Definition at line 56 of file G4INCLThreeVector.hh.
57 :x(0.0), y(0.0), z(0.0)
58 {}
Referenced by anyOrthogonal(), dot(), operator*(), operator+(), operator+=(), operator-(), operator-(), operator-=(), operator/(), rotate(), and vector().
◆ ThreeVector() [2/2]
◆ anyOrthogonal()
ThreeVector G4INCL::ThreeVector::anyOrthogonal |
( |
| ) |
const |
|
inline |
Return a vector orthogonal to this.
Simple algorithm from Hughes and Moeller, J. Graphics Tools 4 (1999) 33.
Definition at line 191 of file G4INCLThreeVector.hh.
191 {
192 if(x<=y && x<=z)
194 else if(y<=x && y<=z)
196 else
198 }
◆ dot()
◆ dump()
std::string G4INCL::ThreeVector::dump |
( |
| ) |
const |
|
inline |
Definition at line 206 of file G4INCLThreeVector.hh.
206 {
207 std::stringstream ss;
208 ss <<"(vector3 " << x << " " << y << " " << z << ")";
209 return ss.str();
210 }
◆ getX()
G4double G4INCL::ThreeVector::getX |
( |
| ) |
const |
|
inline |
Definition at line 64 of file G4INCLThreeVector.hh.
Referenced by G4INCL::AvatarDumpAction::afterAvatarUserAction(), G4INCL::Cluster::boost(), G4INCL::Nucleus::fillEventInfo(), G4INCL::DeltaProductionChannel::fillFinalState(), G4INCL::ElasticChannel::fillFinalState(), G4INCL::ReflectionChannel::fillFinalState(), G4INCL::StrangeAbsorbtionChannel::fillFinalState(), G4INCL::NKbElasticChannel::KaonMomentum(), G4INCL::NKbToLpiChannel::KaonMomentum(), G4INCL::NKbToNKbChannel::KaonMomentum(), and G4INCL::NKbToSpiChannel::KaonMomentum().
◆ getY()
G4double G4INCL::ThreeVector::getY |
( |
| ) |
const |
|
inline |
Definition at line 65 of file G4INCLThreeVector.hh.
Referenced by G4INCL::AvatarDumpAction::afterAvatarUserAction(), G4INCL::Cluster::boost(), G4INCL::Nucleus::fillEventInfo(), G4INCL::DeltaProductionChannel::fillFinalState(), G4INCL::ElasticChannel::fillFinalState(), G4INCL::ReflectionChannel::fillFinalState(), G4INCL::StrangeAbsorbtionChannel::fillFinalState(), G4INCL::NKbElasticChannel::KaonMomentum(), G4INCL::NKbToLpiChannel::KaonMomentum(), G4INCL::NKbToNKbChannel::KaonMomentum(), and G4INCL::NKbToSpiChannel::KaonMomentum().
◆ getZ()
G4double G4INCL::ThreeVector::getZ |
( |
| ) |
const |
|
inline |
Definition at line 66 of file G4INCLThreeVector.hh.
Referenced by G4INCL::AvatarDumpAction::afterAvatarUserAction(), G4INCL::Cluster::boost(), G4INCL::Nucleus::fillEventInfo(), G4INCL::DeltaProductionChannel::fillFinalState(), G4INCL::ElasticChannel::fillFinalState(), G4INCL::ReflectionChannel::fillFinalState(), G4INCL::StrangeAbsorbtionChannel::fillFinalState(), G4INCL::NKbElasticChannel::KaonMomentum(), G4INCL::NKbToLpiChannel::KaonMomentum(), G4INCL::NKbToNKbChannel::KaonMomentum(), and G4INCL::NKbToSpiChannel::KaonMomentum().
◆ mag()
G4double G4INCL::ThreeVector::mag |
( |
| ) |
const |
|
inline |
Get the length of the vector.
Definition at line 73 of file G4INCLThreeVector.hh.
73{ return std::sqrt(x*x + y*y + z*z); }
Referenced by G4INCL::InteractionAvatar::bringParticleInside(), G4INCL::SigmaZeroDecayChannel::computeDecayTime(), G4INCL::Nucleus::decayOutgoingDeltas(), G4INCL::Nucleus::decayOutgoingPionResonances(), G4INCL::Nucleus::decayOutgoingSigmaZero(), G4INCL::CoulombNonRelativistic::distortOut(), G4INCL::Nucleus::fillEventInfo(), G4INCL::DeltaProductionChannel::fillFinalState(), G4INCL::StrangeAbsorbtionChannel::fillFinalState(), G4INCL::PhaseSpaceGenerator::generateBiased(), G4INCL::StandardPropagationModel::generateBinaryCollisionAvatar(), G4INCL::PauliStandard::getBlockingProbability(), G4INCL::ClusteringModelIntercomparison::getCluster(), G4INCL::KinematicsUtils::getLocalEnergy(), G4INCL::StandardPropagationModel::shootComposite(), and G4INCL::StandardPropagationModel::shootParticle().
◆ mag2()
G4double G4INCL::ThreeVector::mag2 |
( |
| ) |
const |
|
inline |
Get the square of the length.
Definition at line 78 of file G4INCLThreeVector.hh.
78{ return (x*x + y*y + z*z); }
Referenced by G4INCL::ProjectileRemnant::addAllDynamicalSpectators(), G4INCL::ProjectileRemnant::addMostDynamicalSpectators(), G4INCL::Particle::boost(), G4INCL::ClusteringModelIntercomparison::clusterCanEscape(), G4INCL::KinematicsUtils::energy(), G4INCL::ParticleEntryChannel::fillFinalState(), G4INCL::PiNToDeltaChannel::fillFinalState(), G4INCL::ReflectionChannel::fillFinalState(), G4INCL::Cluster::freezeInternalMotion(), G4INCL::PauliStandard::getBlockingProbability(), G4INCL::BinaryCollisionAvatar::getChannel(), G4INCL::StandardPropagationModel::getTime(), G4INCL::SurfaceAvatar::getTransmissionProbability(), G4INCL::Particle::lorentzContract(), G4INCL::Cluster::putParticlesOffShell(), G4INCL::KinematicsUtils::squareInvariantMass(), and G4INCL::KinematicsUtils::squareTotalEnergyInCM().
◆ operator*()
◆ operator*=()
template<typename T>
void G4INCL::ThreeVector::operator*= |
( |
const T & | c | ) |
|
|
inline |
◆ operator+()
◆ operator+=()
void G4INCL::ThreeVector::operator+= |
( |
const ThreeVector & | v | ) |
|
|
inline |
◆ operator-() [1/2]
◆ operator-() [2/2]
◆ operator-=()
void G4INCL::ThreeVector::operator-= |
( |
const ThreeVector & | v | ) |
|
|
inline |
◆ operator/()
Divides all components of the vector with a constant number.
Definition at line 165 of file G4INCLThreeVector.hh.
165 {
167 return ThreeVector(x*oneOverC, y*oneOverC, z*oneOverC);
168 }
G4double C(G4double temp)
◆ operator/=()
template<typename T>
void G4INCL::ThreeVector::operator/= |
( |
const T & | c | ) |
|
|
inline |
◆ perp()
G4double G4INCL::ThreeVector::perp |
( |
| ) |
const |
|
inline |
◆ perp2()
G4double G4INCL::ThreeVector::perp2 |
( |
| ) |
const |
|
inline |
◆ phi()
G4double G4INCL::ThreeVector::phi |
( |
| ) |
const |
|
inline |
◆ print()
std::string G4INCL::ThreeVector::print |
( |
| ) |
const |
|
inline |
Definition at line 200 of file G4INCLThreeVector.hh.
200 {
201 std::stringstream ss;
202 ss <<"(x = " << x << " y = " << y << " z = " << z <<")";
203 return ss.str();
204 }
◆ rotate()
Rotate the vector by a given angle around a given axis.
- Parameters
-
angle | the rotation angle |
axis | the rotation axis, which must be a unit vector |
Definition at line 179 of file G4INCLThreeVector.hh.
179 {
180
181 const G4double cos = std::cos(angle);
182 const G4double sin = std::sin(angle);
183 (*this) = (*this) * cos + axis.vector(*this) * sin + axis * (axis.dot(*this)*(1.-cos));
184 }
◆ set()
◆ setX()
void G4INCL::ThreeVector::setX |
( |
G4double | ax | ) |
|
|
inline |
◆ setY()
void G4INCL::ThreeVector::setY |
( |
G4double | ay | ) |
|
|
inline |
◆ setZ()
void G4INCL::ThreeVector::setZ |
( |
G4double | az | ) |
|
|
inline |
◆ theta()
G4double G4INCL::ThreeVector::theta |
( |
| ) |
const |
|
inline |
◆ vector()
Vector product.
Definition at line 104 of file G4INCLThreeVector.hh.
104 {
106 y*v.z - z*v.y,
107 z*v.x - x*v.z,
108 x*v.y - y*v.x
109 );
110 }
Referenced by rotate().
The documentation for this class was generated from the following file: