// // ******************************************************************** // * 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 "G4AnalysisManager.hh" #include "G4DataVector.hh" #include "G4Run.hh" #include "G4StatDouble.hh" //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... class G4Step; class G4ElectronIonPair; class TestParameters; //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... class Run : public G4Run { public: Run(); ~Run() override = default; void Merge(const G4Run*) override; void BeginOfRun(); void EndOfRun(); void BeginOfEvent(); void EndOfEvent(); void AddEnergy(G4double edep, const G4Step*); Run& operator=(const Run& right) = delete; Run(const Run&) = delete; inline void SetVerbose(G4int value); inline G4int GetVerbose() const; inline G4double GetTotStepGas() const; inline G4double GetTotCluster() const; inline G4double GetMeanCluster() const; inline const G4StatDouble* GetStat() const; private: G4int fVerbose = 1; G4int fNbins = 0; G4double fStepGas = 0.0; G4double fMaxEnergy = 0.0; G4double fCluster = 0.0; G4double fTotStepGas = 0.0; G4double fTotCluster = 0.0; G4double fMeanCluster = 0.0; G4double fFactorALICE; G4double fWidthALICE; G4double fEvt = 0.0; G4double fTotEdep = 0.0; G4double fOverflow = 0.0; G4StatDouble fEdep = 325; G4DataVector fEgas; G4ElectronIonPair* fElIonPair; TestParameters* fParam; }; //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... inline void Run::SetVerbose(G4int value) { fVerbose = value; } inline G4int Run::GetVerbose() const { return fVerbose; } inline G4double Run::GetTotStepGas() const { return fTotStepGas; } inline G4double Run::GetTotCluster() const { return fTotCluster; } inline G4double Run::GetMeanCluster() const { return fMeanCluster; } inline const G4StatDouble* Run::GetStat() const { return &fEdep; } #endif