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