| 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.8 2006/06/29 16:36:43 gunter Exp $
|
|---|
| 27 | // GEANT4 tag $Name: geant4-09-03-cand-01 $
|
|---|
| 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 | #include "ProcessesCount.hh"
|
|---|
| 37 | #include "globals.hh"
|
|---|
| 38 |
|
|---|
| 39 | //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|---|
| 40 |
|
|---|
| 41 | class G4Run;
|
|---|
| 42 | class DetectorConstruction;
|
|---|
| 43 | class PrimaryGeneratorAction;
|
|---|
| 44 | class HistoManager;
|
|---|
| 45 |
|
|---|
| 46 | //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|---|
| 47 |
|
|---|
| 48 | class RunAction : public G4UserRunAction
|
|---|
| 49 | {
|
|---|
| 50 | public:
|
|---|
| 51 | RunAction(DetectorConstruction*, PrimaryGeneratorAction*, HistoManager*);
|
|---|
| 52 | ~RunAction();
|
|---|
| 53 |
|
|---|
| 54 | public:
|
|---|
| 55 | void BeginOfRunAction(const G4Run*);
|
|---|
| 56 | void EndOfRunAction(const G4Run*);
|
|---|
| 57 |
|
|---|
| 58 | void CountTraks0(G4int nt) { NbOfTraks0 += nt;}
|
|---|
| 59 | void CountTraks1(G4int nt) { NbOfTraks1 += nt;}
|
|---|
| 60 | void CountSteps0(G4int ns) { NbOfSteps0 += ns;}
|
|---|
| 61 | void CountSteps1(G4int ns) { NbOfSteps1 += ns;}
|
|---|
| 62 | void CountProcesses(G4String);
|
|---|
| 63 |
|
|---|
| 64 | void AddEdep(G4double val) { edep += val;}
|
|---|
| 65 | void AddTrueRange (G4double l) { trueRange += l; trueRange2 += l*l;};
|
|---|
| 66 | void AddProjRange (G4double x) { projRange += x; projRange2 += x*x;};
|
|---|
| 67 | void AddTransvDev (G4double y) { transvDev += y; transvDev2 += y*y;};
|
|---|
| 68 |
|
|---|
| 69 | private:
|
|---|
| 70 | G4int NbOfTraks0, NbOfTraks1;
|
|---|
| 71 | G4int NbOfSteps0, NbOfSteps1;
|
|---|
| 72 | G4double edep;
|
|---|
| 73 | G4double trueRange, trueRange2;
|
|---|
| 74 | G4double projRange, projRange2;
|
|---|
| 75 | G4double transvDev, transvDev2;
|
|---|
| 76 |
|
|---|
| 77 | DetectorConstruction* detector;
|
|---|
| 78 | PrimaryGeneratorAction* primary;
|
|---|
| 79 | ProcessesCount* ProcCounter;
|
|---|
| 80 | HistoManager* histoManager;
|
|---|
| 81 | };
|
|---|
| 82 |
|
|---|
| 83 | //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|---|
| 84 |
|
|---|
| 85 | #endif
|
|---|
| 86 |
|
|---|