Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 // G4tgrVolumeDivision implementation << 27 // 26 // 28 // Author: P.Arce, CIEMAT (November 2007) << 27 // $Id: G4tgrVolumeDivision.cc,v 1.6 2008/12/18 13:00:20 gunter Exp $ 29 // ------------------------------------------- << 28 // GEANT4 tag $Name: geant4-09-02 $ >> 29 // >> 30 // >> 31 // class G4tgrVolumeDivision 30 32 31 #include "G4tgrVolumeDivision.hh" << 33 // History: >> 34 // - Created. P.Arce, CIEMAT (November 2007) >> 35 // ------------------------------------------------------------------------- 32 36 33 #include "G4SystemOfUnits.hh" << 37 #include "G4tgrVolumeDivision.hh" 34 #include "G4tgrUtils.hh" 38 #include "G4tgrUtils.hh" 35 #include "G4tgrVolumeMgr.hh" 39 #include "G4tgrVolumeMgr.hh" 36 #include "G4tgrPlace.hh" 40 #include "G4tgrPlace.hh" 37 #include "G4tgrFileReader.hh" 41 #include "G4tgrFileReader.hh" 38 #include "G4tgrPlaceDivRep.hh" 42 #include "G4tgrPlaceDivRep.hh" 39 #include "G4tgrMessenger.hh" 43 #include "G4tgrMessenger.hh" 40 44 41 // ------------------------------------------- << 45 >> 46 G4mmss G4tgrVolumeDivision::theSupportedAxis; >> 47 >> 48 >> 49 //------------------------------------------------------------- 42 G4tgrVolumeDivision::~G4tgrVolumeDivision() 50 G4tgrVolumeDivision::~G4tgrVolumeDivision() 43 { 51 { 44 } 52 } 45 53 46 // ------------------------------------------- << 54 47 G4tgrVolumeDivision::G4tgrVolumeDivision(const << 55 //------------------------------------------------------------- >> 56 G4tgrVolumeDivision::G4tgrVolumeDivision( const std::vector<G4String>& wl ) 48 { 57 { 49 // wl: NAME PARENT MATERIAL AXIS STEP/NDIV 58 // wl: NAME PARENT MATERIAL AXIS STEP/NDIV OFFSET 50 59 51 G4tgrUtils::CheckWLsize(wl, 6, WLSIZE_GE, << 60 G4tgrUtils::CheckWLsize( wl, 6, WLSIZE_GE, 52 "G4tgrVolumeDivision << 61 "G4tgrVolumeDivision::G4tgrVolumeDivision" ); 53 G4tgrUtils::CheckWLsize(wl, 8, WLSIZE_LE, << 62 G4tgrUtils::CheckWLsize( wl, 8, WLSIZE_LE, 54 "G4tgrVolumeDivision << 63 "G4tgrVolumeDivision::G4tgrVolumeDivision" ); 55 64 56 theType = "VOLDivision"; 65 theType = "VOLDivision"; 57 66 58 // :DIV NAME PARENT MATERIAL AXIS STEP/NDIV 67 // :DIV NAME PARENT MATERIAL AXIS STEP/NDIV OFFSET 59 68 60 //---------- set name << 69 //---------- set name 61 theName = G4tgrUtils::GetString(wl[1]); << 70 theName = G4tgrUtils::GetString( wl[1] ); 62 << 71 63 //---------- set the pointer to the parent D 72 //---------- set the pointer to the parent DU 64 G4String parentName = G4tgrUtils::GetString( 73 G4String parentName = G4tgrUtils::GetString(wl[2]); 65 G4tgrVolumeMgr::GetInstance()->FindVolume(pa << 74 G4tgrVolumeMgr::GetInstance()->FindVolume( parentName, 1); // check existance 66 75 67 //---------- initialize G4tgrPlace 76 //---------- initialize G4tgrPlace 68 thePlaceDiv = new G4tgrPlaceDivRep(); 77 thePlaceDiv = new G4tgrPlaceDivRep(); 69 thePlaceDiv->SetParentName(parentName); << 78 thePlaceDiv->SetParentName( parentName ); 70 thePlaceDiv->SetType("PlaceDivision"); 79 thePlaceDiv->SetType("PlaceDivision"); 71 thePlaceDiv->SetVolume(this); << 80 thePlaceDiv->SetVolume( this ); 72 81 73 //---------- set material name 82 //---------- set material name 74 theMaterialName = G4tgrUtils::GetString(wl[3 << 83 theMaterialName = G4tgrUtils::GetString( wl[3] ); 75 << 84 76 //----- set axis of replica 85 //----- set axis of replica 77 thePlaceDiv->SetAxis(thePlaceDiv->BuildAxis( << 86 thePlaceDiv->SetAxis( thePlaceDiv->BuildAxis(G4tgrUtils::GetString(wl[4])) ); 78 87 79 //------ register parent - child << 88 //------ register parent - child 80 G4tgrVolumeMgr::GetInstance()->RegisterParen << 89 G4tgrVolumeMgr::GetInstance()->RegisterParentChild( parentName, thePlaceDiv ); 81 #ifdef G4VERBOSE 90 #ifdef G4VERBOSE 82 if(G4tgrMessenger::GetVerboseLevel() >= 3) << 91 if( G4tgrMessenger::GetVerboseLevel() >= 3 ) 83 { 92 { 84 G4cout << " G4tgrVolumeDivision::G4tgrVolu 93 G4cout << " G4tgrVolumeDivision::G4tgrVolumeDivision() -" 85 << " Replica register parent - chil 94 << " Replica register parent - child " << G4endl; 86 } 95 } 87 #endif 96 #endif 88 97 89 //---------- set if division is given by num 98 //---------- set if division is given by number of divisions of by width 90 G4String wl0 = wl[0]; 99 G4String wl0 = wl[0]; 91 for(G4int ii = 0; ii < (G4int)wl0.length(); << 100 for( size_t ii = 0; ii < wl0.length(); ii++ ) 92 { 101 { 93 wl0[ii] = (char)std::toupper(wl0[ii]); << 102 wl0[ii] = toupper( wl0[ii] ); 94 } 103 } 95 104 96 if(wl0 == ":DIV_NDIV") << 105 if( wl0 == ":DIV_NDIV" ) 97 { 106 { 98 thePlaceDiv->SetDivType(DivByNdiv); << 107 thePlaceDiv->SetDivType( DivByNdiv ); 99 thePlaceDiv->SetNDiv(G4tgrUtils::GetInt(wl << 108 thePlaceDiv->SetNDiv( G4tgrUtils::GetInt( wl[5] ) ); 100 if(wl.size() == 7) << 109 if( wl.size() == 7 ) 101 { 110 { 102 thePlaceDiv->SetOffset(G4tgrUtils::GetDo << 111 thePlaceDiv->SetOffset( G4tgrUtils::GetDouble( wl[6] )*mm ); 103 } 112 } 104 } 113 } 105 else if(wl0 == ":DIV_WIDTH") << 114 else if( wl0 == ":DIV_WIDTH" ) 106 { 115 { 107 thePlaceDiv->SetDivType(DivByWidth); << 116 thePlaceDiv->SetDivType( DivByWidth ); 108 thePlaceDiv->SetWidth(G4tgrUtils::GetDoubl << 117 thePlaceDiv->SetWidth( G4tgrUtils::GetDouble( wl[5] )*mm ); 109 if(wl.size() == 7) << 118 if( wl.size() == 7 ) 110 { 119 { 111 thePlaceDiv->SetOffset(G4tgrUtils::GetDo << 120 thePlaceDiv->SetOffset( G4tgrUtils::GetDouble( wl[6] )*mm ); 112 } 121 } 113 } 122 } 114 else if(wl0 == ":DIV_NDIV_WIDTH") << 123 else if( wl0 == ":DIV_NDIV_WIDTH" ) 115 { 124 { 116 thePlaceDiv->SetDivType(DivByNdivAndWidth) << 125 thePlaceDiv->SetDivType( DivByNdivAndWidth ); 117 thePlaceDiv->SetNDiv(G4tgrUtils::GetInt(wl << 126 thePlaceDiv->SetNDiv( G4tgrUtils::GetInt( wl[5] ) ); 118 thePlaceDiv->SetWidth(G4tgrUtils::GetDoubl << 127 thePlaceDiv->SetWidth( G4tgrUtils::GetDouble( wl[6] )*mm ); 119 if(wl.size() == 8) << 128 if( wl.size() == 8 ) 120 { 129 { 121 thePlaceDiv->SetOffset(G4tgrUtils::GetDo << 130 thePlaceDiv->SetOffset( G4tgrUtils::GetDouble( wl[7] )*mm ); 122 } 131 } 123 } 132 } 124 else 133 else 125 { 134 { 126 G4String ErrMessage = "Division type not s 135 G4String ErrMessage = "Division type not supported, sorry... " + wl[0]; 127 G4Exception("G4tgrVolumeDivision::G4tgrVol << 136 G4Exception("G4tgrVolumeDivision::G4tgrVolumeDivision()", 128 FatalException, ErrMessage); << 137 "NotImplemented", FatalException, ErrMessage); 129 } 138 } 130 139 131 theVisibility = 1; 140 theVisibility = 1; 132 theRGBColour = new G4double[3]; << 141 theRGBColour = new G4double[3]; 133 for(std::size_t ii = 0; ii < 3; ++ii) << 142 for(size_t ii=0; ii<3; ii++) { theRGBColour[ii] = -1.; } 134 { << 135 theRGBColour[ii] = -1.; << 136 } << 137 143 138 #ifdef G4VERBOSE 144 #ifdef G4VERBOSE 139 if(G4tgrMessenger::GetVerboseLevel() >= 1) << 145 if( G4tgrMessenger::GetVerboseLevel() >= 1 ) 140 { 146 { 141 G4cout << " Created " << *this << G4endl; << 147 G4cout << " Created " << *this << G4endl; 142 } 148 } 143 #endif 149 #endif 144 150 145 theSolid = nullptr; << 151 theSolid = 0; 146 } 152 } 147 153 148 // ------------------------------------------- << 154 >> 155 // ------------------------------------------------------------------------- 149 std::ostream& operator<<(std::ostream& os, con 156 std::ostream& operator<<(std::ostream& os, const G4tgrVolumeDivision& obj) 150 { 157 { 151 os << "G4tgrVolumeDivision= " << obj.theName 158 os << "G4tgrVolumeDivision= " << obj.theName 152 << " Placement= " << *(obj.thePlaceDiv) < 159 << " Placement= " << *(obj.thePlaceDiv) << G4endl; 153 160 154 return os; 161 return os; 155 } 162 } 156 163