| 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.3 2006/06/29 16:46:36 gunter 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 | #include "ProcessesCount.hh"
|
|---|
| 37 | #include "globals.hh"
|
|---|
| 38 |
|
|---|
| 39 | //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|---|
| 40 |
|
|---|
| 41 | class DetectorConstruction;
|
|---|
| 42 | class PrimaryGeneratorAction;
|
|---|
| 43 | class HistoManager;
|
|---|
| 44 | class G4Run;
|
|---|
| 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 CountProcesses(G4String);
|
|---|
| 59 | void SumPathLength (G4double truepl, G4double geompl)
|
|---|
| 60 | {totalCount++;
|
|---|
| 61 | truePL += truepl; truePL2 += truepl*truepl;
|
|---|
| 62 | geomPL += geompl; geomPL2 += geompl*geompl;
|
|---|
| 63 | };
|
|---|
| 64 |
|
|---|
| 65 | void SumLateralDisplacement (G4double displa)
|
|---|
| 66 | {lDispl += displa; lDispl2 += displa*displa;}
|
|---|
| 67 |
|
|---|
| 68 | void SumPsi (G4double psi)
|
|---|
| 69 | {psiSpa += psi; psiSpa2 += psi*psi;}
|
|---|
| 70 |
|
|---|
| 71 | void SumTetaPlane (G4double teta)
|
|---|
| 72 | {tetPrj += teta; tetPrj2 += teta*teta;}
|
|---|
| 73 |
|
|---|
| 74 | void SumPhiCorrel (G4double correl)
|
|---|
| 75 | {phiCor += correl; phiCor2 += correl*correl;}
|
|---|
| 76 |
|
|---|
| 77 | G4double ComputeMscHighland(G4double pathLength);
|
|---|
| 78 |
|
|---|
| 79 | private:
|
|---|
| 80 | DetectorConstruction* detector;
|
|---|
| 81 | PrimaryGeneratorAction* primary;
|
|---|
| 82 | ProcessesCount* ProcCounter;
|
|---|
| 83 | HistoManager* histoManager;
|
|---|
| 84 |
|
|---|
| 85 | G4int totalCount;
|
|---|
| 86 | G4double truePL, truePL2;
|
|---|
| 87 | G4double geomPL, geomPL2;
|
|---|
| 88 | G4double lDispl, lDispl2;
|
|---|
| 89 | G4double psiSpa, psiSpa2;
|
|---|
| 90 | G4double tetPrj, tetPrj2;
|
|---|
| 91 | G4double phiCor, phiCor2;
|
|---|
| 92 | };
|
|---|
| 93 |
|
|---|
| 94 | //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|---|
| 95 |
|
|---|
| 96 | #endif
|
|---|
| 97 |
|
|---|