Go to the documentation of this file.00001 #ifndef DDDivision_h
00002 #define DDDivision_h
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00046
00056 #include "DetectorDescription/Core/interface/DDName.h"
00057 #include "DetectorDescription/Core/interface/DDLogicalPart.h"
00058 #include "DetectorDescription/Core/interface/DDBase.h"
00059 #include "DetectorDescription/Core/interface/DDAxes.h"
00060 #include "DetectorDescription/Base/interface/Singleton.h"
00061
00062 namespace DDI { class Division; }
00063
00064 class DDMaterial;
00065 class DDSolid;
00066 class DDDivision;
00067 class DDPartSelection;
00068
00069 std::ostream & operator<<( std::ostream &, const DDDivision &);
00070
00071 class DDDivision : public DDBase<DDName, DDI::Division*>
00072 {
00073 friend std::ostream & operator<<( std::ostream &, const DDDivision &);
00074
00075 public:
00076
00078 DDDivision();
00079
00081 DDDivision(const DDName & name);
00082
00084
00086 DDDivision(const DDName & name,
00087 const DDLogicalPart & parent,
00088 const DDAxes axis,
00089 const int nReplicas,
00090 const double width,
00091 const double offset );
00092
00093
00095
00097 DDDivision(const DDName & name,
00098 const DDLogicalPart & parent,
00099 const DDAxes axis,
00100 const int nReplicas,
00101 const double offset );
00102
00104
00106 DDDivision(const DDName & name,
00107 const DDLogicalPart & parent,
00108 const DDAxes axis,
00109 const double width,
00110 const double offset );
00111
00112
00113
00114 DDAxes axis() const;
00115 int nReplicas() const;
00116 double width() const;
00117 double offset() const;
00118 const DDLogicalPart & parent() const;
00119
00120
00121 };
00122
00123
00124
00125
00126
00127 typedef DDI::Singleton<std::map<std::string,std::vector<DDName> > > DIVNAMES;
00128
00129 #endif