#include <Vertex.h>
Public Member Functions | |
| Vertex () | |
| Vertex (const Vertex &rhs) | |
| virtual | ~Vertex () |
| Bool_t | operator== (const Vertex &rhs) const |
| Int_t | GetPlane () const |
| Double_t | GetT () const |
| Double_t | GetU () const |
| Double_t | GetV () const |
| Double_t | GetZ () const |
| void | SetPlane (Int_t) |
| void | SetT (Double_t) |
| void | SetU (Double_t) |
| void | SetV (Double_t) |
| void | SetZ (Double_t) |
| const char * | AsString (Option_t *option="") const |
Private Attributes | |
| Double_t | fU |
| Double_t | fV |
| Double_t | fZ |
| Double_t | fT |
| Int_t | fPlane |
|
|
Definition at line 22 of file RecoBase/Vertex.cxx.
|
|
|
Definition at line 32 of file RecoBase/Vertex.cxx. 00032 : 00033 TObject(rhs) 00034 , fU(rhs.fU) 00035 , fV(rhs.fV) 00036 , fZ(rhs.fZ) 00037 , fT(rhs.fT) 00038 , fPlane(rhs.fPlane) 00039 { 00040 }
|
|
|
Definition at line 43 of file RecoBase/Vertex.cxx. 00044 {
00045 }
|
|
|
Definition at line 121 of file RecoBase/Vertex.cxx. References Form(), fPlane, fT, fU, fV, and fZ. Referenced by CandReco::FormatToOStream(). 00122 {
00123 return Form(" pln=%4d U=%f V=%f Z=%f T(ns)=%f",
00124 fPlane,fU,fV,fZ,fT/Munits::ns);
00125 }
|
|
|
Definition at line 61 of file RecoBase/Vertex.cxx. 00062 {
00063 return fPlane;
00064 }
|
|
|
Definition at line 67 of file RecoBase/Vertex.cxx. 00068 {
00069 return fT;
00070 }
|
|
|
Definition at line 73 of file RecoBase/Vertex.cxx. 00074 {
00075 return fU;
00076 }
|
|
|
Definition at line 79 of file RecoBase/Vertex.cxx. 00080 {
00081 return fV;
00082 }
|
|
|
Definition at line 85 of file RecoBase/Vertex.cxx. 00086 {
00087 return fZ;
00088 }
|
|
|
Definition at line 48 of file RecoBase/Vertex.cxx. References fPlane, fT, fU, fV, and fZ. 00049 {
00050 if (this->fU == rhs.fU &&
00051 this->fV == rhs.fV &&
00052 this->fZ == rhs.fZ &&
00053 this->fT == rhs.fT &&
00054 this->fPlane == rhs.fPlane) {
00055 return true;
00056 }
00057 return false;
00058 }
|
|
|
Definition at line 91 of file RecoBase/Vertex.cxx. References fPlane. 00092 {
00093 fPlane = ivar;
00094 }
|
|
|
Definition at line 97 of file RecoBase/Vertex.cxx. References fT. 00098 {
00099 fT = dvar;
00100 }
|
|
|
Definition at line 103 of file RecoBase/Vertex.cxx. References fU. 00104 {
00105 fU = dvar;
00106 }
|
|
|
Definition at line 109 of file RecoBase/Vertex.cxx. References fV. 00110 {
00111 fV = dvar;
00112 }
|
|
|
Definition at line 115 of file RecoBase/Vertex.cxx. References fZ. 00116 {
00117 fZ = dvar;
00118 }
|
|
|
Definition at line 41 of file RecoBase/Vertex.h. Referenced by AsString(), operator==(), and SetPlane(). |
|
|
Definition at line 40 of file RecoBase/Vertex.h. Referenced by AsString(), operator==(), and SetT(). |
|
|
Definition at line 37 of file RecoBase/Vertex.h. Referenced by AsString(), operator==(), and SetU(). |
|
|
Definition at line 38 of file RecoBase/Vertex.h. Referenced by AsString(), operator==(), and SetV(). |
|
|
Definition at line 39 of file RecoBase/Vertex.h. Referenced by AsString(), operator==(), and SetZ(). |
1.3.9.1