source: trunk/examples/extended/electromagnetic/TestEm1/include/RunAction.hh@ 1353

Last change on this file since 1353 was 1337, checked in by garnier, 15 years ago

tag geant4.9.4 beta 1 + modifs locales

File size: 3.6 KB
Line 
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.9 2010/04/06 11:11:24 maire Exp $
27// GEANT4 tag $Name: geant4-09-04-beta-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 "globals.hh"
37#include <map>
38
39//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
40
41class G4Run;
42class DetectorConstruction;
43class PrimaryGeneratorAction;
44class HistoManager;
45
46//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
47
48class 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 procName) { procCounter[procName]++;};
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 DetectorConstruction* detector;
71 PrimaryGeneratorAction* primary;
72 HistoManager* histoManager;
73
74 G4int NbOfTraks0, NbOfTraks1;
75 G4int NbOfSteps0, NbOfSteps1;
76 G4double edep;
77 G4double trueRange, trueRange2;
78 G4double projRange, projRange2;
79 G4double transvDev, transvDev2;
80 std::map<G4String,G4int> procCounter;
81};
82
83//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
84
85#endif
86
Note: See TracBrowser for help on using the repository browser.