Import Geant4 11.4.0 source tree
This commit is contained in:
@@ -1,254 +0,0 @@
|
||||
-------------------------------------------------------------------
|
||||
|
||||
=========================================================
|
||||
Geant4 - an Object-Oriented Toolkit for Simulation in HEP
|
||||
=========================================================
|
||||
|
||||
Example Par02
|
||||
-------------
|
||||
|
||||
This example is a simplified version of a Geant4-based fast simulation
|
||||
program written by Anna Zaborowska for Future Circular Collider (FCC)
|
||||
studies.
|
||||
|
||||
This example shows how to do "track and energy smearing" in Geant4,
|
||||
in order to have a very fast simulation based on assumed detector
|
||||
resolutions.
|
||||
|
||||
The geometry which is considered is a simplified collider detector set-up,
|
||||
inspired by ALEPH/ATLAS/CMS detectors. Although it is much simpler than
|
||||
a realistic detector, it is anyhow fairly complex and therefore build up
|
||||
from a GDML file, Par02FullDetector.gdml .
|
||||
|
||||
In this example:
|
||||
- Particles with transverse momentum less than 1 MeV or pseudorapidity
|
||||
larger (in module) than 5.5 are neglected (i.e. the corresponding
|
||||
Geant4 track is killed as soon as it is created).
|
||||
- Any primary charged particle is smeared in the tracker as follows:
|
||||
its momentum is smeared according to a gaussian, with mean equal to 1.0
|
||||
and sigma taken from the momentum resolution of the CMS tracker
|
||||
(with ALEPH or ATLAS tracker as a possible alternative), and then placed
|
||||
at the end of the tracker, at the position that it would reach if
|
||||
normally transported (i.e. without smearing).
|
||||
- Any primary electron, or positron, or gamma is smeared in the
|
||||
electromagnetic calorimeter as follows: it is killed at the entrance
|
||||
of the electromagnetic calorimeter, with a deposited energy equal to
|
||||
the gaussian smearing (with mean equal to 1.0 and sigma taken from the
|
||||
energy resolution of the CMS electromagnetic calorimeter - with ALEPH or
|
||||
ATLAS electromagnetic calorimeter as a possible alternative) of its
|
||||
kinetic energy (at the entrance of the electromagnetic calorimeter).
|
||||
- Any primary hadron is smeared in the hadronic calorimeter as follows:
|
||||
it is killed at the entrance of the hadronic calorimeter, with a
|
||||
deposited energy equal to the gaussian smearing (with mean equal to 1.0
|
||||
and sigma taken from the energy resolution of the CMS hadronic
|
||||
calorimeter - with ALEPH or ATLAS hadronic calorimeter as a possible
|
||||
alternative) of its kinetic energy (at the entrance of the hadronic
|
||||
calorimeter).
|
||||
- The only competing physical processes with respect to the above physics
|
||||
parametrisations are the decays.
|
||||
Note: no electromagnetic processes;
|
||||
no momentum smearing in the tracker for secondary particles;
|
||||
secondary electrons, positrons, gammas in the electromagnetic
|
||||
calorimeter are killed (at the entrance) but without any
|
||||
energy deposition;
|
||||
secondary hadrons in the hadronic calorimeter are killed (at the
|
||||
entrance) but without any energy deposition.
|
||||
|
||||
|
||||
Below some details.
|
||||
|
||||
|
||||
1. Detector description
|
||||
-----------------------
|
||||
|
||||
The geometry is read in from a GDML file, Par02FullDetector.gdml .
|
||||
|
||||
The geometry is a simplified collider detector set-up used for the
|
||||
first FCC studies, inspired by ALEPH/ATLAS/CMS detectors.
|
||||
It is made of 4 main parts:
|
||||
- Tracker
|
||||
- Electromagnetic calorimeter
|
||||
- Hadronic calorimeter
|
||||
- Muon subdetector
|
||||
|
||||
In this example, fast simulation parametrisation models exist for the
|
||||
first three subdetectors, but not for the Muon subdetector.
|
||||
The three parametrisation models:
|
||||
- Par02FastSimModelTracker : in the tracker
|
||||
- Par02FastSimModelEMCal : in the electromagnetic calorimeter
|
||||
- Par02FastSimModelHCal : in the hadronic calorimeter
|
||||
are build and bound to the respective subdetector (i.e. Geant4 regions)
|
||||
in the method: Par02DetectorConstruction::Construct() .
|
||||
|
||||
Three configurations are possible for those parametrisation models:
|
||||
CMS-like, ALEPH-like, ATLAS-like.
|
||||
By default, the CMS configuration is used.
|
||||
|
||||
|
||||
2. Primary generation
|
||||
---------------------
|
||||
|
||||
In this example we use a very simple primary generation action,
|
||||
Par02PrimaryGeneratorAction, that uses the G4ParticleGun.
|
||||
One single particle type, with a well defined energy, and in one fixed
|
||||
direction is used for each run: the corresponding values can be set via
|
||||
macro commands. See examplePar02.in as an example.
|
||||
|
||||
For the FCC studies, Pythia8 events in HepMC format were used for the
|
||||
generation of the primary particles.
|
||||
|
||||
|
||||
3. Physics List
|
||||
---------------
|
||||
|
||||
A special, ad-hoc physics list is used in this example, in order to have
|
||||
an ultra-fast parametrised simulation: for all particles, the only two
|
||||
physics processes that are assigned are the decay process and the fast
|
||||
simulation process.
|
||||
The following three fast simulation models are defined:
|
||||
|
||||
- Par02FastSimModelTracker :
|
||||
- bound to the tracker
|
||||
(see the method Par02DetectorConstruction::Construct )
|
||||
- applicable to all charged particles
|
||||
(see the method Par02FastSimModelTracker::IsApplicable )
|
||||
- triggered in all cases (i.e. no kinematic constraints)
|
||||
(see the method Par02FastSimModelTracker::ModelTrigger )
|
||||
- does the following: place the particle at the tracking detector exit
|
||||
(at the place the particle would reach without smearing), and, only
|
||||
if the particle is a primary, it smears the momentum of the particle
|
||||
according to a gaussian, with mean equal to 1.0 and sigma taken from
|
||||
the momentum resolution of the CMS tracker (with ALEPH or ATLAS tracker
|
||||
as a possible alternative)
|
||||
(see the method Par02FastSimModelTracker::DoIt )
|
||||
|
||||
- Par02FastSimModelEMCal :
|
||||
- bound to the electromagnetic calorimeter
|
||||
(see the method Par02DetectorConstruction::Construct )
|
||||
- applicable to electrons, positrons, gammas
|
||||
(see the method Par02FastSimModelEMCal::IsApplicable )
|
||||
- triggered in all cases (i.e. no kinematic constraints)
|
||||
(see the method Par02FastSimModelEMCal::ModelTrigger )
|
||||
- does the following: kill the particle at the entrance of the
|
||||
electromagnetic calorimeter, and, only if the particle is a primary,
|
||||
it deposits in the electromagnetic calorimeter an energy obtained
|
||||
by a gaussian smearing (with mean equal to 1.0 and sigma taken from the
|
||||
energy resolution of the CMS electromagnetic calorimeter - with ALEPH
|
||||
or ATLAS electromagnetic calorimeter as a possible alternative) of the
|
||||
particle kinetic energy (at the entrance of the electromagnetic
|
||||
calorimeter)
|
||||
(see the method Par02FastSimModelEMCal::DoIt )
|
||||
|
||||
- Par02FastSimModelHCal :
|
||||
- bound to the hadronic calorimeter
|
||||
(see the method Par02DetectorConstruction::Construct )
|
||||
- applicable to all hadrons (i.e. particles made of quarks)
|
||||
(see the method Par02FastSimModelHCal::IsApplicable )
|
||||
- triggered in all cases (i.e. no kinematic constraints)
|
||||
(see the method Par02FastSimModelHCal::ModelTrigger )
|
||||
- does the following: kill the particle at the entrance of the
|
||||
hadronic calorimeter, and, only if the particle is a primary,
|
||||
it deposits in the hadronic calorimeter an energy obtained by a
|
||||
gaussian smearing (with mean equal to 1.0 and sigma taken from the
|
||||
energy resolution of the CMS hadronic calorimeter - with ALEPH
|
||||
or ATLAS hadronic calorimeter as a possible alternative) of the
|
||||
particle kinetic energy (at the entrance of the hadronic
|
||||
calorimeter)
|
||||
(see the method Par02FastSimModelHCal::DoIt )
|
||||
|
||||
|
||||
4. User actions, user information and user utility classes
|
||||
----------------------------------------------------------
|
||||
|
||||
- Par02RunAction : run action used for initialization and termination
|
||||
of the run.
|
||||
|
||||
- Par02EventAction : event action used for initialization and termination
|
||||
of the event.
|
||||
|
||||
- Par02TrackingAction : tracking action used for killing particles with
|
||||
transverse momentum less than 1 MeV or
|
||||
pseudorapidity larger (in module) than 5.5
|
||||
(see method Par02TrackingAction::PreUserTrackingAction )
|
||||
and to store the information about the track at
|
||||
the end of the simulation of such a track
|
||||
(see method Par02TrackingAction::PostUserTrackingAction ).
|
||||
|
||||
- Par02ActionInitialization : initialization of the primary generator class
|
||||
and all user-defined actions (i.e. the three
|
||||
classes above).
|
||||
|
||||
- Par02PrimaryParticleInformation : utility class to store information
|
||||
associated with a primary particle.
|
||||
|
||||
- Par02EventInformation : utility class to store information associated
|
||||
with a Geant4 event.
|
||||
|
||||
- Par02DetectorParametrisation : a simple class used to provide the detector
|
||||
resolution and efficiency, according to the
|
||||
type of detector: tracker, electromagnetic
|
||||
calorimeter, hadronic calorimeter.
|
||||
There are 3 choices: CMS-like (default),
|
||||
ALEPH-like and ATLAS-like.
|
||||
The efficiency is currently set to 1.0 in
|
||||
all cases and not used.
|
||||
|
||||
- Par02Smearer : a simple class that does the gaussian smearing, either
|
||||
of the momentum (in the tracker detector) or in energy
|
||||
(in the electromagnetic or hadronic calorimeter).
|
||||
|
||||
|
||||
5. Output
|
||||
---------
|
||||
|
||||
The execution of the program (examplePar02) produces in output, at the end
|
||||
of a run, a Root file, by default named DefaultOutput.root, which contains
|
||||
3 histograms and one ntuple.
|
||||
|
||||
The macro file examplePar02.in specifies one run made of 1000 events
|
||||
each consisting of one 50 GeV electron.
|
||||
By editing the file, one could select alternatively a run made of 1000
|
||||
events each consisting of one 100 GeV muon, or a run made of 1000 events
|
||||
each consisting of one 20 GeV pion- .
|
||||
|
||||
See the class Par02Output for the definition of the 3 histograms and the
|
||||
ntuples. Here is a quick summary:
|
||||
- histogram of the ratio of the momentum smeared and the original momentum
|
||||
in the tracker (for primary charged particles);
|
||||
- histogram of the ratio of the smeared energy deposited and the original
|
||||
energy at the entrance in the electromagnetic calorimeter (for primary
|
||||
electrons, positrons and gammas);
|
||||
- histogram of the ratio of the smeared energy deposited and the original
|
||||
energy at the entrance in the hadronic calorimeter (for primary hadrons);
|
||||
- ntuple containing the "Monte-Carlo true" information regarding the
|
||||
primary, and the resolution, efficiency, smeared momentum (tracker),
|
||||
smeared energy (calorimeter) and impact position (calorimeter) of each
|
||||
subdetector (tracker, electromagnetic calorimeter, hadronic calorimeter)
|
||||
where the primary is parametrised (tracker and electromagnetic calorimeter
|
||||
in the case of primary electrons, positrons and gammas; tracker and
|
||||
hadronic calorimeter in the case of primary hadrons; tracker only for
|
||||
all other primary charged particles, e.g. muons).
|
||||
|
||||
Note:
|
||||
- you do not need to have the Root package available to run this example,
|
||||
but you need it if you want to look at the histograms and the ntuple
|
||||
contained in the Root output file;
|
||||
- sensitive detectors and hits are not used in this example.
|
||||
|
||||
|
||||
6. How to build and run the example
|
||||
-----------------------------------
|
||||
|
||||
- You need to have built the Geant4 persistency/gdml module by having set
|
||||
the -DGEANT4_USE_GDML=ON flag during the CMAKE configuration step,
|
||||
as well as the -DXERCESC_ROOT_DIR=<path_to_xercesc> flag pointing to
|
||||
the path where the XercesC XML parser package is installed in your system.
|
||||
|
||||
- Compile and link to generate the executable (in your CMAKE build directory):
|
||||
% make
|
||||
|
||||
- Execute the application:
|
||||
% examplePar02 examplePar02.in
|
||||
|
||||
which produces one Root file: DefaultOutput.root .
|
||||
|
||||
+12
-20
@@ -1,8 +1,4 @@
|
||||
|
||||
///\file "parameterisations/Par02/.README.txt"
|
||||
///\brief Example Par02 README page
|
||||
|
||||
/*! \page ExamplePar02 Example Par02
|
||||
\page ExamplePar02 Example Par02
|
||||
|
||||
This example is a simplified version of a Geant4-based fast simulation
|
||||
program written by Anna Zaborowska for Future Circular Collider (FCC)
|
||||
@@ -55,7 +51,7 @@
|
||||
Below some details.
|
||||
|
||||
|
||||
\section Par02_s1 Detector description
|
||||
## Detector description
|
||||
|
||||
The geometry is read in from a GDML file, Par02FullDetector.gdml .
|
||||
|
||||
@@ -81,7 +77,7 @@
|
||||
By default, the CMS configuration is used.
|
||||
|
||||
|
||||
\section Par02_s2 Primary generation
|
||||
## Primary generation
|
||||
|
||||
In this example we use a very simple primary generation action,
|
||||
Par02PrimaryGeneratorAction, that uses the G4ParticleGun.
|
||||
@@ -93,7 +89,7 @@
|
||||
generation of the primary particles.
|
||||
|
||||
|
||||
\section Par02_s3 Physics List
|
||||
## Physics List
|
||||
|
||||
A special, ad-hoc physics list is used in this example, in order to have
|
||||
an ultra-fast parametrised simulation: for all particles, the only two
|
||||
@@ -151,7 +147,7 @@
|
||||
(see the method Par02FastSimModelHCal::DoIt )
|
||||
|
||||
|
||||
\section Par02_s4 User actions, user information and user utility classes
|
||||
## User actions, user information and user utility classes
|
||||
|
||||
- Par02RunAction : run action used for initialization and termination
|
||||
of the run.
|
||||
@@ -191,7 +187,7 @@
|
||||
(in the electromagnetic or hadronic calorimeter).
|
||||
|
||||
|
||||
\section Par02_s5 Output
|
||||
## Output
|
||||
|
||||
The execution of the program (examplePar02) produces in output, at the end
|
||||
of a run, a Root file, by default named DefaultOutput.root, which contains
|
||||
@@ -225,12 +221,10 @@
|
||||
- you do not need to have the Root package available to run this example,
|
||||
but you need it if you want to look at the histograms and the ntuple
|
||||
contained in the Root output file;
|
||||
- because the class Par02Output is a singleton, this example must be run
|
||||
in sequential mode, not in multi-threaded mode;
|
||||
- sensitive detectors and hits are not used in this example.
|
||||
|
||||
|
||||
\section Par02_s6 How to build and run the example
|
||||
## How to build and run the example
|
||||
|
||||
- You need to have built the Geant4 persistency/gdml module by having set
|
||||
the -DGEANT4_USE_GDML=ON flag during the CMAKE configuration step,
|
||||
@@ -238,13 +232,11 @@
|
||||
the path where the XercesC XML parser package is installed in your system.
|
||||
|
||||
- Compile and link to generate the executable (in your CMAKE build directory):
|
||||
\verbatim
|
||||
```
|
||||
% make
|
||||
\endverbatim
|
||||
```
|
||||
- Execute the application:
|
||||
\verbatim
|
||||
% examplePar02 examplePar02.in
|
||||
\endverbatim
|
||||
```
|
||||
% ./examplePar02 examplePar02.in
|
||||
```
|
||||
which produces one Root file: DefaultOutput.root .
|
||||
|
||||
*/
|
||||
@@ -23,9 +23,9 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
/// \file examplePar02.cc
|
||||
/// \brief Main program of the parameterisations/Par02 example
|
||||
|
||||
// --------------------------------------------------------------
|
||||
// GEANT 4 - examplePar02
|
||||
// --------------------------------------------------------------
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-03-ref-06 (30-June-2025)
|
||||
Geant4 version Name: geant4-11-04-ref-00 (5-December-2025)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -59,7 +59,6 @@ You have successfully registered the following graphics systems.
|
||||
Registered graphics systems are:
|
||||
ASCIITree (ATree)
|
||||
DAWNFILE (DAWNFILE)
|
||||
G4HepRepFile (HepRepFile)
|
||||
RayTracer (RT)
|
||||
VRML2FILE (VRML2FILE)
|
||||
gMocrenFile (gMocrenFile)
|
||||
@@ -72,13 +71,12 @@ Registered graphics systems are:
|
||||
OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
|
||||
RayTracerX (RTX)
|
||||
RayTracerQt (RTQt)
|
||||
Qt3D (Qt3D)
|
||||
TOOLSSG_X11_GLES (TSG_X11_GLES, TSGX11, TSG_XT_GLES_FALLBACK)
|
||||
TOOLSSG_X11_ZB (TSG_X11_ZB, TSGX11ZB)
|
||||
TOOLSSG_XT_GLES (TSG_XT_GLES, TSGXt, TSG_QT_GLES_FALLBACK)
|
||||
TOOLSSG_XT_ZB (TSG_XT_ZB, TSGXtZB)
|
||||
TOOLSSG_QT_GLES (TSG_QT_GLES, TSGQt, TSG, OGL)
|
||||
TOOLSSG_QT_ZB (TSG_QT_ZB, TSGQtZB)
|
||||
TOOLSSG_QT_ZB (TSG_QT_ZB, TSGQtZB, TSGZB)
|
||||
You may choose a graphics system (driver) with a parameter of
|
||||
the command "/vis/open" or "/vis/sceneHandler/create",
|
||||
or you may omit the driver parameter and choose at run time:
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
/// \file Par02ActionInitialization.hh
|
||||
/// \brief Definition of the Par02ActionInitialization class
|
||||
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
/// \file Par02DetectorConstruction.hh
|
||||
/// \brief Definition of the Par02DetectorConstruction class
|
||||
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
/// \file Par02DetectorParametrisation.hh
|
||||
/// \brief Definition of the Par02DetectorParametrisation class
|
||||
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
/// \file Par02EventAction.hh
|
||||
/// \brief Definition of the Par02EventAction class
|
||||
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
/// \file Par02EventInformation.hh
|
||||
/// \brief Definition of the Par02EventInformation class
|
||||
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
/// \file Par02FastSimModelEMCal.hh
|
||||
/// \brief Definition of the Par02FastSimModelEMCal class
|
||||
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
/// \file Par02FastSimModelHCal.hh
|
||||
/// \brief Definition of the Par02FastSimModelHCal class
|
||||
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
/// \file Par02FastSimModelTracker.hh
|
||||
/// \brief Definition of the Par02FastSimModelTracker class
|
||||
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
/// \file Par02Output.hh
|
||||
/// \brief Definition of the Par02Output class
|
||||
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
/// \file Par02PhysicsList.hh
|
||||
/// \brief Definition of the Par02PhysicsList class
|
||||
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
/// \file Par02PrimaryGeneratorAction.hh
|
||||
/// \brief Definition of the Par02PrimaryGeneratorAction class
|
||||
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
/// \file Par02PrimaryParticleInformation.hh
|
||||
/// \brief Definition of the Par02PrimaryParticleInformation class
|
||||
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
/// \file Par02RunAction.hh
|
||||
/// \brief Definition of the Par02RunAction class
|
||||
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
/// \file Par02Smearer.hh
|
||||
/// \brief Definition of the Par02Smearer class
|
||||
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
/// \file Par02TrackingAction.hh
|
||||
/// \brief Definition of the Par02TrackingAction class
|
||||
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
/// \file Par02ActionInitialization.cc
|
||||
/// \brief Implementation of the Par02ActionInitialization class
|
||||
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
/// \file Par02DetectorConstruction.cc
|
||||
/// \brief Implementation of the Par02DetectorConstruction class
|
||||
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
/// \file Par02DetectorParametrisation.cc
|
||||
/// \brief Implementation of the Par02DetectorParametrisation class
|
||||
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
/// \file Par02EventAction.cc
|
||||
/// \brief Implementation of the Par02EventAction class
|
||||
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
/// \file Par02EventInformation.cc
|
||||
/// \brief Implementation of the Par02EventInformation class
|
||||
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
/// \file Par02FastSimModelEMCal.cc
|
||||
/// \brief Implementation of the Par02FastSimModelEMCal class
|
||||
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
/// \file Par02FastSimModelHCal.cc
|
||||
/// \brief Implementation of the Par02FastSimModelHCal class
|
||||
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
/// \file Par02FastSimModelTracker.cc
|
||||
/// \brief Implementation of the Par02FastSimModelTracker class
|
||||
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
/// \file Par02Output.cc
|
||||
/// \brief Implementation of the Par02Output class
|
||||
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
/// \file Par02PhysicsList.cc
|
||||
/// \brief Implementation of the Par02PhysicsList class
|
||||
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
/// \file Par02PrimaryGeneratorAction.cc
|
||||
/// \brief Implementation of the Par02PrimaryGeneratorAction class
|
||||
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
/// \file Par02PrimaryParticleInformation.cc
|
||||
/// \brief Implementation of the Par02PrimaryParticleInformation class
|
||||
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
/// \file Par02RunAction.cc
|
||||
/// \brief Implementation of the Par02RunAction class
|
||||
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
/// \file Par02Smearer.cc
|
||||
/// \brief Implementation of the Par02Smearer class
|
||||
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
/// \file Par02TrackingAction.cc
|
||||
/// \brief Implementation of the Par02TrackingAction class
|
||||
|
||||
|
||||
Reference in New Issue
Block a user