#include <REROOT_NeuVtx.h>
Public Member Functions | |
| REROOT_NeuVtx (NEUVTX_DEF *) | |
| REROOT_NeuVtx () | |
| ~REROOT_NeuVtx () | |
| virtual void | accept (REROOT_Visitor &v) |
| void | clear () |
| void | printEvent (std::ostream &) const |
| Int_t | ID () const |
| Float_t | X () const |
| Float_t | Y () const |
| Float_t | Z () const |
Private Member Functions | |
| void | init () |
Private Attributes | |
| Int_t | m_ID |
| Float_t | m_X |
| Float_t | m_Y |
| Float_t | m_Z |
|
|
Definition at line 61 of file REROOT_NeuVtx.cxx. References init(). 00062 {
00063 m_ID = nr->ID - 1; // C index
00064 m_X = nr->X;
00065 m_Y = nr->Y;
00066 m_Z = nr->Z;
00067
00068 init();
00069 }
|
|
|
Definition at line 71 of file REROOT_NeuVtx.cxx. 00072 {
00073 }
|
|
|
Definition at line 79 of file REROOT_NeuVtx.cxx. 00080 {
00081 }
|
|
|
Definition at line 32 of file REROOT_NeuVtx.h. References REROOT_Visitor::visit(). 00032 { v.visit(this); }
|
|
|
Definition at line 83 of file REROOT_NeuVtx.cxx. 00084 {
00085 }
|
|
|
Definition at line 38 of file REROOT_NeuVtx.h. 00038 {return m_ID; } // ID
|
|
|
Definition at line 75 of file REROOT_NeuVtx.cxx. 00076 {
00077 }
|
|
|
Definition at line 87 of file REROOT_NeuVtx.cxx. References m_ID, m_X, m_Y, and m_Z. 00088 {
00089 pstream << "======================= NeuVtx =====================\n";
00090 pstream << " ID: " << m_ID
00091 << " (" << m_X << ", " << m_Y << ", " << m_Z << ")" << endl;
00092 }
|
|
|
Definition at line 39 of file REROOT_NeuVtx.h. Referenced by FitTrackMSListModule::Ana(). 00039 {return m_X; } // X
|
|
|
Definition at line 40 of file REROOT_NeuVtx.h. Referenced by FitTrackMSListModule::Ana(). 00040 {return m_Y; } // Y
|
|
|
Definition at line 41 of file REROOT_NeuVtx.h. References m_Z, and zoffset_REROOT(). Referenced by FitTrackMSListModule::Ana(). 00041 {return m_Z + zoffset_REROOT(); } // Z
|
|
|
Definition at line 20 of file REROOT_NeuVtx.h. Referenced by printEvent(). |
|
|
Definition at line 21 of file REROOT_NeuVtx.h. Referenced by printEvent(). |
|
|
Definition at line 22 of file REROOT_NeuVtx.h. Referenced by printEvent(). |
|
|
Definition at line 23 of file REROOT_NeuVtx.h. Referenced by printEvent(), and Z(). |
1.3.9.1