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 // This example is provided by the Geant4-DNA << 27 // Any report or published results obtained us << 28 // shall cite the following Geant4-DNA collabo << 29 // Med. Phys. 45 (2018) e722-e739 << 30 // Phys. Med. 31 (2015) 861-874 << 31 // Med. Phys. 37 (2010) 4692-4708 << 32 // Int. J. Model. Simul. Sci. Comput. 1 (2010) << 33 // << 34 // The Geant4-DNA web site is available at htt << 35 // << 36 /// \file medical/dna/range/src/TrackingAction 26 /// \file medical/dna/range/src/TrackingAction.cc 37 /// \brief Implementation of the TrackingActio 27 /// \brief Implementation of the TrackingAction class >> 28 // >> 29 // $Id: TrackingAction.cc 78723 2014-01-20 10:32:17Z gcosmo $ >> 30 // >> 31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 38 33 39 #include "TrackingAction.hh" 34 #include "TrackingAction.hh" 40 35 41 #include "HistoManager.hh" << 42 #include "PrimaryGeneratorAction.hh" << 43 #include "Run.hh" 36 #include "Run.hh" >> 37 #include "PrimaryGeneratorAction.hh" >> 38 #include "HistoManager.hh" 44 39 45 #include "G4Positron.hh" << 46 #include "G4RunManager.hh" 40 #include "G4RunManager.hh" 47 41 48 //....oooOO0OOooo........oooOO0OOooo........oo 42 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 49 43 50 TrackingAction::TrackingAction(PrimaryGenerato 44 TrackingAction::TrackingAction(PrimaryGeneratorAction* prim) 51 : G4UserTrackingAction(), fPrimary(prim) << 45 :G4UserTrackingAction(), >> 46 fPrimary(prim) 52 {} 47 {} 53 48 54 //....oooOO0OOooo........oooOO0OOooo........oo 49 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 55 50 56 void TrackingAction::PreUserTrackingAction(con 51 void TrackingAction::PreUserTrackingAction(const G4Track* track) 57 { 52 { 58 G4int trackID = track->GetTrackID(); << 53 G4int trackID = track->GetTrackID(); 59 if (trackID == 1) fTrackLength = 0; << 54 if (trackID == 1) fTrackLength = 0; 60 } 55 } 61 56 62 //....oooOO0OOooo........oooOO0OOooo........oo 57 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 63 58 64 void TrackingAction::PostUserTrackingAction(co 59 void TrackingAction::PostUserTrackingAction(const G4Track* track) 65 { 60 { 66 // Histograms << 61 // histograms 67 G4AnalysisManager* analysisManager = G4Analy << 62 // 68 << 63 G4AnalysisManager* analysisManager = G4AnalysisManager::Instance(); 69 G4int trackID = track->GetTrackID(); << 64 70 << 65 G4int trackID = track->GetTrackID(); 71 Run* run = static_cast<Run*>(G4RunManager::G << 66 72 << 67 Run* run 73 // << 68 = static_cast<Run*>(G4RunManager::GetRunManager()->GetNonConstCurrentRun()); 74 << 69 75 G4double tracklen = track->GetTrackLength(); << 70 // 76 << 71 77 // *** FOR ELECTRONS << 72 G4double tracklen = track->GetTrackLength(); 78 << 73 79 // Track length of primary particle or charg << 74 // *** FOR ELECTRONS 80 if (trackID == 1 && track->GetDefinition()-> << 75 81 run->AddTrackLength(tracklen); << 76 //track length of primary particle or charged secondaries 82 analysisManager->FillH1(1, tracklen); << 77 // 83 }; << 78 if (trackID == 1 && track->GetDefinition()->GetPDGCharge() == -1) 84 << 79 { 85 // Extract projected range of primary partic << 80 run->AddTrackLength(tracklen); 86 if (trackID == 1 && track->GetDefinition()-> << 81 analysisManager->FillH1(1, tracklen); 87 G4double pr = << 82 } ; 88 (track->GetPosition()) * (fPrimary->GetP << 83 89 run->AddProjRange(pr); << 84 //extract projected range of primary particle 90 analysisManager->FillH1(2, pr); << 85 // 91 } << 86 if (trackID == 1 && track->GetDefinition()->GetPDGCharge() == -1) 92 << 87 { 93 // Extract penetration range of primary part << 88 G4double pr = (track->GetPosition())* 94 if (trackID == 1 && track->GetDefinition()-> << 89 (fPrimary->GetParticleGun()->GetParticleMomentumDirection()); 95 G4double pene = std::sqrt((track->GetPosit << 90 run->AddProjRange(pr); 96 run->AddPenetration(pene); << 91 analysisManager->FillH1(2, pr); 97 analysisManager->FillH1(3, pene); << 92 } 98 }; << 93 99 << 94 //extract penetration range of primary particle 100 // *** FOR Geant4-DNA PROTONS, ALPHA AND CHA << 95 // 101 // track->GetDefinition()->GetPDGMass() > 0 << 96 if (trackID == 1 && track->GetDefinition()->GetPDGCharge() == -1) 102 << 97 { 103 // Track length of primary particle or charg << 98 G4double pene = std::sqrt((track->GetPosition())*(track->GetPosition())); 104 if (track->GetDefinition()->GetPDGCharge() > << 99 run->AddPenetration(pene); 105 && track->GetDefinition() != G4Positron: << 100 analysisManager->FillH1(3, pene); 106 { << 101 }; 107 // Local cumulation is required before sco << 102 108 fTrackLength = fTrackLength + tracklen; << 103 // *** FOR Geant4-DNA PROTONS, ALPHA AND CHARGED STATES AND IONS 109 << 104 // track->GetDefinition()->GetPDGMass() > 0 avoids gammas 110 if (track->GetKineticEnergy() == 0) { << 105 111 run->AddTrackLength(fTrackLength); << 106 //track length of primary particle or charged secondaries >> 107 // >> 108 >> 109 if (track->GetDefinition()->GetPDGCharge() >= 0 >> 110 && track->GetDefinition()->GetPDGMass() > 0) >> 111 { >> 112 //local cumulation is required before scoring once >> 113 fTrackLength = fTrackLength + tracklen; >> 114 >> 115 if (track->GetKineticEnergy()==0) >> 116 { >> 117 run->AddTrackLength(fTrackLength); 112 analysisManager->FillH1(1, fTrackLength) 118 analysisManager->FillH1(1, fTrackLength); 113 } 119 } 114 } << 120 } >> 121 >> 122 //extract projected range of primary particle >> 123 // >> 124 >> 125 if (track->GetDefinition()->GetPDGCharge() >= 0 >> 126 && track->GetDefinition()->GetPDGMass() > 0) >> 127 { >> 128 G4double pr = (track->GetPosition())* >> 129 (fPrimary->GetParticleGun()->GetParticleMomentumDirection()); >> 130 >> 131 if (track->GetKineticEnergy()==0) >> 132 { >> 133 run->AddProjRange(pr); >> 134 analysisManager->FillH1(2, pr); >> 135 } >> 136 } >> 137 >> 138 //extract penetration range of primary particle >> 139 // >> 140 if (track->GetDefinition()->GetPDGCharge() >= 0 >> 141 && track->GetDefinition()->GetPDGMass() > 0) >> 142 { >> 143 G4double pene = std::sqrt((track->GetPosition())*(track->GetPosition())); >> 144 >> 145 if (track->GetKineticEnergy()==0) >> 146 { >> 147 run->AddPenetration(pene); >> 148 analysisManager->FillH1(3, pene); >> 149 } >> 150 }; 115 151 116 // Extract projected range of primary partic << 117 if (track->GetDefinition()->GetPDGCharge() > << 118 && track->GetDefinition() != G4Positron: << 119 { << 120 G4double pr = << 121 (track->GetPosition()) * (fPrimary->GetP << 122 << 123 if (track->GetKineticEnergy() == 0) { << 124 run->AddProjRange(pr); << 125 analysisManager->FillH1(2, pr); << 126 } << 127 } << 128 << 129 // Extract penetration range of primary part << 130 if (track->GetDefinition()->GetPDGCharge() > << 131 && track->GetDefinition() != G4Positron: << 132 { << 133 G4double pene = std::sqrt((track->GetPosit << 134 << 135 if (track->GetKineticEnergy() == 0) { << 136 run->AddPenetration(pene); << 137 analysisManager->FillH1(3, pene); << 138 } << 139 }; << 140 } 152 } >> 153 >> 154 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 141 155