Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4LENDManager Class Reference

#include <G4LENDManager.hh>

Public Member Functions

G4GIDI_targetGetLENDTarget (G4ParticleDefinition *, const G4String &, G4int iZ, G4int iA, G4int iM=0)
 
std::vector< G4StringIsLENDTargetAvailable (G4ParticleDefinition *, G4int iZ, G4int iA, G4int iM=0)
 
G4int GetNucleusEncoding (G4int iZ, G4int iA, G4int iM)
 
G4NistElementBuilderGetNistElementBuilder ()
 
G4int GetVerboseLevel ()
 
G4bool RequestChangeOfVerboseLevel (G4int)
 
G4double GetExcitationEnergyOfExcitedIsomer (G4int, G4int, G4int)
 

Static Public Member Functions

static G4LENDManagerGetInstance ()
 

Detailed Description

Definition at line 63 of file G4LENDManager.hh.

Member Function Documentation

◆ GetExcitationEnergyOfExcitedIsomer()

G4double G4LENDManager::GetExcitationEnergyOfExcitedIsomer ( G4int iZ,
G4int iA,
G4int iM )

Definition at line 401 of file G4LENDManager.cc.

402{
403 G4double EE = 0.0;
404 G4int nucCode = GetNucleusEncoding( iZ , iA , iM );
405 auto it = mExcitationEnergy.find( nucCode );
406 if ( it != mExcitationEnergy.cend() ) {
407 EE = it->second;
408 } else {
409 if ( iM == 0 ) {
410 G4cout << "G4LENDManager::GetExcitationEnergyOfExcitedIsomer is called for ground state (iM=0) nucleus" << G4endl;
411 } else {
412 G4cout << "Can not find excitation energy for Z = " << iZ << ", A = " << iA << ", M = " << iM << " and the energy set to 0." << G4endl;
413 }
414 }
415 return EE;
416}
double G4double
Definition G4Types.hh:83
int G4int
Definition G4Types.hh:85
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout
G4int GetNucleusEncoding(G4int iZ, G4int iA, G4int iM)

Referenced by G4LENDElastic::ApplyYourself().

◆ GetInstance()

static G4LENDManager * G4LENDManager::GetInstance ( )
inlinestatic

Definition at line 77 of file G4LENDManager.hh.

78 {
79 if ( lend_manager == NULL) lend_manager = new G4LENDManager();
80 return lend_manager;
81 };

Referenced by G4LENDElastic::ApplyYourself(), G4LENDCrossSection::G4LENDCrossSection(), and G4LENDModel::G4LENDModel().

◆ GetLENDTarget()

G4GIDI_target * G4LENDManager::GetLENDTarget ( G4ParticleDefinition * proj,
const G4String & evaluation,
G4int iZ,
G4int iA,
G4int iM = 0 )

Definition at line 206 of file G4LENDManager.cc.

207{
208
209 G4GIDI_target* anLENDTarget = NULL;
210
211 if ( iM > 9 ) {
212 throw G4HadronicException(__FILE__, __LINE__, "Requested isomer level of target is too high." );
213 }
214
215 G4int iTarg = GetNucleusEncoding( iZ , iA , iM );
216
217 // Searching in current map
218 for ( auto it = v_lend_target.cbegin() ; it != v_lend_target.cend() ; ++it )
219 {
220 if ( it->proj == proj && it->target_code == iTarg && it->evaluation == evaluation )
221 {
222 //find!
223 return it->target;
224 }
225 }
226
227
228 if ( proj_lend_map.find ( proj ) == proj_lend_map.cend() ) {
229 G4cout << proj->GetParticleName() << " is not supported by this LEND library." << G4endl;
230 return anLENDTarget; // return NULL
231 }
232
233 G4GIDI* xlend = proj_lend_map.find ( proj ) -> second;
234
235 if ( xlend->isThisDataAvailable( evaluation, iZ, iA , iM ) )
236 {
237
238 if ( verboseLevel > 1 ) {
239 G4cout << evaluation << " for " << ionTable->GetIonName( iZ , iA , 0 )
240 << " with Isomer level of " << iM << " is exist in this LEND." << G4endl;
241 }
242
243 anLENDTarget = xlend->readTarget( evaluation , iZ , iA , iM );
244
245 lend_target new_target;
246 new_target.lend = xlend;
247 new_target.target = anLENDTarget;
248 new_target.proj = proj;
249 new_target.evaluation = evaluation;
250 new_target.target_code = iTarg;
251
252 v_lend_target.push_back( std::move(new_target) );
253
254// found EXACT
255 return anLENDTarget;
256
257 }
258 else
259 {
260// NO EXACT DATA (Evaluatino & Z,A,M)
261
262 //Searching available evaluation and natural abundance data and give suggestions.
263 //
264 if ( verboseLevel > 1 )
265 G4cout << evaluation << " for " << ionTable->GetIonName( iZ , iA , 0 )
266 << " with Isomer level of " << iM << " is not exist in this LEND." << G4endl;
267
268 std::vector< std::string >* available = xlend->getNamesOfAvailableLibraries( iZ, iA , iM );
269 if ( available->size() > 0 ) {
270// EXACT Z,A,M but Evaluation is different
271 if ( verboseLevel > 1 )
272 {
273 G4cout << " However you can use following evaluation(s) for the target. " << G4endl;
274
275 for ( auto its = available->cbegin() ; its != available->cend() ; ++its )
276 G4cout << *its << G4endl;
277
278 G4cout << G4endl;
279 }
280 } else if ( xlend->isThisDataAvailable( evaluation, iZ, 0 , iM ) ) {
281//
282// checking natural abundance data for Z
283//
284// EXACT natural abundance data for the evaluation
285 if ( verboseLevel > 1 )
286 G4cout << " However you can use natural abundance data for the target. " << G4endl;
287 }
288 else
289 {
290 std::vector< std::string >* available_nat = xlend->getNamesOfAvailableLibraries( iZ, 0 , iM );
291//
292 if ( available_nat->size() > 0 ) {
293// EXACT natural abundance data for Z but differnet evaluation
294 if ( verboseLevel > 1 ) {
295 G4cout << " However you can use following evaluation(s) for natural abundace of the target. " << G4endl;
296
297 for ( auto its = available_nat->cbegin() ; its != available_nat->cend() ; ++its )
298 G4cout << *its << G4endl;
299 G4cout << G4endl;
300 }
301 }
302 delete available_nat;
303 }
304 delete available;
305// return NULL if exact data is not available
306 return anLENDTarget; // return NULL
307 }
308
309 return anLENDTarget;
310}
G4GIDI_target * readTarget(const std::string &lib_name, G4int iZ, G4int iA, G4int iM=0, G4bool bind=true)
Definition G4GIDI.cc:262
G4bool isThisDataAvailable(const std::string &lib_name, G4int iZ, G4int iA, G4int iM=0)
Definition G4GIDI.cc:159
std::vector< std::string > * getNamesOfAvailableLibraries(G4int iZ, G4int iA, G4int iM=0)
Definition G4GIDI.cc:212
const G4String & GetParticleName() const
G4ParticleDefinition * proj
G4GIDI_target * target
G4GIDI * lend
G4String evaluation

◆ GetNistElementBuilder()

G4NistElementBuilder * G4LENDManager::GetNistElementBuilder ( )
inline

Definition at line 87 of file G4LENDManager.hh.

87{ return nistElementBuilder; };

◆ GetNucleusEncoding()

G4int G4LENDManager::GetNucleusEncoding ( G4int iZ,
G4int iA,
G4int iM )

Definition at line 337 of file G4LENDManager.cc.

338{
339 G4int value = ionTable->GetNucleusEncoding( iZ , iA ); // Ground State
340 // G4double E=0.0, G4int J=0);
341 value += iM;
342 return value;
343}

Referenced by GetExcitationEnergyOfExcitedIsomer(), and GetLENDTarget().

◆ GetVerboseLevel()

G4int G4LENDManager::GetVerboseLevel ( )
inline

Definition at line 89 of file G4LENDManager.hh.

89{ return verboseLevel; };

◆ IsLENDTargetAvailable()

std::vector< G4String > G4LENDManager::IsLENDTargetAvailable ( G4ParticleDefinition * proj,
G4int iZ,
G4int iA,
G4int iM = 0 )

Definition at line 313 of file G4LENDManager.cc.

314{
315
316 std::vector< G4String > vEvaluation;
317 if ( proj_lend_map.find ( proj ) == proj_lend_map.cend() )
318 {
319 G4cout << proj->GetParticleName() << " is not supported by this LEND." << G4endl;
320 return vEvaluation; // return empty
321 }
322
323 G4GIDI* xlend = proj_lend_map.find ( proj ) -> second;
324 std::vector< std::string >* available = xlend->getNamesOfAvailableLibraries( iZ, iA , iM );
325
326 if ( available->size() > 0 ) {
327 for ( auto its = available->cbegin() ; its != available->cend() ; ++its )
328 vEvaluation.push_back ( *its );
329 }
330 delete available;
331
332 return vEvaluation;
333}

◆ RequestChangeOfVerboseLevel()

G4bool G4LENDManager::RequestChangeOfVerboseLevel ( G4int newValue)

Definition at line 385 of file G4LENDManager.cc.

386{
387 G4bool result=false;
388 if ( newValue >= verboseLevel)
389 {
390 verboseLevel = newValue;
391 result=true;
392 }
393 else
394 {
395 G4cout << "Since other LEND model or cross section have set the higher verbose level (" << verboseLevel << ") in LENDManager, you cannot change the value now." << G4endl;
396 }
397
398 return result;
399}
bool G4bool
Definition G4Types.hh:86

The documentation for this class was generated from the following files: