LArSoft  v09_90_00
Liquid Argon Software toolkit - https://larsoft.org/
pyG4TwoVector.cc File Reference
#include <boost/python.hpp>
#include "G4Version.hh"
#include "G4TwoVector.hh"

Go to the source code of this file.

Namespaces

 pyG4TwoVector
 

Typedefs

typedef G4TwoVector XXX
 

Functions

void export_G4TwoVector ()
 

Typedef Documentation

typedef G4TwoVector XXX

Definition at line 38 of file pyG4TwoVector.cc.

Function Documentation

void export_G4TwoVector ( )

Definition at line 56 of file pyG4TwoVector.cc.

References geo::vect::dot(), geo::vect::mag2(), r, x, and y.

Referenced by BOOST_PYTHON_MODULE().

57 {
58  class_<G4TwoVector>("G4TwoVector", "general 2-vector")
59  // constructors
60  .def(init<G4double>())
61  .def(init<G4double, G4double>())
62  .def(init<const XXX&>())
63 
64  // property
65  .add_property("x", &XXX::x, &XXX::setX)
66  .add_property("y", &XXX::y, &XXX::setY)
67 
68  // methods
69  .def("set", &XXX::set)
70  .def("phi", &XXX::phi)
71  .def("mag", &XXX::mag)
72  .def("mag2", &XXX::mag2)
73  .def("r", &XXX::r)
74  .def("setPhi", &XXX::setPhi)
75  .def("setMag", &XXX::setMag)
76  .def("setR", &XXX::setR)
77  .def("setPolar", &XXX::setPolar)
78  .def("howNear", &XXX::howNear)
79  .def("isNear", &XXX::isNear, f_isNear())
80  .def("howParallel", &XXX::howParallel)
81  .def("isParallel", &XXX::isParallel, f_isParallel())
82  .def("howOrthogonal", &XXX::howOrthogonal)
83  .def("isOrthogonal", &XXX::isOrthogonal, f_isOrthogonal())
84  .def("unit", &XXX::unit)
85  .def("orthogonal", &XXX::orthogonal)
86  .def("dot", &XXX::dot)
87  .def("angle", &XXX::angle)
88  .def("rotate", &XXX::rotate)
89 
90  // operators
91  .def(self_ns::str(self))
92  .def(self == self)
93  .def(self != self)
94  .def(self += self)
95  .def(self -= self)
96  .def(self - self)
97  .def(self + self)
98  .def(self * self)
99  .def(self * G4double())
100  .def(self / G4double())
101  .def(G4double() * self)
102  .def(self *= G4double())
103  .def(self > self)
104  .def(self < self)
105  .def(self >= self)
106  .def(self <= self)
107  ;
108 }
Float_t x
Definition: compare.C:6
TRandom r
Definition: spectrum.C:23
Float_t y
Definition: compare.C:6
constexpr auto dot(Vector const &a, OtherVector const &b)
Return cross product of two vectors.
auto mag2(Vector const &v)
Return norm of the specified vector.