84 lines
3.3 KiB
C++
84 lines
3.3 KiB
C++
//
|
|
// ********************************************************************
|
|
// * DISCLAIMER *
|
|
// * *
|
|
// * The following disclaimer summarizes all the specific disclaimers *
|
|
// * of contributors to this software. The specific disclaimers,which *
|
|
// * govern, are listed with their locations in: *
|
|
// * http://cern.ch/geant4/license *
|
|
// * *
|
|
// * Neither the authors of this software system, nor their employing *
|
|
// * institutes,nor the agencies providing financial support for this *
|
|
// * work make any representation or warranty, express or implied, *
|
|
// * regarding this software system or assume any liability for its *
|
|
// * use. *
|
|
// * *
|
|
// * This code implementation is the intellectual property of the *
|
|
// * GEANT4 collaboration. *
|
|
// * By copying, distributing or modifying the Program (or any work *
|
|
// * based on the Program) you indicate your acceptance of this *
|
|
// * statement, and all its terms. *
|
|
// ********************************************************************
|
|
//
|
|
// $Id: RunAction.hh,v 1.6 2004/08/03 11:31:43 maire Exp $
|
|
// GEANT4 tag $Name: geant4-07-00-cand-01 $
|
|
//
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
#ifndef RunAction_h
|
|
#define RunAction_h 1
|
|
|
|
#include "G4UserRunAction.hh"
|
|
#include "ProcessesCount.hh"
|
|
#include "globals.hh"
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
class G4Run;
|
|
class DetectorConstruction;
|
|
class PrimaryGeneratorAction;
|
|
class HistoManager;
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
class RunAction : public G4UserRunAction
|
|
{
|
|
public:
|
|
RunAction(DetectorConstruction*, PrimaryGeneratorAction*, HistoManager*);
|
|
~RunAction();
|
|
|
|
public:
|
|
void BeginOfRunAction(const G4Run*);
|
|
void EndOfRunAction(const G4Run*);
|
|
|
|
void CountTraks0(G4int nt) { NbOfTraks0 += nt;}
|
|
void CountTraks1(G4int nt) { NbOfTraks1 += nt;}
|
|
void CountSteps0(G4int ns) { NbOfSteps0 += ns;}
|
|
void CountSteps1(G4int ns) { NbOfSteps1 += ns;}
|
|
void CountProcesses(G4String);
|
|
|
|
void AddEdep(G4double val) { edep += val;}
|
|
void AddCsdaRange (G4double l) { csdaRange += l; csdaRange2 += l*l;};
|
|
void AddProjRange (G4double x) { projRange += x; projRange2 += x*x;};
|
|
void AddTransvDev (G4double y) { transvDev += y; transvDev2 += y*y;};
|
|
|
|
private:
|
|
G4int NbOfTraks0, NbOfTraks1;
|
|
G4int NbOfSteps0, NbOfSteps1;
|
|
G4double edep;
|
|
G4double csdaRange, csdaRange2;
|
|
G4double projRange, projRange2;
|
|
G4double transvDev, transvDev2;
|
|
|
|
DetectorConstruction* detector;
|
|
PrimaryGeneratorAction* primary;
|
|
ProcessesCount* ProcCounter;
|
|
HistoManager* histoManager;
|
|
};
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
#endif
|
|
|