#include <REROOT_LSTWire.h>
Public Member Functions | |
| REROOT_LSTWire (LSTWIRE_DEF *) | |
| REROOT_LSTWire () | |
| ~REROOT_LSTWire () | |
| virtual void | accept (REROOT_Visitor &v) |
| void | clear () |
| void | printEvent (std::ostream &) const |
| Int_t | ID () const |
| Int_t | IPln () const |
| Int_t | IChan () const |
| Float_t | TPos () const |
| Float_t | Charge () const |
Private Member Functions | |
| void | init () |
Private Attributes | |
| Int_t | m_ID |
| Int_t | m_IPln |
| Int_t | m_IChan |
| Float_t | m_TPos |
| Float_t | m_Charge |
|
|
Definition at line 59 of file REROOT_LSTWire.cxx. References init(). 00060 {
00061 m_ID = nr->ID - 1; // C index
00062 m_IPln = nr->IPln - 1; // C index
00063 m_IChan = nr->IChan - 1; // C index
00064 m_TPos = nr->TPos;
00065 m_Charge = nr->Charge;
00066
00067 init();
00068 }
|
|
|
Definition at line 70 of file REROOT_LSTWire.cxx. 00071 {
00072 }
|
|
|
Definition at line 78 of file REROOT_LSTWire.cxx. 00079 {
00080 }
|
|
|
Definition at line 32 of file REROOT_LSTWire.h. References REROOT_Visitor::visit(). 00032 { v.visit(this); }
|
|
|
Definition at line 42 of file REROOT_LSTWire.h. 00042 {return m_Charge; } // Charge
|
|
|
Definition at line 82 of file REROOT_LSTWire.cxx. 00083 {
00084 }
|
|
|
Definition at line 40 of file REROOT_LSTWire.h. 00040 {return m_IChan; } // IChan
|
|
|
Definition at line 38 of file REROOT_LSTWire.h. 00038 {return m_ID; } // ID
|
|
|
Definition at line 74 of file REROOT_LSTWire.cxx. 00075 {
00076 }
|
|
|
Definition at line 39 of file REROOT_LSTWire.h. 00039 {return m_IPln; } // IPln
|
|
|
Definition at line 86 of file REROOT_LSTWire.cxx. 00087 {
00088 pstream << "======================= LSTWire =====================\n";
00089 }
|
|
|
Definition at line 41 of file REROOT_LSTWire.h. 00041 {return m_TPos; } // TPos
|
|
|
Definition at line 23 of file REROOT_LSTWire.h. |
|
|
Definition at line 21 of file REROOT_LSTWire.h. |
|
|
Definition at line 19 of file REROOT_LSTWire.h. |
|
|
Definition at line 20 of file REROOT_LSTWire.h. |
|
|
Definition at line 22 of file REROOT_LSTWire.h. |
1.3.9.1