00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00046
00047
00059
00060
00061 #ifndef _MAGEGEOMETRYGERMANIUMCRYSTALHOLE_HH
00062 #define _MAGEGEOMETRYGERMANIUMCRYSTALHOLE_HH
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072 class G4LogicalVolume;
00073 class G4VPhysicalVolume;
00074
00075
00076
00077
00078
00079 class MaGeGeometryGermaniumCrystalHole
00080 {
00081
00082 public:
00083
00084 MaGeGeometryGermaniumCrystalHole();
00085
00086
00087
00088
00089 ~MaGeGeometryGermaniumCrystalHole();
00090
00091
00092 inline G4LogicalVolume *GetCrystalActiveLogical()
00093 {return theGermaniumCrystalActiveLogical; };
00094 inline G4LogicalVolume *GetCrystalDeadLayerLogical()
00095 {return theGermaniumCrystalDeadlayerLogical; };
00096
00097
00098 void SetInnerRadius(G4double ir){GeCrystalInnerRadius = ir;} ;
00099 void SetOuterRadius(G4double our) {GeCrystalOuterRadius = our;} ;
00100 void SetHeight(G4double h) {GeCrystalHeight=h;} ;
00101 void SetDeadLayer(G4double dl) {GeCrystalDeadlayer=dl;} ;
00102 void SetHoleOuterRadius(G4double hour) {GeCrystalHoleOuterRadius = hour;} ;
00103 void SetHoleDepth(G4double hd) {GeCrystalHoleDepth = hd;} ;
00104
00105
00106 G4double GetInnerRadius() { return GeCrystalInnerRadius;};
00107 G4double GetOuterRadius() { return GeCrystalOuterRadius;};
00108 G4double GetHeight() { return GeCrystalHeight;};
00109 G4double GetDeadLayer() { return GeCrystalDeadlayer;};
00110 G4double GetHoleOuterRadius() { return GeCrystalHoleOuterRadius;};
00111 G4double GetHoleDepth() { return GeCrystalHoleDepth;};
00112
00113 void ConstructCrystal();
00114
00115 protected:
00116
00117
00118
00119 private:
00120
00121
00122
00123
00124 G4double GeCrystalInnerRadius;
00125 G4double GeCrystalOuterRadius;
00126 G4double GeCrystalHeight;
00127 G4double GeCrystalDeadlayer;
00128 G4double GeCrystalHoleOuterRadius;
00129 G4double GeCrystalHoleDepth;
00130
00131 G4LogicalVolume *theGermaniumCrystalActiveLogical;
00132 G4LogicalVolume *theGermaniumCrystalDeadlayerLogical;
00133
00134
00135 };
00136
00137 #endif