Files
2025-12-05 08:54:02 +01:00

133 lines
4.0 KiB
C++

//
// ********************************************************************
// * License and Disclaimer *
// * *
// * The Geant4 software is copyright of the Copyright Holders of *
// * the Geant4 Collaboration. It is provided under the terms and *
// * conditions of the Geant4 Software License, included in the file *
// * LICENSE and available at http://cern.ch/geant4/license . These *
// * include a list of copyright holders. *
// * *
// * 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. Please see the license in the file LICENSE and URL above *
// * for the full disclaimer and the limitation of liability. *
// * *
// * This code implementation is the result of the scientific and *
// * technical work of the GEANT4 collaboration. *
// * By using, copying, modifying or distributing the software (or *
// * any work based on the software) you agree to acknowledge its *
// * use in resulting scientific publications, and indicate your *
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
/// \file Run.hh
/// \brief Definition of the Run class
#ifndef Run_h
#define Run_h 1
#include "DetectorConstruction.hh"
#include "G4Run.hh"
#include "G4AnalysisManager.hh"
#include <vector>
typedef std::vector<G4double> MyVector;
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
class DetectorConstruction;
class PrimaryGeneratorAction;
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
class Run : public G4Run
{
public:
Run(DetectorConstruction*, PrimaryGeneratorAction*);
~Run() override = default;
void Merge(const G4Run*) override;
void InitializePerEvent();
void FillPerEvent();
inline void FillPerTrack(G4double, G4double);
inline void FillPerStep(G4double, G4int, G4int);
inline void AddStep(G4double q);
void EndOfRun(G4double edep, G4double rms, G4double& limit);
inline void SetVerbose(G4int val) { fVerbose = val; };
private:
void Reset();
DetectorConstruction* fDet = nullptr;
PrimaryGeneratorAction* fKin = nullptr;
G4int f_nLbin = kMaxBin;
MyVector f_dEdL;
MyVector fSumELongit;
MyVector fSumE2Longit;
MyVector fSumELongitCumul;
MyVector fSumE2LongitCumul;
G4int f_nRbin = kMaxBin;
MyVector f_dEdR;
MyVector fSumERadial;
MyVector fSumE2Radial;
MyVector fSumERadialCumul;
MyVector fSumE2RadialCumul;
G4double fChargTrLength = 0.;
G4double fSumChargTrLength = 0.;
G4double fSum2ChargTrLength = 0.;
G4double fNeutrTrLength = 0.;
G4double fSumNeutrTrLength = 0.;
G4double fSum2NeutrTrLength = 0.;
G4double fChargedStep = 0.;
G4double fNeutralStep = 0.;
G4int fVerbose = 0;
};
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
inline void Run::FillPerTrack(G4double charge, G4double trkLength)
{
if (charge != 0.)
fChargTrLength += trkLength;
else
fNeutrTrLength += trkLength;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
inline void Run::FillPerStep(G4double dEstep, G4int Lbin, G4int Rbin)
{
f_dEdL[Lbin] += dEstep;
f_dEdR[Rbin] += dEstep;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
inline void Run::AddStep(G4double q)
{
if (q == 0.0) {
fNeutralStep += 1.0;
}
else {
fChargedStep += 1.0;
}
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
#endif