Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 /// \file TrackingAction.cc 26 /// \file TrackingAction.cc 27 /// \brief Implementation of the TrackingActio 27 /// \brief Implementation of the TrackingAction class 28 // 28 // >> 29 // $Id: TrackingAction.cc 69099 2013-04-18 12:25:19Z maire $ 29 // 30 // 30 //....oooOO0OOooo........oooOO0OOooo........oo 31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 31 //....oooOO0OOooo........oooOO0OOooo........oo 32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 32 33 33 #include "TrackingAction.hh" 34 #include "TrackingAction.hh" 34 35 35 #include "HistoManager.hh" << 36 #include "Run.hh" 36 #include "Run.hh" >> 37 #include "HistoManager.hh" 37 38 38 #include "G4RunManager.hh" 39 #include "G4RunManager.hh" 39 #include "G4SystemOfUnits.hh" << 40 #include "G4Track.hh" 40 #include "G4Track.hh" >> 41 #include "G4SystemOfUnits.hh" >> 42 >> 43 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 44 >> 45 TrackingAction::TrackingAction() >> 46 :G4UserTrackingAction(), >> 47 fNbStep1(0),fNbStep2(0),fTrackLen1(0.),fTrackLen2(0.),fTime1(0.),fTime2(0.) >> 48 { } 41 49 42 //....oooOO0OOooo........oooOO0OOooo........oo 50 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 43 51 44 void TrackingAction::PreUserTrackingAction(con 52 void TrackingAction::PreUserTrackingAction(const G4Track*) 45 { 53 { 46 fNbStep1 = fNbStep2 = 0; 54 fNbStep1 = fNbStep2 = 0; 47 fTrackLen1 = fTrackLen2 = 0.; 55 fTrackLen1 = fTrackLen2 = 0.; 48 fTime1 = fTime2 = 0.; 56 fTime1 = fTime2 = 0.; 49 } 57 } 50 58 51 //....oooOO0OOooo........oooOO0OOooo........oo 59 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 52 60 53 void TrackingAction::UpdateTrackInfo(G4double << 61 void TrackingAction::UpdateTrackInfo(G4double ekin,G4double trackl, >> 62 G4double time) 54 { 63 { 55 const G4double thermal = 1 * eV; << 64 const G4double thermal = 1*eV; 56 if (ekin > thermal) { 65 if (ekin > thermal) { 57 fNbStep1++; << 66 fNbStep1++; fTrackLen1 = trackl; fTime1 = time; 58 fTrackLen1 = trackl; << 67 } else { 59 fTime1 = time; << 68 fNbStep2++; fTrackLen2 = trackl - fTrackLen1; fTime2 = time - fTime1; 60 } << 61 else { << 62 fNbStep2++; << 63 fTrackLen2 = trackl - fTrackLen1; << 64 fTime2 = time - fTime1; << 65 } 69 } 66 } 70 } 67 71 68 //....oooOO0OOooo........oooOO0OOooo........oo 72 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 69 73 70 void TrackingAction::PostUserTrackingAction(co 74 void TrackingAction::PostUserTrackingAction(const G4Track* track) 71 { 75 { 72 // keep only primary neutron << 76 // keep only primary neutron 73 // << 77 // 74 G4int trackID = track->GetTrackID(); << 78 G4int trackID = track->GetTrackID(); 75 if (trackID > 1) return; << 79 if (trackID > 1) return; 76 << 80 77 Run* run = static_cast<Run*>(G4RunManager::G << 81 Run* run 78 run->SumTrackLength(fNbStep1, fNbStep2, fTra << 82 = static_cast<Run*>( 79 << 83 G4RunManager::GetRunManager()->GetNonConstCurrentRun()); 80 // histograms << 84 run->SumTrackLength(fNbStep1,fNbStep2,fTrackLen1,fTrackLen2,fTime1,fTime2); 81 // << 85 82 G4AnalysisManager* analysisManager = G4Analy << 86 // histograms 83 analysisManager->FillH1(1, fNbStep1); << 87 // 84 analysisManager->FillH1(2, fTrackLen1); << 88 G4AnalysisManager* analysisManager = G4AnalysisManager::Instance(); 85 analysisManager->FillH1(3, fTime1); << 89 analysisManager->FillH1(1,fNbStep1); 86 analysisManager->FillH1(4, fNbStep2); << 90 analysisManager->FillH1(2,fTrackLen1); 87 analysisManager->FillH1(5, fTrackLen2); << 91 analysisManager->FillH1(3,fTime1); 88 analysisManager->FillH1(6, fTime2); << 92 analysisManager->FillH1(4,fNbStep2); >> 93 analysisManager->FillH1(5,fTrackLen2); >> 94 analysisManager->FillH1(6,fTime2); 89 } 95 } 90 96 91 //....oooOO0OOooo........oooOO0OOooo........oo 97 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 98 92 99