// // ******************************************************************** // * 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: Em2RunAction.hh,v 1.12 2002/12/11 17:12:22 maire Exp $ // GEANT4 tag $Name: geant4-05-00 $ // //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... // 08.03.01 Hisaya: Adapted MyVector for STL //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... #ifndef Em2RunAction_h #define Em2RunAction_h 1 #include "G4UserRunAction.hh" #include "G4ParticleDefinition.hh" #include "G4Gamma.hh" #include "G4Electron.hh" #include "G4Positron.hh" #include "globals.hh" #include "g4std/vector" typedef G4std::vector MyVector; //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... class Em2DetectorConstruction; class Em2PrimaryGeneratorAction; class G4Run; #ifndef G4NOHIST namespace AIDA { class ITree; class IHistogram1D; } #endif class Em2RunAction : public G4UserRunAction { public: Em2RunAction(Em2DetectorConstruction*, Em2PrimaryGeneratorAction*); ~Em2RunAction(); void BeginOfRunAction(const G4Run*); void EndOfRunAction(const G4Run*); inline void initializePerEvent(); void fillPerEvent(); inline void fillPerTrack(G4double,G4double); inline void fillPerStep (G4double,G4int,G4int); inline void particleFlux(G4ParticleDefinition*,G4int); private: void bookHisto(); void cleanHisto(); private: Em2DetectorConstruction* Em2Det; Em2PrimaryGeneratorAction* Em2Kin; G4int nLbin; MyVector dEdL; MyVector sumELongit; MyVector sumE2Longit; MyVector sumELongitCumul; MyVector sumE2LongitCumul; G4int nRbin; MyVector dEdR; MyVector sumERadial; MyVector sumE2Radial; MyVector sumERadialCumul; MyVector sumE2RadialCumul; MyVector gammaFlux; MyVector electronFlux; MyVector positronFlux; G4double ChargTrLength; G4double sumChargTrLength; G4double sum2ChargTrLength; G4double NeutrTrLength; G4double sumNeutrTrLength; G4double sum2NeutrTrLength; #ifndef G4NOHIST AIDA::ITree* tree; // the tree should only be deleted at the end AIDA::IHistogram1D* histo[12]; // (after writing the histos to file) #endif }; //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... inline void Em2RunAction::initializePerEvent() { //initialize arrays of energy deposit per bin for (G4int i=0; i