Geant4  10.03.p02
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4GIDI_Misc.hh File Reference
#include <MCGIDI_map.h>
Include dependency graph for G4GIDI_Misc.hh:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

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

Function Documentation

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=0)
Definition: G4GIDI_Misc.cc:44
int MCGIDI_miscNameToZAm(statusMessageReporting *smr, const char *name, int *Z, int *A, int *m, int *level)
Definition: MCGIDI_misc.cc:81
static constexpr double m2
Definition: G4SIunits.hh:130

Here is the call graph for this function:

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 }
const char * MCGIDI_misc_ZToSymbol(int iZ)
Definition: MCGIDI_misc.cc:61
const XML_Char * name
Definition: expat.h:151
double S(double temp)
#define smr_malloc2(smr, size, zero, forItem)

Here is the call graph for this function:

Here is the caller graph for this function:

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

Here is the caller graph for this function: