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 is the *BASIC* version of IORT, a Gean 26 // This is the *BASIC* version of IORT, a Geant4-based application 27 // 27 // 28 // Main Authors: G.Russo(a,b), C.Casarino*(c), 28 // Main Authors: G.Russo(a,b), C.Casarino*(c), G.C. Candiano(c), G.A.P. Cirrone(d), F.Romano(d) 29 // Contributor Authors: S.Guatelli(e) 29 // Contributor Authors: S.Guatelli(e) 30 // Past Authors: G.Arnetta(c), S.E.Mazzaglia(d 30 // Past Authors: G.Arnetta(c), S.E.Mazzaglia(d) 31 // 31 // 32 // (a) Fondazione Istituto San Raffaele G.Gi 32 // (a) Fondazione Istituto San Raffaele G.Giglio, Cefalù, Italy 33 // (b) IBFM-CNR , Segrate (Milano), Italy 33 // (b) IBFM-CNR , Segrate (Milano), Italy 34 // (c) LATO (Laboratorio di Tecnologie Oncol 34 // (c) LATO (Laboratorio di Tecnologie Oncologiche), Cefalù, Italy 35 // (d) Laboratori Nazionali del Sud of the I 35 // (d) Laboratori Nazionali del Sud of the INFN, Catania, Italy 36 // (e) University of Wollongong, Australia << 36 // (e) University of Wallongong, Australia 37 // 37 // 38 // *Corresponding author, email to carlo.cas 38 // *Corresponding author, email to carlo.casarino@polooncologicocefalu.it 39 ////////////////////////////////////////////// 39 ////////////////////////////////////////////////////////////////////////////////////////////// 40 40 41 #include "G4SystemOfUnits.hh" << 41 #include <CLHEP/Units/SystemOfUnits.h> >> 42 42 #include "G4SteppingManager.hh" 43 #include "G4SteppingManager.hh" 43 #include "G4TrackVector.hh" 44 #include "G4TrackVector.hh" 44 #include "IORTSteppingAction.hh" 45 #include "IORTSteppingAction.hh" 45 #include "G4ios.hh" 46 #include "G4ios.hh" 46 #include "G4SteppingManager.hh" 47 #include "G4SteppingManager.hh" 47 #include "G4Track.hh" 48 #include "G4Track.hh" 48 #include "G4Step.hh" 49 #include "G4Step.hh" 49 #include "G4StepPoint.hh" 50 #include "G4StepPoint.hh" 50 #include "G4TrackStatus.hh" 51 #include "G4TrackStatus.hh" 51 #include "G4TrackVector.hh" 52 #include "G4TrackVector.hh" 52 #include "G4ParticleDefinition.hh" 53 #include "G4ParticleDefinition.hh" 53 #include "G4ParticleTypes.hh" 54 #include "G4ParticleTypes.hh" 54 #include "G4UserEventAction.hh" << 55 #include "G4UserEventAction.hh" // NOT INCLUDED IN geant4.9.3p01_version >> 56 >> 57 #include "IORTAnalysisManager.hh" >> 58 55 #include "IORTRunAction.hh" 59 #include "IORTRunAction.hh" 56 #include "G4SystemOfUnits.hh" << 57 60 58 IORTSteppingAction::IORTSteppingAction( IORTRu << 61 ///////////////////////////////////////////////////////////////////////////// 59 {} << 62 IORTSteppingAction::IORTSteppingAction( IORTRunAction *run) >> 63 { >> 64 runAction = run; >> 65 } 60 66 >> 67 ///////////////////////////////////////////////////////////////////////////// 61 IORTSteppingAction::~IORTSteppingAction() 68 IORTSteppingAction::~IORTSteppingAction() 62 {} << 69 { >> 70 } 63 71 64 void IORTSteppingAction::UserSteppingAction(co << 72 ///////////////////////////////////////////////////////////////////////////// >> 73 void IORTSteppingAction::UserSteppingAction(const G4Step* aStep) 65 { 74 { 66 << 75 /* >> 76 // USEFULL METHODS TO RETRIEVE INFORMATION DURING THE STEPS >> 77 if( (aStep->GetTrack()->GetVolume()->GetName() == "DetectorPhys") >> 78 && aStep->GetTrack()->GetDefinition()->GetParticleName() == "proton") >> 79 //G4int evtNb = G4RunManager::GetRunManager()->GetCurrentEvent() -> GetEventID(); >> 80 { >> 81 G4cout << "ENERGIA: " << aStep->GetTrack()->GetKineticEnergy() >> 82 << " VOLUME " << aStep->GetTrack()->GetVolume()->GetName() >> 83 << " MATERIALE " << aStep -> GetTrack() -> GetMaterial() -> GetName() >> 84 << " EVENTO " << G4RunManager::GetRunManager()->GetCurrentEvent() -> GetEventID() >> 85 << " POS " << aStep->GetTrack()->GetPosition().x() >> 86 << G4endl; >> 87 } >> 88 */ >> 89 >> 90 if( aStep->GetTrack()->GetVolume()->GetName() == "NewDetectorPhys"){ >> 91 #ifdef G4ANALYSIS_USE_ROOT >> 92 G4ParticleDefinition *def = aStep->GetTrack()->GetDefinition(); >> 93 G4double secondaryParticleKineticEnergy = aStep->GetTrack()->GetKineticEnergy(); >> 94 G4String particleType = def->GetParticleType(); // particle type = nucleus for d, t, He3, alpha, and heavier nuclei >> 95 G4String particleName = def->GetParticleName(); // e.g. for alpha: the name = "alpha" and type = "nucleus" >> 96 if(particleType == "nucleus") { >> 97 G4int A = def->GetBaryonNumber(); >> 98 G4double Z = def->GetPDGCharge(); >> 99 G4double posX = aStep->GetTrack()->GetPosition().x() / CLHEP::cm; >> 100 G4double posY = aStep->GetTrack()->GetPosition().y() / CLHEP::cm; >> 101 G4double posZ = aStep->GetTrack()->GetPosition().z() / CLHEP::cm; >> 102 G4double energy = secondaryParticleKineticEnergy / A / CLHEP::MeV; >> 103 >> 104 IORTAnalysisManager* analysisMgr = IORTAnalysisManager::GetInstance(); >> 105 analysisMgr->FillFragmentTuple(A, Z, energy, posX, posY, posZ); >> 106 } else if(particleName == "proton") { // proton (hydrogen-1) is a special case >> 107 G4double posX = aStep->GetTrack()->GetPosition().x() / CLHEP::cm ; >> 108 G4double posY = aStep->GetTrack()->GetPosition().y() / CLHEP::cm ; >> 109 G4double posZ = aStep->GetTrack()->GetPosition().z() / CLHEP::cm ; >> 110 G4double energy = secondaryParticleKineticEnergy * CLHEP::MeV; // Hydrogen-1: A = 1, Z = 1 >> 111 IORTAnalysisManager::GetInstance()->FillFragmentTuple(1, 1.0, energy, posX, posY, posZ); >> 112 } >> 113 >> 114 G4String secondaryParticleName = def -> GetParticleName(); >> 115 //G4cout <<"Particle: " << secondaryParticleName << G4endl; >> 116 //G4cout <<"Energy: " << secondaryParticleKineticEnergy << G4endl; >> 117 IORTAnalysisManager* analysis = IORTAnalysisManager::GetInstance(); >> 118 //There is a bunch of stuff recorded with the energy 0, something should perhaps be done about this. >> 119 if(secondaryParticleName == "proton") { >> 120 analysis->hydrogenEnergy(secondaryParticleKineticEnergy / CLHEP::MeV); >> 121 } >> 122 if(secondaryParticleName == "deuteron") { >> 123 analysis->hydrogenEnergy((secondaryParticleKineticEnergy/2) / CLHEP::MeV); >> 124 } >> 125 if(secondaryParticleName == "triton") { >> 126 analysis->hydrogenEnergy((secondaryParticleKineticEnergy/3) / CLHEP::MeV); >> 127 } >> 128 if(secondaryParticleName == "alpha") { >> 129 analysis->heliumEnergy((secondaryParticleKineticEnergy/4) / CLHEP::MeV); >> 130 } >> 131 if(secondaryParticleName == "He3"){ >> 132 analysis->heliumEnergy((secondaryParticleKineticEnergy/3) / CLHEP::MeV); >> 133 } >> 134 #endif >> 135 >> 136 aStep->GetTrack()->SetTrackStatus(fKillTrackAndSecondaries); >> 137 } >> 138 >> 139 // Electromagnetic and hadronic processes of primary particles in the phantom >> 140 //setting phantomPhys correctly will break something here fixme >> 141 if ((aStep -> GetTrack() -> GetTrackID() == 1) && >> 142 (aStep -> GetTrack() -> GetVolume() -> GetName() == "PhantomPhys") && >> 143 (aStep -> GetPostStepPoint() -> GetProcessDefinedStep() != NULL)) >> 144 { >> 145 G4String process = aStep -> GetPostStepPoint() -> >> 146 GetProcessDefinedStep() -> GetProcessName(); >> 147 >> 148 if ((process == "Transportation") || (process == "StepLimiter")) {;} >> 149 else >> 150 { >> 151 if ((process == "msc") || (process == "hLowEIoni") || (process == "hIoni")) >> 152 { >> 153 runAction -> AddEMProcess(); >> 154 } >> 155 else >> 156 { >> 157 runAction -> AddHadronicProcess(); >> 158 >> 159 if ( (process != "LElastic") && (process != "ProtonInelastic") && (process != "hElastic") ) >> 160 G4cout << "Warning! Unknown proton process: "<< process << G4endl; >> 161 } >> 162 } >> 163 } >> 164 >> 165 // Retrieve information about the secondary particles originated in the phantom >> 166 >> 167 G4SteppingManager* steppingManager = fpSteppingManager; >> 168 >> 169 // check if it is alive >> 170 //if(theTrack-> GetTrackStatus() == fAlive) { return; } >> 171 >> 172 // Retrieve the secondary particles >> 173 G4TrackVector* fSecondary = steppingManager -> GetfSecondary(); >> 174 >> 175 for(size_t lp1=0;lp1<(*fSecondary).size(); lp1++) >> 176 { >> 177 G4String volumeName = (*fSecondary)[lp1] -> GetVolume() -> GetName(); >> 178 >> 179 if (volumeName == "phantomPhys") >> 180 { >> 181 #ifdef G4ANALYSIS_USE_ROOT >> 182 G4String secondaryParticleName = (*fSecondary)[lp1]->GetDefinition() -> GetParticleName(); >> 183 G4double secondaryParticleKineticEnergy = (*fSecondary)[lp1] -> GetKineticEnergy(); >> 184 >> 185 IORTAnalysisManager* analysis = IORTAnalysisManager::GetInstance(); >> 186 >> 187 if (secondaryParticleName == "e-") >> 188 analysis -> electronEnergyDistribution(secondaryParticleKineticEnergy/CLHEP::MeV); >> 189 >> 190 if (secondaryParticleName == "gamma") >> 191 analysis -> gammaEnergyDistribution(secondaryParticleKineticEnergy/CLHEP::MeV); >> 192 >> 193 if (secondaryParticleName == "deuteron") >> 194 analysis -> deuteronEnergyDistribution(secondaryParticleKineticEnergy/CLHEP::MeV); >> 195 >> 196 if (secondaryParticleName == "triton") >> 197 analysis -> tritonEnergyDistribution(secondaryParticleKineticEnergy/CLHEP::MeV); >> 198 >> 199 if (secondaryParticleName == "alpha") >> 200 analysis -> alphaEnergyDistribution(secondaryParticleKineticEnergy/CLHEP::MeV); >> 201 >> 202 G4double z = (*fSecondary)[lp1]-> GetDynamicParticle() -> GetDefinition() -> GetPDGCharge(); >> 203 if (z > 0.) >> 204 { >> 205 G4int a = (*fSecondary)[lp1]-> GetDynamicParticle() -> GetDefinition() -> GetBaryonNumber(); >> 206 G4int electronOccupancy = (*fSecondary)[lp1] -> GetDynamicParticle() -> GetTotalOccupancy(); >> 207 >> 208 // If a generic ion is originated in the detector, its baryonic number, PDG charge, >> 209 // total number of electrons in the orbitals are stored in a ntuple >> 210 analysis -> genericIonInformation(a, z, electronOccupancy, secondaryParticleKineticEnergy/CLHEP::MeV); >> 211 } >> 212 #endif >> 213 } >> 214 } 67 } 215 } 68 216