#include <REROOT_SuperModule.h>
Public Member Functions | |
| REROOT_SuperModule (SUPERMODULE_DEF *) | |
| REROOT_SuperModule () | |
| ~REROOT_SuperModule () | |
| virtual void | accept (REROOT_Visitor &v) |
| void | clear () |
| void | printEvent (std::ostream &) const |
| Int_t | ID () const |
| Int_t | NActvPln () const |
| Int_t | NAPlnMdl () const |
| Int_t | NMdl () const |
| Int_t | CoilSet () const |
| Float_t | CoilI () const |
| Float_t | KATurn () const |
| Float_t | SupX0 () const |
| Float_t | SupY0 () const |
| Float_t | UpSpace () const |
| Float_t | DnSpace () const |
| Float_t | Xmin () const |
| Float_t | Xmax () const |
| Float_t | Ymin () const |
| Float_t | Ymax () const |
| Float_t | Zmin () const |
| Float_t | Zmax () const |
Private Member Functions | |
| void | init () |
Private Attributes | |
| Int_t | m_ID |
| Int_t | m_NActvPln |
| Int_t | m_NAPlnMdl |
| Int_t | m_NMdl |
| Int_t | m_CoilSet |
| Float_t | m_CoilI |
| Float_t | m_KATurn |
| Float_t | m_SupX0 |
| Float_t | m_SupY0 |
| Float_t | m_UpSpace |
| Float_t | m_DnSpace |
| Float_t | m_Xmin |
| Float_t | m_Xmax |
| Float_t | m_Ymin |
| Float_t | m_Ymax |
| Float_t | m_Zmin |
| Float_t | m_Zmax |
|
|
Definition at line 58 of file REROOT_SuperModule.cxx. References init(). 00059 {
00060 m_ID = nr->ID - 1; // C index
00061 m_NActvPln = nr->NActvPln;
00062 m_NAPlnMdl = nr->NAPlnMdl;
00063 m_NMdl = nr->NMdl;
00064 m_CoilSet = nr->CoilSet;
00065 m_CoilI = nr->CoilI;
00066 m_KATurn = nr->KATurn;
00067 m_SupX0 = nr->SupX0;
00068 m_SupY0 = nr->SupY0;
00069 m_UpSpace = nr->UpSpace;
00070 m_DnSpace = nr->DnSpace;
00071 m_Xmin = nr->Xmin;
00072 m_Xmax = nr->Xmax;
00073 m_Ymin = nr->Ymin;
00074 m_Ymax = nr->Ymax;
00075 m_Zmin = nr->Zmin;
00076 m_Zmax = nr->Zmax;
00077
00078 init();
00079 }
|
|
|
Definition at line 82 of file REROOT_SuperModule.cxx. 00083 {
00084 }
|
|
|
Definition at line 92 of file REROOT_SuperModule.cxx. 00093 {
00094 }
|
|
|
Definition at line 46 of file REROOT_SuperModule.h. References REROOT_Visitor::visit(). 00046 { v.visit(this); }
|
|
|
Definition at line 97 of file REROOT_SuperModule.cxx. 00098 {
00099 }
|
|
|
Definition at line 57 of file REROOT_SuperModule.h. 00057 {return m_CoilI;} // CoilI
|
|
|
Definition at line 56 of file REROOT_SuperModule.h. 00056 {return m_CoilSet;} // CoilSet
|
|
|
Definition at line 62 of file REROOT_SuperModule.h. Referenced by MINFDetGeom::BuildDetectorGeometry(), UgliGeometryReroot::BuildShapes(), and MINFast::GetEvent(). 00062 {return m_DnSpace;} // DnSpace
|
|
|
Definition at line 52 of file REROOT_SuperModule.h. 00052 {return m_ID;} // ID
|
|
|
Definition at line 87 of file REROOT_SuperModule.cxx. 00088 {
00089 }
|
|
|
Definition at line 58 of file REROOT_SuperModule.h. 00058 {return m_KATurn;} // KATurn
|
|
|
Definition at line 53 of file REROOT_SuperModule.h. Referenced by RerootExodus::CreateSteelMap(). 00053 {return m_NActvPln;} // NActvPln
|
|
|
Definition at line 54 of file REROOT_SuperModule.h. 00054 {return m_NAPlnMdl;} // NAPlnMdl
|
|
|
Definition at line 55 of file REROOT_SuperModule.h. 00055 {return m_NMdl;} // NMdl
|
|
|
Definition at line 102 of file REROOT_SuperModule.cxx. 00103 {
00104 pstream << "===================== SuperModule ====================\n";
00105 }
|
|
|
Definition at line 59 of file REROOT_SuperModule.h. Referenced by MINFDetGeom::BuildDetectorGeometry(), and UgliGeometryReroot::BuildShapes(). 00059 {return m_SupX0;} // SupX0
|
|
|
Definition at line 60 of file REROOT_SuperModule.h. Referenced by MINFDetGeom::BuildDetectorGeometry(), and UgliGeometryReroot::BuildShapes(). 00060 {return m_SupY0;} // SupY0
|
|
|
Definition at line 61 of file REROOT_SuperModule.h. Referenced by MINFDetGeom::BuildDetectorGeometry(), UgliGeometryReroot::BuildShapes(), and MINFast::GetEvent(). 00061 {return m_UpSpace;} // UpSpace
|
|
|
Definition at line 64 of file REROOT_SuperModule.h. Referenced by MINFDetGeom::BuildDetectorGeometry(), and UgliGeometryReroot::BuildShapes(). 00064 {return m_Xmax;} // Xmax
|
|
|
Definition at line 63 of file REROOT_SuperModule.h. Referenced by MINFDetGeom::BuildDetectorGeometry(), and UgliGeometryReroot::BuildShapes(). 00063 {return m_Xmin;} // Xmin
|
|
|
Definition at line 66 of file REROOT_SuperModule.h. Referenced by MINFDetGeom::BuildDetectorGeometry(), and UgliGeometryReroot::BuildShapes(). 00066 {return m_Ymax;} // Ymax
|
|
|
Definition at line 65 of file REROOT_SuperModule.h. Referenced by MINFDetGeom::BuildDetectorGeometry(), and UgliGeometryReroot::BuildShapes(). 00065 {return m_Ymin;} // Ymin
|
|
|
Definition at line 68 of file REROOT_SuperModule.h. References m_Zmax, and zoffset_REROOT(). Referenced by MINFDetGeom::BuildDetectorGeometry(), UgliGeometryReroot::BuildShapes(), and MINFast::GetEvent(). 00068 {return m_Zmax + zoffset_REROOT();} // Zmax
|
|
|
Definition at line 67 of file REROOT_SuperModule.h. References m_Zmin, and zoffset_REROOT(). Referenced by MINFDetGeom::BuildDetectorGeometry(), UgliGeometryReroot::BuildShapes(), and MINFast::GetEvent(). 00067 {return m_Zmin + zoffset_REROOT();} // Zmin
|
|
|
Definition at line 25 of file REROOT_SuperModule.h. |
|
|
Definition at line 24 of file REROOT_SuperModule.h. |
|
|
Definition at line 30 of file REROOT_SuperModule.h. |
|
|
Definition at line 20 of file REROOT_SuperModule.h. |
|
|
Definition at line 26 of file REROOT_SuperModule.h. |
|
|
Definition at line 21 of file REROOT_SuperModule.h. |
|
|
Definition at line 22 of file REROOT_SuperModule.h. |
|
|
Definition at line 23 of file REROOT_SuperModule.h. |
|
|
Definition at line 27 of file REROOT_SuperModule.h. |
|
|
Definition at line 28 of file REROOT_SuperModule.h. |
|
|
Definition at line 29 of file REROOT_SuperModule.h. |
|
|
Definition at line 32 of file REROOT_SuperModule.h. |
|
|
Definition at line 31 of file REROOT_SuperModule.h. |
|
|
Definition at line 34 of file REROOT_SuperModule.h. |
|
|
Definition at line 33 of file REROOT_SuperModule.h. |
|
|
Definition at line 36 of file REROOT_SuperModule.h. Referenced by Zmax(). |
|
|
Definition at line 35 of file REROOT_SuperModule.h. Referenced by Zmin(). |
1.3.9.1