| 1 | $Id: README,v 1.1 2002/03/05 15:22:08 gcosmo Exp $
|
|---|
| 2 | -------------------------------------------------------------------
|
|---|
| 3 |
|
|---|
| 4 | =========================================================
|
|---|
| 5 | Geant4 - an Object-Oriented Toolkit for Simulation in HEP
|
|---|
| 6 | =========================================================
|
|---|
| 7 |
|
|---|
| 8 | ParN04
|
|---|
| 9 | ------
|
|---|
| 10 |
|
|---|
| 11 | ParN04 has a simplified collider detector geometry.
|
|---|
| 12 | This example demonstrates the following features.
|
|---|
| 13 | [ Read 000README for a description of how to run it in parallel. ]
|
|---|
| 14 |
|
|---|
| 15 | 1. PYTHIA primary events.
|
|---|
| 16 |
|
|---|
| 17 | ExN04PrimaryGeneratorAction has G4HEPEvtInterface as the generator.
|
|---|
| 18 | G4HEPEvtInterface accesses to "pythia_event.data", which contains three
|
|---|
| 19 | events of Higgs generation produced by PYTHIA. "pythia_main.f" is an
|
|---|
| 20 | example FORTRAN code of PYTHIA for generating this event sample.
|
|---|
| 21 |
|
|---|
| 22 | 2. Readout geometry
|
|---|
| 23 |
|
|---|
| 24 | ExN04DetectorConstruction defines a simplified collider detecor
|
|---|
| 25 | geometry, tracker made of cylindrical tubes, calorimeter made of
|
|---|
| 26 | cylindrical tubes, and muon trackers made of planes.
|
|---|
| 27 | Cylindrical calorimeter is made of tubes of lead and scintirator
|
|---|
| 28 | without cut in phi nor z direction. Energy deposition in scintirator
|
|---|
| 29 | is accumurated by ExN04CalorimeterSD sensitive detector, which has
|
|---|
| 30 | a readout geometry to find the phi-z cell.
|
|---|
| 31 |
|
|---|
| 32 | 3. Full set of "ordinary" physics processes
|
|---|
| 33 |
|
|---|
| 34 | ExN04PhysicsList defines almost all of leptons and hadrons which
|
|---|
| 35 | Geant4 has dedicated classes for. Also almost all physics processes
|
|---|
| 36 | Geant4 has are defined.
|
|---|
| 37 |
|
|---|
| 38 | 4. Event filtering by the stacking mechanism.
|
|---|
| 39 |
|
|---|
| 40 | Higgs events in "pythia_event.data" have two lepton pairs produced
|
|---|
| 41 | by the Higgs decay via Z0. At the first stage of each event, only the
|
|---|
| 42 | primary muons are tracked without tracking secondaries. then the number
|
|---|
| 43 | of hits on the muon trackers are examined. At the next stage, only
|
|---|
| 44 | the primary charged particles are tracked only inside the barrel
|
|---|
| 45 | tracking area and the isolation of the primary muons are examined.
|
|---|
| 46 | At the third stage, all particles in the RoI (Region of Interest) along
|
|---|
| 47 | the isolated muons are tracked. All these examinations are applied in
|
|---|
| 48 | ExN04StackingAction.
|
|---|