Geant4 Cross Reference |
1 // 1 2 // ******************************************* 3 // * License and Disclaimer 4 // * 5 // * The Geant4 software is copyright of th 6 // * the Geant4 Collaboration. It is provided 7 // * conditions of the Geant4 Software License 8 // * LICENSE and available at http://cern.ch/ 9 // * include a list of copyright holders. 10 // * 11 // * Neither the authors of this software syst 12 // * institutes,nor the agencies providing fin 13 // * work make any representation or warran 14 // * regarding this software system or assum 15 // * use. Please see the license in the file 16 // * for the full disclaimer and the limitatio 17 // * 18 // * This code implementation is the result 19 // * technical work of the GEANT4 collaboratio 20 // * By using, copying, modifying or distri 21 // * any work based on the software) you ag 22 // * use in resulting scientific publicati 23 // * acceptance of all terms of the Geant4 Sof 24 // ******************************************* 25 // 26 /// \file TrackingAction.cc 27 /// \brief Implementation of the TrackingActio 28 // 29 // 30 //....oooOO0OOooo........oooOO0OOooo........oo 31 //....oooOO0OOooo........oooOO0OOooo........oo 32 33 #include "TrackingAction.hh" 34 35 #include "EventAction.hh" 36 #include "HistoManager.hh" 37 #include "Run.hh" 38 #include "TrackingMessenger.hh" 39 40 #include "G4ParticleTypes.hh" 41 #include "G4RunManager.hh" 42 #include "G4StepStatus.hh" 43 #include "G4SystemOfUnits.hh" 44 #include "G4Track.hh" 45 #include "G4UnitsTable.hh" 46 47 //....oooOO0OOooo........oooOO0OOooo........oo 48 49 TrackingAction::TrackingAction(EventAction* ev 50 { 51 fTrackMessenger = new TrackingMessenger(this 52 } 53 54 //....oooOO0OOooo........oooOO0OOooo........oo 55 56 TrackingAction::~TrackingAction() 57 { 58 delete fTrackMessenger; 59 } 60 61 //....oooOO0OOooo........oooOO0OOooo........oo 62 63 void TrackingAction::PreUserTrackingAction(con 64 { 65 // count secondary particles 66 if (track->GetTrackID() == 1) return; 67 68 Run* run = static_cast<Run*>(G4RunManager::G 69 70 const G4ParticleDefinition* particle = track 71 G4String name = particle->GetParticleName(); 72 G4double meanLife = particle->GetPDGLifeTime 73 G4double energy = track->GetKineticEnergy(); 74 if (fParticleCount) run->ParticleCount(name, 75 76 // histograms: energy at creation 77 // 78 G4AnalysisManager* analysis = G4AnalysisMana 79 80 G4int ih = 0; 81 G4String type = particle->GetParticleType(); 82 G4double charge = particle->GetPDGCharge(); 83 if (charge > 3.) 84 ih = 10; 85 else if (particle == G4Gamma::Gamma()) 86 ih = 4; 87 else if (particle == G4Electron::Electron()) 88 ih = 5; 89 else if (particle == G4Positron::Positron()) 90 ih = 5; 91 else if (particle == G4Neutron::Neutron()) 92 ih = 6; 93 else if (particle == G4Proton::Proton()) 94 ih = 7; 95 else if (particle == G4Deuteron::Deuteron()) 96 ih = 8; 97 else if (particle == G4Alpha::Alpha()) 98 ih = 9; 99 else if (type == "nucleus") 100 ih = 10; 101 else if (type == "baryon") 102 ih = 11; 103 else if (type == "meson") 104 ih = 12; 105 else if (type == "lepton") 106 ih = 13; 107 if (ih > 0) analysis->FillH1(ih, energy); 108 109 // to force only 1 fission : kill secondary 110 if (fKillNeutron && (particle == G4Neutron:: 111 fEventAction->AddEdep(energy); 112 G4Track* aTrack = (G4Track*)track; 113 aTrack->SetTrackStatus(fStopAndKill); 114 } 115 } 116 117 //....oooOO0OOooo........oooOO0OOooo........oo 118 119 void TrackingAction::PostUserTrackingAction(co 120 { 121 // keep only emerging particles 122 G4StepStatus status = track->GetStep()->GetP 123 if (status != fWorldBoundary) return; 124 125 const G4ParticleDefinition* particle = track 126 G4String name = particle->GetParticleName(); 127 G4double energy = track->GetKineticEnergy(); 128 129 fEventAction->AddEflow(energy); 130 131 Run* run = static_cast<Run*>(G4RunManager::G 132 run->ParticleFlux(name, energy); 133 134 // histograms: energy at exit 135 // 136 G4AnalysisManager* analysis = G4AnalysisMana 137 138 G4int ih = 0; 139 G4String type = particle->GetParticleType(); 140 G4double charge = particle->GetPDGCharge(); 141 if (charge > 3.) 142 ih = 20; 143 else if (particle == G4Gamma::Gamma()) 144 ih = 14; 145 else if (particle == G4Electron::Electron()) 146 ih = 15; 147 else if (particle == G4Positron::Positron()) 148 ih = 15; 149 else if (particle == G4Neutron::Neutron()) 150 ih = 16; 151 else if (particle == G4Proton::Proton()) 152 ih = 17; 153 else if (particle == G4Deuteron::Deuteron()) 154 ih = 18; 155 else if (particle == G4Alpha::Alpha()) 156 ih = 19; 157 else if (type == "nucleus") 158 ih = 20; 159 else if (type == "baryon") 160 ih = 21; 161 else if (type == "meson") 162 ih = 22; 163 else if (type == "lepton") 164 ih = 23; 165 if (ih > 0) analysis->FillH1(ih, energy); 166 } 167 168 //....oooOO0OOooo........oooOO0OOooo........oo 169