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 // G4tgrParameterMgr implementation << 27 // 26 // 28 // Author: P.Arce, CIEMAT (November 2007) << 27 // $Id: G4tgrParameterMgr.cc 69803 2013-05-15 15:24:50Z gcosmo $ 29 // ------------------------------------------- << 28 // >> 29 // >> 30 // class G4tgrParameterMgr >> 31 >> 32 // History: >> 33 // - Created. P.Arce, CIEMAT (November 2007) >> 34 // ------------------------------------------------------------------------- 30 35 31 #include "G4tgrParameterMgr.hh" 36 #include "G4tgrParameterMgr.hh" 32 #include "G4tgrUtils.hh" 37 #include "G4tgrUtils.hh" 33 #include "G4tgrMaterialFactory.hh" 38 #include "G4tgrMaterialFactory.hh" 34 #include "G4tgrRotationMatrixFactory.hh" 39 #include "G4tgrRotationMatrixFactory.hh" 35 #include "G4tgrFileReader.hh" 40 #include "G4tgrFileReader.hh" 36 #include "G4tgrMessenger.hh" 41 #include "G4tgrMessenger.hh" 37 #include "G4UIcommand.hh" 42 #include "G4UIcommand.hh" 38 43 39 G4ThreadLocal G4tgrParameterMgr* G4tgrParamete << 44 G4tgrParameterMgr* G4tgrParameterMgr::theInstance = 0; >> 45 40 46 41 // ------------------------------------------- << 47 //------------------------------------------------------------- 42 G4tgrParameterMgr::G4tgrParameterMgr() 48 G4tgrParameterMgr::G4tgrParameterMgr() 43 { 49 { 44 } 50 } 45 51 46 // ------------------------------------------- << 52 >> 53 //------------------------------------------------------------- 47 G4tgrParameterMgr::~G4tgrParameterMgr() 54 G4tgrParameterMgr::~G4tgrParameterMgr() 48 { 55 { 49 delete theInstance; 56 delete theInstance; 50 } 57 } 51 58 52 // ------------------------------------------- << 59 >> 60 //------------------------------------------------------------- 53 G4tgrParameterMgr* G4tgrParameterMgr::GetInsta 61 G4tgrParameterMgr* G4tgrParameterMgr::GetInstance() 54 { 62 { 55 if(theInstance == nullptr) << 63 if( !theInstance ) 56 { 64 { 57 theInstance = new G4tgrParameterMgr; 65 theInstance = new G4tgrParameterMgr; 58 } 66 } 59 return theInstance; 67 return theInstance; 60 } 68 } 61 69 62 // ------------------------------------------- << 70 63 void G4tgrParameterMgr::AddParameterNumber(con << 71 //------------------------------------------------------------- 64 G4b << 72 void G4tgrParameterMgr::AddParameterNumber( const std::vector<G4String>& wl, >> 73 G4bool mustBeNew ) 65 { 74 { 66 CheckIfNewParameter(wl, mustBeNew); << 75 CheckIfNewParameter( wl, mustBeNew ); 67 76 68 //----- Convert third argument to double, bu 77 //----- Convert third argument to double, but then store it as string 69 // for later use in CLHEP evaluator << 78 // for later use in CLHEP evaluator 70 G4float val = G4tgrUtils::GetDou << 79 G4float val = G4tgrUtils::GetDouble( wl[2] ); 71 theParameterList[wl[1]] = G4UIcommand::Conve << 80 theParameterList[ wl[1] ] = G4UIcommand::ConvertToString( val ); 72 81 73 #ifdef G4VERBOSE 82 #ifdef G4VERBOSE 74 if(G4tgrMessenger::GetVerboseLevel() >= 2) << 83 if( G4tgrMessenger::GetVerboseLevel() >= 2 ) 75 { 84 { 76 G4cout << " G4tgrParameterMgr::AddParamete 85 G4cout << " G4tgrParameterMgr::AddParameterNumber() -" 77 << " parameter added " << wl[1] << << 86 << " parameter added " << wl[1] 78 << G4endl; << 87 << " = " << theParameterList[ wl[1] ] << G4endl; 79 } 88 } 80 #endif 89 #endif 81 } 90 } 82 91 83 // ------------------------------------------- << 92 84 void G4tgrParameterMgr::AddParameterString(con << 93 //------------------------------------------------------------- 85 G4b << 94 void G4tgrParameterMgr::AddParameterString( const std::vector<G4String>& wl, >> 95 G4bool mustBeNew ) 86 { 96 { 87 CheckIfNewParameter(wl, mustBeNew); << 97 CheckIfNewParameter( wl, mustBeNew ); 88 98 89 //----- Store parameter as string 99 //----- Store parameter as string 90 theParameterList[wl[1]] = wl[2]; << 100 theParameterList[ wl[1] ] = wl[2]; 91 101 92 #ifdef G4VERBOSE 102 #ifdef G4VERBOSE 93 if(G4tgrMessenger::GetVerboseLevel() >= 2) << 103 if( G4tgrMessenger::GetVerboseLevel() >= 2 ) 94 { 104 { 95 G4cout << " G4tgrParameterMgr::AddParamete 105 G4cout << " G4tgrParameterMgr::AddParameterString() -" 96 << " parameter added " << wl[1] << << 106 << " parameter added " << wl[1] 97 << G4endl; << 107 << " = " << theParameterList[ wl[1] ] << G4endl; 98 } 108 } 99 #endif 109 #endif 100 } 110 } 101 111 102 // ------------------------------------------- << 112 //------------------------------------------------------------- 103 void G4tgrParameterMgr::CheckIfNewParameter(co << 113 void G4tgrParameterMgr::CheckIfNewParameter( const std::vector<G4String>& wl, 104 G4 << 114 G4bool mustBeNew ) 105 { 115 { 106 //---------- Find first if it exists already 116 //---------- Find first if it exists already 107 G4bool existsAlready; 117 G4bool existsAlready; 108 G4mapss::const_iterator sdite = theParameter << 118 G4mapss::iterator sdite = theParameterList.find( wl[1] ); 109 if(sdite == theParameterList.cend()) << 119 if( sdite == theParameterList.end() ) 110 { 120 { 111 existsAlready = false; 121 existsAlready = false; 112 } 122 } 113 else 123 else 114 { 124 { 115 existsAlready = true; 125 existsAlready = true; 116 } 126 } 117 127 118 if(existsAlready) 128 if(existsAlready) 119 { 129 { 120 if(mustBeNew) << 130 if( mustBeNew ) 121 { 131 { 122 G4String ErrMessage = "Parameter already 132 G4String ErrMessage = "Parameter already exists... " + wl[1]; 123 G4Exception("G4tgrParameterMgr::CheckPar << 133 G4Exception("G4tgrParameterMgr::CheckParameter()", 124 FatalException, ErrMessage); << 134 "IllegalConstruct", FatalException, ErrMessage); 125 } 135 } 126 else 136 else 127 { 137 { 128 G4String WarMessage = "Parameter already 138 G4String WarMessage = "Parameter already exists... " + wl[1]; 129 G4Exception("G4tgrParameterMgr::CheckPar << 139 G4Exception("G4tgrParameterMgr::CheckParameter()", 130 JustWarning, WarMessage); << 140 "NotRecommended", JustWarning, WarMessage); 131 } 141 } 132 } 142 } 133 << 143 134 //---------- Check for miminum number of wor << 144 //---------- Check for miminum number of words read 135 G4tgrUtils::CheckWLsize(wl, 3, WLSIZE_EQ, "P << 145 G4tgrUtils::CheckWLsize( wl, 3, WLSIZE_EQ, "Parameter::AddParameter"); 136 } 146 } 137 147 138 // ------------------------------------------- << 148 139 G4String G4tgrParameterMgr::FindParameter(cons << 149 //------------------------------------------------------------- >> 150 G4String G4tgrParameterMgr::FindParameter( const G4String& name, G4bool exists ) 140 { 151 { 141 G4String par = ""; 152 G4String par = ""; 142 << 153 143 G4mapss::const_iterator sdite = theParameter << 154 G4mapss::iterator sdite = theParameterList.find( name ); 144 if(sdite == theParameterList.cend()) << 155 if( sdite == theParameterList.end() ) 145 { 156 { 146 if(exists) << 157 if( exists ) 147 { 158 { 148 DumpList(); 159 DumpList(); 149 G4String ErrMessage = "Parameter not fou 160 G4String ErrMessage = "Parameter not found in list: " + name; 150 G4Exception("G4tgrParameterMgr::FindPara << 161 G4Exception("G4tgrParameterMgr::FindParameter()", 151 FatalException, ErrMessage); << 162 "InvalidSetup", FatalException, ErrMessage); 152 } 163 } 153 } 164 } 154 else 165 else 155 { 166 { 156 exists = 1; 167 exists = 1; 157 par = ((*sdite).second); << 168 par = ((*sdite).second); 158 #ifdef G4VERBOSE 169 #ifdef G4VERBOSE 159 if(G4tgrMessenger::GetVerboseLevel() >= 3) << 170 if( G4tgrMessenger::GetVerboseLevel() >= 3 ) 160 { << 171 { 161 G4cout << " G4tgrParameterMgr::FindParam << 172 G4cout << " G4tgrParameterMgr::FindParameter() -" 162 << " parameter found " << name << << 173 << " parameter found " << name << " = " << par << G4endl; 163 } << 174 } 164 #endif 175 #endif 165 } 176 } 166 177 167 return par; 178 return par; 168 } 179 } 169 180 170 // ------------------------------------------- << 181 >> 182 //------------------------------------------------------------- 171 void G4tgrParameterMgr::DumpList() 183 void G4tgrParameterMgr::DumpList() 172 { 184 { 173 //---------- Dump number of objects of each 185 //---------- Dump number of objects of each class 174 G4cout << " @@@@@@@@@@@@@@@@@@ Dumping param 186 G4cout << " @@@@@@@@@@@@@@@@@@ Dumping parameter list " << G4endl; 175 for(auto cite = theParameterList.cbegin(); << 187 G4mapss::const_iterator cite; 176 cite != theParameterList.cend(); ++ << 188 for( cite = theParameterList.begin();cite != theParameterList.end(); cite++ ) 177 { 189 { 178 G4cout << (*cite).first << " = " << (*cite 190 G4cout << (*cite).first << " = " << (*cite).second << G4endl; 179 } 191 } 180 } 192 } 181 193