Import Geant4 6.2.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-09 10:56:29 +02:00
parent 1d812b78b1
commit e083ffb441
1415 changed files with 111223 additions and 21207 deletions
+7 -1
View File
@@ -1,5 +1,5 @@
-------------------------------------------------------------------
$Id: History,v 1.6 2004/01/28 17:58:58 ribon Exp $
$Id: History,v 1.8 2004/05/28 11:05:41 ribon Exp $
-------------------------------------------------------------------
=========================================================
@@ -9,6 +9,12 @@ $Id: History,v 1.6 2004/01/28 17:58:58 ribon Exp $
Category History file
---------------------
28.05.04 - A.Ribon (lAr_calorimeter-V06-01-01)
Now PI light is used.
18.05.04 - A.Ribon (lAr_calorimeter-V06-01-00)
Ported to PI. Only the setup is changed, no changes in the code.
28.01.2004 - A.Ribon (lAr_calorimeter-V06-00-01)
Clean up. Fixes for g++ 3.2 . New Physics Lists.
+10 -18
View File
@@ -99,24 +99,16 @@
Note that histograms are disabled via the flag G4ANALYSIS_USE in GNUmakefile.
7. Using the Anaphe implementation of the AIDA 3.0 histograms:
---------------------------------------------------------------
7. Using the PI implementation of the AIDA histograms:
------------------------------------------------------
In order to use the new Anaphe implementation of the AIDA interfaces,
prepare some environment variables by source-ing one of the following
startup scripts.
In order to setup the proper environmental variables, needed for
running AIDA / PI , run the script:
# This example has been developed and tested in the platform
# Linux Red-Hat 7.3 with compilers gcc-2.95.2 and gcc-3.2
# (the setup below refers to gcc-2.95.2)
--- For c-shell : source setupAidaPi.csh
--- For bash-shell : . setupAidaPi.sh
Notice that you need g++ 3.2 or 3.23.
o Set up the environment variable: G4ANALYSIS_USE 1
o setenv PATH ${PATH}:/afs/cern.ch/sw/lhcxx/specific/redhat73/gcc-2.95.2/5.0.6/bin
o source /afs/cern.ch/sw/lhcxx/share/LHCXX/5.0.6/install/sharedstart.csh or .ch
o ln -s /afs/cern.ch/sw/lhcxx/share/LHCXX/5.0.6/scripts/* ~/bin/.
(This has to be made only once)
After this, you will have access to the last 'aida-config' command which
is used in the GNUmakefile.
+11
View File
@@ -0,0 +1,11 @@
#------------------------------------------------------------------
# C-shell script to be run before building/executing this example.
#------------------------------------------------------------------
#
# --- Geant4 specific ---
setenv G4ANALYSIS_USE 1
#
# --- Aida / PI ---
eval `aida-config --runtime csh`
#
+12
View File
@@ -0,0 +1,12 @@
#------------------------------------------------------------------
# Bash-shell script to be run before building/executing this example.
#------------------------------------------------------------------
#
# --- Geant4 specific ---
export G4ANALYSIS_USE=1
#
# --- Aida / PI ---
eval `aida-config --runtime sh`
#