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 // G4tgrPlaceParameterisation implementation << 27 // 26 // 28 // Author: P.Arce, CIEMAT (November 2007) << 27 // $Id: G4tgrPlaceParameterisation.cc,v 1.6 2008/12/18 13:00:02 gunter Exp $ 29 // ------------------------------------------- << 28 // GEANT4 tag $Name: geant4-09-02 $ >> 29 // >> 30 // >> 31 // class G4tgrPlaceParameterisation >> 32 >> 33 // History: >> 34 // - Created. P.Arce, CIEMAT (November 2007) >> 35 // ------------------------------------------------------------------------- 30 36 31 #include "G4tgrPlaceParameterisation.hh" 37 #include "G4tgrPlaceParameterisation.hh" 32 #include "G4tgrUtils.hh" 38 #include "G4tgrUtils.hh" 33 #include "G4tgrVolume.hh" 39 #include "G4tgrVolume.hh" 34 #include "G4tgrMessenger.hh" 40 #include "G4tgrMessenger.hh" 35 41 36 // ------------------------------------------- << 42 //------------------------------------------------------------- 37 G4tgrPlaceParameterisation::G4tgrPlaceParamete 43 G4tgrPlaceParameterisation::G4tgrPlaceParameterisation() 38 { 44 { 39 } 45 } 40 46 41 // ------------------------------------------- << 47 >> 48 //------------------------------------------------------------- 42 G4tgrPlaceParameterisation::~G4tgrPlaceParamet 49 G4tgrPlaceParameterisation::~G4tgrPlaceParameterisation() 43 { 50 { 44 } 51 } 45 52 46 // ------------------------------------------- << 53 >> 54 //------------------------------------------------------------- 47 G4tgrPlaceParameterisation:: 55 G4tgrPlaceParameterisation:: 48 G4tgrPlaceParameterisation(const std::vector<G << 56 G4tgrPlaceParameterisation( const std::vector<G4String>& wl ) 49 { 57 { 50 theType = "PlaceParam"; 58 theType = "PlaceParam"; 51 59 52 //---------- Check for exact number of words << 60 //---------- Check for exact number of words read 53 G4tgrUtils::CheckWLsize(wl, 7, WLSIZE_GE, << 61 G4tgrUtils::CheckWLsize( wl, 7, WLSIZE_GE, 54 "G4tgrPlaceParameter << 62 "G4tgrPlaceParameterisation::ConstructVolume" ); 55 << 63 56 //---------- the copy No 64 //---------- the copy No 57 theCopyNo = G4tgrUtils::GetInt(wl[2]) - 1; << 65 theCopyNo = G4tgrUtils::GetInt( wl[2] )-1; 58 66 59 //---------- set the parent name 67 //---------- set the parent name 60 theParentName = G4tgrUtils::GetString(wl[3]) << 68 theParentName = G4tgrUtils::GetString( wl[3] ); 61 69 62 //---------- set the type 70 //---------- set the type 63 theParamType = G4tgrUtils::GetString(wl[4]); << 71 theParamType = G4tgrUtils::GetString( wl[4] ); 64 72 65 //---------- set the rotation matrix name 73 //---------- set the rotation matrix name 66 theRotMatName = G4tgrUtils::GetString(wl[5]) 74 theRotMatName = G4tgrUtils::GetString(wl[5]); 67 << 75 68 //---------- set the extra data << 76 //---------- set the extra data 69 for(size_t ii = 6; ii < wl.size(); ii++) << 77 for( size_t ii = 6; ii < wl.size(); ii++) 70 { 78 { 71 theExtraData.push_back(G4tgrUtils::GetDoub << 79 theExtraData.push_back( G4tgrUtils::GetDouble(wl[ii]) ); 72 } 80 } 73 81 74 #ifdef G4VERBOSE 82 #ifdef G4VERBOSE 75 if(G4tgrMessenger::GetVerboseLevel() >= 1) << 83 if( G4tgrMessenger::GetVerboseLevel() >= 1 ) 76 { 84 { 77 G4cout << " Created " << *this << G4endl; << 85 G4cout << " Created " << *this << G4endl; 78 } 86 } 79 #endif 87 #endif 80 } 88 } 81 89 82 // ------------------------------------------- << 90 >> 91 // ------------------------------------------------------------------------- 83 std::ostream& operator<<(std::ostream& os, 92 std::ostream& operator<<(std::ostream& os, 84 const G4tgrPlaceParam 93 const G4tgrPlaceParameterisation& obj) 85 { 94 { 86 os << "G4tgrPlaceParameterisation= in " << o 95 os << "G4tgrPlaceParameterisation= in " << obj.theParentName 87 << " ParamTyep = " << obj.theParamType 96 << " ParamTyep = " << obj.theParamType 88 << " RotMatName= " << obj.theRotMatName < 97 << " RotMatName= " << obj.theRotMatName << " EXTRA DATA= "; 89 for(size_t ii = 0; ii < obj.theExtraData.siz << 98 for( size_t ii = 0; ii << obj.theExtraData.size(); ii++ ) 90 { 99 { 91 os << obj.theExtraData[ii] << " "; 100 os << obj.theExtraData[ii] << " "; 92 } 101 } 93 os << G4endl; 102 os << G4endl; 94 103 95 return os; 104 return os; 96 } 105 } >> 106 97 107