Geant4-11
Functions
G4GIDI_Misc.hh File Reference
#include <MCGIDI_map.h>

Go to the source code of this file.

Functions

char * G4GIDI_Misc_channelCompound (char *particle1, char *particle2)
 
char * G4GIDI_Misc_Z_A_m_ToName (int iZ, int iA, int im=0)
 
int getNamesOfAvailableTargets_walker (GIDI::MCGIDI_mapEntry *entry, int level, void *userData)
 

Function Documentation

◆ G4GIDI_Misc_channelCompound()

char * G4GIDI_Misc_channelCompound ( char *  particle1,
char *  particle2 
)

Definition at line 70 of file G4GIDI_Misc.cc.

70 {
71
72 int Z1, A1, m1, Z2, A2, m2, level1, level2;
73
74 if( MCGIDI_miscNameToZAm( NULL, particle1, &Z1, &A1, &m1, &level1 ) ) return( NULL );
75 if( MCGIDI_miscNameToZAm( NULL, particle2, &Z2, &A2, &m2, &level2 ) ) return( NULL );
76 if( A1 == 0 ) A2 = 0;
77 if( A2 == 0 ) A1 = 0;
78 return( G4GIDI_Misc_Z_A_m_ToName( Z1 + Z2, A1 + A2, 0 ) );
79}
char * G4GIDI_Misc_Z_A_m_ToName(int iZ, int iA, int im)
Definition: G4GIDI_Misc.cc:44
static constexpr double m2
Definition: G4SIunits.hh:110
int MCGIDI_miscNameToZAm(statusMessageReporting *smr, const char *name, int *Z, int *A, int *m, int *level)
Definition: MCGIDI_misc.cc:81
static const G4double Z1[5]
Definition: paraMaker.cc:41

References G4GIDI_Misc_Z_A_m_ToName(), m2, MCGIDI_miscNameToZAm(), and anonymous_namespace{paraMaker.cc}::Z1.

◆ G4GIDI_Misc_Z_A_m_ToName()

char * G4GIDI_Misc_Z_A_m_ToName ( int  iZ,
int  iA,
int  im = 0 
)

Definition at line 44 of file G4GIDI_Misc.cc.

44 {
45
46 const char *Z = MCGIDI_misc_ZToSymbol( iZ );
47 char S[128], mS[32], *name;
48
49 if( Z == NULL ) return( NULL );
50 if( iA == 0 ) {
51 if( im != 0 ) return( NULL );
52 sprintf( S, "%s_natural", Z ); }
53 else {
54 sprintf( S, "%s%d", Z, iA );
55 if( im != 0 ) {
56 //sprintf( mS, "_m%d", im );
57 //TK 170509
58 //Fix inconsistency of name of excited isomer between data and code
59 sprintf( mS, "m%d", im );
60 strcat( S, mS );
61 }
62 }
63 name = (char *) smr_malloc2( NULL, strlen( S ) + 1, 0, "name" );
64 if( name != NULL ) strcpy( name, S );
65 return( name );
66}
G4double S(G4double temp)
const G4int Z[17]
const char * MCGIDI_misc_ZToSymbol(int iZ)
Definition: MCGIDI_misc.cc:61
const char * name(G4int ptype)
#define smr_malloc2(smr, size, zero, forItem)

References MCGIDI_misc_ZToSymbol(), G4InuclParticleNames::name(), S(), smr_malloc2, and Z.

Referenced by G4GIDI::dataFilename(), G4GIDI::freeTarget(), G4GIDI_Misc_channelCompound(), G4GIDI_Z_AMass(), G4GIDI::getAlreadyReadTarget(), G4GIDI::getNamesOfAvailableLibraries(), G4GIDI::isThisDataAvailable(), and G4GIDI::readTarget().

◆ getNamesOfAvailableTargets_walker()

int getNamesOfAvailableTargets_walker ( GIDI::MCGIDI_mapEntry entry,
int  level,
void *  userData 
)