Import Geant4 10.2.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-10 14:11:04 +02:00
parent c9b32a6c0a
commit d4af681f38
4886 changed files with 420149 additions and 1023309 deletions
@@ -0,0 +1,41 @@
/*
# <<BEGIN-copyright>>
# <<END-copyright>>
*/
#ifndef PoPs_private_h_included
#define PoPs_private_h_included
#if defined __cplusplus
extern "C" {
namespace GIDI {
#endif
typedef struct unitsDB_s unitsDB;
typedef struct PoPs_s PoPs;
struct unitsDB_s {
int numberOfUnits;
int allocated;
char const **unsorted;
};
struct PoPs_s {
int numberOfParticles;
int allocated;
PoP **pops;
PoP **sorted;
};
int PoPs_releasePrivate( statusMessageReporting *smr );
char const *unitsDB_addUnitIfNeeded( statusMessageReporting *smr, char const *unit );
int unitsDB_index( statusMessageReporting *smr, char const *unit );
char const *unitsDB_stringFromIndex( statusMessageReporting *smr, int index );
#if defined __cplusplus
}
}
#endif
#endif /* End of PoPs_private_h_included. */