Import Geant4 9.3.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-09 16:15:05 +02:00
parent b79225fb37
commit 74cad5e589
3877 changed files with 234205 additions and 167127 deletions
+1 -11
View File
@@ -1,4 +1,4 @@
# $Id: GNUmakefile,v 1.1 2007/05/28 08:31:53 gcosmo Exp $
# $Id: GNUmakefile,v 1.2 2009/03/06 09:50:28 gbarrand Exp $
# --------------------------------------------------------------
# GNUmakefile for examples module. Gabriele Cosmo, 06/04/98.
# --------------------------------------------------------------
@@ -14,17 +14,7 @@ endif
.PHONY: all
all: lib bin
ifdef G4ANALYSIS_USE
CPPFLAGS += -DG4ANALYSIS_USE
endif
include $(G4INSTALL)/config/architecture.gmk
ifdef G4ANALYSIS_USE
# for the aida-config command see the README file
CPPFLAGS += `aida-config --include`
LOADLIBS += `aida-config --lib`
endif
include $(G4INSTALL)/config/binmake.gmk
+6 -3
View File
@@ -1,4 +1,4 @@
$Id: History,v 1.2 2007/05/28 13:24:26 arce Exp $
$Id: History,v 1.5 2009/03/16 09:51:59 gcosmo Exp $
-------------------------------------------------------------------
=========================================================
@@ -17,7 +17,10 @@ committal in the CVS repository !
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
May 28, 2007 G.Cosmo
- Created.
Mar 6, 2009 G.Barrand (exerrprop-V09-02-00)
- GNUmakefile: removed logic for setting AIDA with G4ANALYSIS_USE.
since it already handled in the internal configuration scripts.
- Replaced usare of 'uint' with 'size_t' in errprop.cc (G.Cosmo).
May 28, 2007 P.Arce
- First version
@@ -47,7 +47,7 @@
void Initialize();
G4ErrorTarget* BuildTarget( G4int iTarget );
void ProcessEvent( G4int iProp, uint nEv );
void ProcessEvent( G4int iProp, size_t nEv );
void Finalize();
G4ErrorTarget* theTarget;
@@ -76,8 +76,8 @@ int main()
G4Exception("exG4eReco","Fatal error in Argument",JustWarning,"Variable G4ERROR_PROP not defined, taking it = UNTIL_TARGET");
}
uint nEvents = 3;
for( uint ii = 0; ii < nEvents; ii++ ){
size_t nEvents = 3;
for( size_t ii = 0; ii < nEvents; ii++ ){
ProcessEvent( iProp, ii );
}
@@ -148,7 +148,7 @@ void Initialize()
}
void ProcessEvent( G4int iProp, uint )
void ProcessEvent( G4int iProp, size_t )
{
// Set the starting trajectory.