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" >> 41 #include "G4Positron.hh" 47 42 48 //....oooOO0OOooo........oooOO0OOooo........oo 43 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 49 44 50 TrackingAction::TrackingAction(PrimaryGenerato 45 TrackingAction::TrackingAction(PrimaryGeneratorAction* prim) 51 : G4UserTrackingAction(), fPrimary(prim) << 46 :G4UserTrackingAction(), >> 47 fPrimary(prim) 52 {} 48 {} 53 49 54 //....oooOO0OOooo........oooOO0OOooo........oo 50 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 55 51 56 void TrackingAction::PreUserTrackingAction(con 52 void TrackingAction::PreUserTrackingAction(const G4Track* track) 57 { 53 { 58 G4int trackID = track->GetTrackID(); << 54 G4int trackID = track->GetTrackID(); 59 if (trackID == 1) fTrackLength = 0; << 55 if (trackID == 1) fTrackLength = 0; 60 } 56 } 61 57 62 //....oooOO0OOooo........oooOO0OOooo........oo 58 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 63 59 64 void TrackingAction::PostUserTrackingAction(co 60 void TrackingAction::PostUserTrackingAction(const G4Track* track) 65 { 61 { 66 // Histograms << 62 // histograms 67 G4AnalysisManager* analysisManager = G4Analy << 63 // 68 << 64 G4AnalysisManager* analysisManager = G4AnalysisManager::Instance(); 69 G4int trackID = track->GetTrackID(); << 65 70 << 66 G4int trackID = track->GetTrackID(); 71 Run* run = static_cast<Run*>(G4RunManager::G << 67 72 << 68 Run* run 73 // << 69 = static_cast<Run*>(G4RunManager::GetRunManager()->GetNonConstCurrentRun()); 74 << 70 75 G4double tracklen = track->GetTrackLength(); << 71 // 76 << 72 77 // *** FOR ELECTRONS << 73 G4double tracklen = track->GetTrackLength(); 78 << 74 79 // Track length of primary particle or charg << 75 // *** FOR ELECTRONS 80 if (trackID == 1 && track->GetDefinition()-> << 76 81 run->AddTrackLength(tracklen); << 77 //track length of primary particle or charged secondaries 82 analysisManager->FillH1(1, tracklen); << 78 // 83 }; << 79 if (trackID == 1 && track->GetDefinition()->GetPDGCharge() == -1) 84 << 80 { 85 // Extract projected range of primary partic << 81 run->AddTrackLength(tracklen); 86 if (trackID == 1 && track->GetDefinition()-> << 82 analysisManager->FillH1(1, tracklen); 87 G4double pr = << 83 } ; 88 (track->GetPosition()) * (fPrimary->GetP << 84 89 run->AddProjRange(pr); << 85 //extract projected range of primary particle 90 analysisManager->FillH1(2, pr); << 86 // 91 } << 87 if (trackID == 1 && track->GetDefinition()->GetPDGCharge() == -1) 92 << 88 { 93 // Extract penetration range of primary part << 89 G4double pr = (track->GetPosition())* 94 if (trackID == 1 && track->GetDefinition()-> << 90 (fPrimary->GetParticleGun()->GetParticleMomentumDirection()); 95 G4double pene = std::sqrt((track->GetPosit << 91 run->AddProjRange(pr); 96 run->AddPenetration(pene); << 92 analysisManager->FillH1(2, pr); 97 analysisManager->FillH1(3, pene); << 93 } 98 }; << 94 99 << 95 //extract penetration range of primary particle 100 // *** FOR Geant4-DNA PROTONS, ALPHA AND CHA << 96 // 101 // track->GetDefinition()->GetPDGMass() > 0 << 97 if (trackID == 1 && track->GetDefinition()->GetPDGCharge() == -1) 102 << 98 { 103 // Track length of primary particle or charg << 99 G4double pene = std::sqrt((track->GetPosition())*(track->GetPosition())); 104 if (track->GetDefinition()->GetPDGCharge() > << 100 run->AddPenetration(pene); 105 && track->GetDefinition() != G4Positron: << 101 analysisManager->FillH1(3, pene); 106 { << 102 }; 107 // Local cumulation is required before sco << 103 108 fTrackLength = fTrackLength + tracklen; << 104 // *** FOR Geant4-DNA PROTONS, ALPHA AND CHARGED STATES AND IONS 109 << 105 // track->GetDefinition()->GetPDGMass() > 0 avoids gammas 110 if (track->GetKineticEnergy() == 0) { << 106 111 run->AddTrackLength(fTrackLength); << 107 //track length of primary particle or charged secondaries >> 108 // >> 109 >> 110 if (track->GetDefinition()->GetPDGCharge() >= 0 >> 111 && track->GetDefinition()->GetPDGMass() > 0 >> 112 && track->GetDefinition() != G4Positron::PositronDefinition() >> 113 ) >> 114 { >> 115 //local cumulation is required before scoring once >> 116 fTrackLength = fTrackLength + tracklen; >> 117 >> 118 if (track->GetKineticEnergy()==0) >> 119 { >> 120 run->AddTrackLength(fTrackLength); 112 analysisManager->FillH1(1, fTrackLength) 121 analysisManager->FillH1(1, fTrackLength); 113 } 122 } 114 } << 123 } >> 124 >> 125 //extract projected range of primary particle >> 126 // >> 127 >> 128 if (track->GetDefinition()->GetPDGCharge() >= 0 >> 129 && track->GetDefinition()->GetPDGMass() > 0 >> 130 && track->GetDefinition() != G4Positron::PositronDefinition() >> 131 ) >> 132 { >> 133 G4double pr = (track->GetPosition())* >> 134 (fPrimary->GetParticleGun()->GetParticleMomentumDirection()); >> 135 >> 136 if (track->GetKineticEnergy()==0) >> 137 { >> 138 run->AddProjRange(pr); >> 139 analysisManager->FillH1(2, pr); >> 140 } >> 141 } >> 142 >> 143 //extract penetration range of primary particle >> 144 // >> 145 if (track->GetDefinition()->GetPDGCharge() >= 0 >> 146 && track->GetDefinition()->GetPDGMass() > 0 >> 147 && track->GetDefinition() != G4Positron::PositronDefinition() >> 148 ) >> 149 { >> 150 G4double pene = std::sqrt((track->GetPosition())*(track->GetPosition())); >> 151 >> 152 if (track->GetKineticEnergy()==0) >> 153 { >> 154 run->AddPenetration(pene); >> 155 analysisManager->FillH1(3, pene); >> 156 } >> 157 }; 115 158 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 } 159 } >> 160 >> 161 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 141 162