#include <REROOT_Mixture.h>
Public Member Functions | |
| REROOT_Mixture (MIXTURE_DEF *) | |
| REROOT_Mixture () | |
| ~REROOT_Mixture () | |
| virtual void | accept (REROOT_Visitor &v) |
| void | clear () |
| void | printEvent (std::ostream &) const |
| Int_t | ID () const |
| Int_t | Material () const |
| Int_t | IElement () const |
| Float_t | A () const |
| Float_t | Z () const |
| Float_t | Fraction () const |
Private Member Functions | |
| void | init () |
Private Attributes | |
| Int_t | m_ID |
| Int_t | m_Material |
| Int_t | m_IElement |
| Float_t | m_A |
| Float_t | m_Z |
| Float_t | m_Fraction |
|
|
Definition at line 59 of file REROOT_Mixture.cxx. References init(). 00060 {
00061 m_ID = nr->ID - 1; // C index
00062 m_Material = nr->Material - 1; // C index
00063 m_IElement = nr->IElement - 1; // C index
00064 m_A = nr->A;
00065 m_Z = nr->Z;
00066 m_Fraction = nr->Fraction;
00067
00068 init();
00069 }
|
|
|
Definition at line 71 of file REROOT_Mixture.cxx. 00072 {
00073 }
|
|
|
Definition at line 79 of file REROOT_Mixture.cxx. 00080 {
00081 }
|
|
|
Definition at line 42 of file REROOT_Mixture.h. 00042 {return m_A; } // A
|
|
|
Definition at line 33 of file REROOT_Mixture.h. References REROOT_Visitor::visit(). 00033 { v.visit(this); }
|
|
|
Definition at line 83 of file REROOT_Mixture.cxx. 00084 {
00085 }
|
|
|
Definition at line 44 of file REROOT_Mixture.h. 00044 {return m_Fraction; } // Fraction
|
|
|
Definition at line 39 of file REROOT_Mixture.h. 00039 {return m_ID; } // ID
|
|
|
Definition at line 41 of file REROOT_Mixture.h. 00041 {return m_IElement; } // IElement
|
|
|
Definition at line 75 of file REROOT_Mixture.cxx. 00076 {
00077 }
|
|
|
Definition at line 40 of file REROOT_Mixture.h. 00040 {return m_Material; } // Material
|
|
|
Definition at line 87 of file REROOT_Mixture.cxx. 00088 {
00089 pstream << "======================= Mixture =====================\n";
00090 }
|
|
|
Definition at line 43 of file REROOT_Mixture.h. 00043 {return m_Z; } // Z
|
|
|
Definition at line 22 of file REROOT_Mixture.h. |
|
|
Definition at line 24 of file REROOT_Mixture.h. |
|
|
Definition at line 19 of file REROOT_Mixture.h. |
|
|
Definition at line 21 of file REROOT_Mixture.h. |
|
|
Definition at line 20 of file REROOT_Mixture.h. |
|
|
Definition at line 23 of file REROOT_Mixture.h. |
1.3.9.1