| 1 | //
|
|---|
| 2 | // ********************************************************************
|
|---|
| 3 | // * License and Disclaimer *
|
|---|
| 4 | // * *
|
|---|
| 5 | // * The Geant4 software is copyright of the Copyright Holders of *
|
|---|
| 6 | // * the Geant4 Collaboration. It is provided under the terms and *
|
|---|
| 7 | // * conditions of the Geant4 Software License, included in the file *
|
|---|
| 8 | // * LICENSE and available at http://cern.ch/geant4/license . These *
|
|---|
| 9 | // * include a list of copyright holders. *
|
|---|
| 10 | // * *
|
|---|
| 11 | // * Neither the authors of this software system, nor their employing *
|
|---|
| 12 | // * institutes,nor the agencies providing financial support for this *
|
|---|
| 13 | // * work make any representation or warranty, express or implied, *
|
|---|
| 14 | // * regarding this software system or assume any liability for its *
|
|---|
| 15 | // * use. Please see the license in the file LICENSE and URL above *
|
|---|
| 16 | // * for the full disclaimer and the limitation of liability. *
|
|---|
| 17 | // * *
|
|---|
| 18 | // * This code implementation is the result of the scientific and *
|
|---|
| 19 | // * technical work of the GEANT4 collaboration. *
|
|---|
| 20 | // * By using, copying, modifying or distributing the software (or *
|
|---|
| 21 | // * any work based on the software) you agree to acknowledge its *
|
|---|
| 22 | // * use in resulting scientific publications, and indicate your *
|
|---|
| 23 | // * acceptance of all terms of the Geant4 Software license. *
|
|---|
| 24 | // ********************************************************************
|
|---|
| 25 | //
|
|---|
| 26 | // $Id: RunAction.hh,v 1.1 2007/02/13 17:57:20 maire Exp $
|
|---|
| 27 | // GEANT4 tag $Name: $
|
|---|
| 28 | //
|
|---|
| 29 | //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|---|
| 30 | //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|---|
| 31 |
|
|---|
| 32 | #ifndef RunAction_h
|
|---|
| 33 | #define RunAction_h 1
|
|---|
| 34 |
|
|---|
| 35 | #include "G4UserRunAction.hh"
|
|---|
| 36 |
|
|---|
| 37 | #include "globals.hh"
|
|---|
| 38 |
|
|---|
| 39 | //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|---|
| 40 |
|
|---|
| 41 | class G4Run;
|
|---|
| 42 | class G4ParticleDefinition;
|
|---|
| 43 | class G4Material;
|
|---|
| 44 |
|
|---|
| 45 | class DetectorConstruction;
|
|---|
| 46 | class PrimaryGeneratorAction;
|
|---|
| 47 | class HistoManager;
|
|---|
| 48 |
|
|---|
| 49 | //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|---|
| 50 |
|
|---|
| 51 | class RunAction : public G4UserRunAction
|
|---|
| 52 | {
|
|---|
| 53 | public:
|
|---|
| 54 | RunAction(DetectorConstruction*, PrimaryGeneratorAction*, HistoManager*);
|
|---|
| 55 | ~RunAction();
|
|---|
| 56 |
|
|---|
| 57 | public:
|
|---|
| 58 | void BeginOfRunAction(const G4Run*);
|
|---|
| 59 | void EndOfRunAction(const G4Run*);
|
|---|
| 60 |
|
|---|
| 61 | void AddEnergyDeposit (G4double edep)
|
|---|
| 62 | {energyDeposit += edep;};
|
|---|
| 63 |
|
|---|
| 64 | void AddTrackLength (G4double step)
|
|---|
| 65 | {trackLength += step; nbSteps++;};
|
|---|
| 66 |
|
|---|
| 67 | void AddChargedSecondary (G4double ekin)
|
|---|
| 68 | {energyCharged += ekin; nbCharged++;
|
|---|
| 69 | if (ekin<emin[0]) emin[0] = ekin;
|
|---|
| 70 | if (ekin>emax[0]) emax[0] = ekin;
|
|---|
| 71 | };
|
|---|
| 72 |
|
|---|
| 73 | void AddNeutralSecondary (G4double ekin)
|
|---|
| 74 | {energyNeutral += ekin; nbNeutral++;
|
|---|
| 75 | if (ekin<emin[1]) emin[1] = ekin;
|
|---|
| 76 | if (ekin>emax[1]) emax[1] = ekin;
|
|---|
| 77 | };
|
|---|
| 78 |
|
|---|
| 79 | public:
|
|---|
| 80 | G4double GetEnergyFromRestrictedRange
|
|---|
| 81 | (G4double,G4ParticleDefinition*,G4Material*,G4double);
|
|---|
| 82 |
|
|---|
| 83 | G4double GetEnergyFromCSDARange
|
|---|
| 84 | (G4double,G4ParticleDefinition*,G4Material*,G4double);
|
|---|
| 85 |
|
|---|
| 86 | private:
|
|---|
| 87 | G4double energyDeposit;
|
|---|
| 88 | G4double trackLength;
|
|---|
| 89 | G4double energyCharged, energyNeutral;
|
|---|
| 90 | G4double emin[2], emax[2];
|
|---|
| 91 |
|
|---|
| 92 | G4long nbSteps;
|
|---|
| 93 | G4int nbCharged, nbNeutral;
|
|---|
| 94 |
|
|---|
| 95 | DetectorConstruction* detector;
|
|---|
| 96 | PrimaryGeneratorAction* primary;
|
|---|
| 97 | HistoManager* histoManager;
|
|---|
| 98 | };
|
|---|
| 99 |
|
|---|
| 100 | //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|---|
| 101 |
|
|---|
| 102 | #endif
|
|---|
| 103 |
|
|---|