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 26 // This example is provided by the Geant4-DNA collaboration 27 // Any report or published results obtained us 27 // Any report or published results obtained using the Geant4-DNA software 28 // shall cite the following Geant4-DNA collabo 28 // shall cite the following Geant4-DNA collaboration publication: 29 // Med. Phys. 37 (2010) 4692-4708 29 // Med. Phys. 37 (2010) 4692-4708 30 // J. Comput. Phys. 274 (2014) 841-882 30 // J. Comput. Phys. 274 (2014) 841-882 31 // The Geant4-DNA web site is available at htt 31 // The Geant4-DNA web site is available at http://geant4-dna.org 32 // 32 // 33 // 33 // 34 /// \file SteppingAction.cc 34 /// \file SteppingAction.cc 35 /// \brief Implementation of the SteppingActio 35 /// \brief Implementation of the SteppingAction class 36 36 >> 37 #include "Analysis.hh" >> 38 #include "EventAction.hh" 37 #include "SteppingAction.hh" 39 #include "SteppingAction.hh" 38 << 40 #include "RunAction.hh" 39 #include "DetectorConstruction.hh" 41 #include "DetectorConstruction.hh" 40 #include "EventAction.hh" << 41 #include "PrimaryGeneratorAction.hh" 42 #include "PrimaryGeneratorAction.hh" 42 #include "RunAction.hh" << 43 << 44 #include "G4AnalysisManager.hh" << 45 #include "G4SteppingManager.hh" << 46 #include "G4SystemOfUnits.hh" 43 #include "G4SystemOfUnits.hh" 47 #include "G4Threading.hh" << 44 #include "G4SteppingManager.hh" 48 #include "G4VPhysicalVolume.hh" << 49 #include "G4VTouchable.hh" 45 #include "G4VTouchable.hh" >> 46 #include "G4VPhysicalVolume.hh" >> 47 #include "G4Threading.hh" >> 48 >> 49 >> 50 //#ifdef G4MULTITHREADED >> 51 // #include "G4MTRunManager.hh" >> 52 //#else >> 53 #include "G4RunManager.hh" >> 54 //#endif >> 55 50 56 51 // #ifdef G4MULTITHREADED << 52 // #include "G4MTRunManager.hh" << 53 // #else << 54 #include "G4RunManager.hh" << 55 // #endif << 56 57 57 //....oooOO0OOooo........oooOO0OOooo........oo 58 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 58 SteppingAction::SteppingAction(EventAction* ev << 59 SteppingAction::SteppingAction(EventAction* event) >> 60 : G4UserSteppingAction(), >> 61 fpEventaction(event) >> 62 {} >> 63 59 64 60 //....oooOO0OOooo........oooOO0OOooo........oo 65 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 61 SteppingAction::~SteppingAction() {} << 66 SteppingAction::~SteppingAction() >> 67 {} >> 68 62 69 63 //....oooOO0OOooo........oooOO0OOooo........oo 70 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 64 void SteppingAction::UserSteppingAction(const 71 void SteppingAction::UserSteppingAction(const G4Step* step) 65 { 72 { 66 // #ifdef G4MULTITHREADED << 73 //#ifdef G4MULTITHREADED 67 // G4MTRunManager *rm = G4MTRunManager:: << 74 // G4MTRunManager *rm = G4MTRunManager::GetRunManager(); 68 // #else << 75 //#else 69 G4RunManager* rm = G4RunManager::GetRunManag << 76 G4RunManager *rm = G4RunManager::GetRunManager(); 70 // #endif << 77 //#endif 71 << 78 72 G4int eventID = rm->GetCurrentEvent()->GetEv << 79 G4int eventID= rm->GetCurrentEvent()->GetEventID(); 73 << 80 74 G4double flagProcess(0.); << 81 G4double flagProcess (0.); 75 G4double x, y, z; << 82 G4double x,y,z; 76 G4double dE; << 83 G4double dE; 77 G4String process_name; << 84 G4String process_name; 78 process_name = step->GetPostStepPoint()->Get << 85 process_name=step->GetPostStepPoint()->GetProcessDefinedStep()->GetProcessName(); 79 << 86 80 // only ionizations in the target will be re << 87 81 if (step->GetPreStepPoint()->GetPhysicalVolu << 88 // only ionizations in the target will be recorded 82 if (process_name == "e-_G4DNAElastic") << 89 if(step->GetPreStepPoint()->GetPhysicalVolume()->GetName()=="Target") 83 flagProcess = 1; << 90 { 84 else if (process_name == "e-_G4DNAExcitati << 91 if (process_name=="e-_G4DNAElastic") 85 flagProcess = 2; << 92 flagProcess=1; 86 else if (process_name == "e-_G4DNAIonisati << 93 else if(process_name=="e-_G4DNAExcitation") 87 flagProcess = 3; << 94 flagProcess=2; 88 << 95 else if(process_name=="e-_G4DNAIonisation") 89 // Energy deposited and position of the in << 96 flagProcess=3; 90 dE = step->GetTotalEnergyDeposit() / eV; << 97 91 << 98 // Energy deposited and position of the interaction are saved 92 if (dE != 0) { << 99 dE= step->GetTotalEnergyDeposit()/eV; 93 x = step->GetPostStepPoint()->GetPositio << 100 94 y = step->GetPostStepPoint()->GetPositio << 101 if (dE!=0) 95 z = step->GetPostStepPoint()->GetPositio << 102 { 96 << 103 x=step->GetPostStepPoint()->GetPosition().x()/nanometer; 97 // get analysis manager << 104 y=step->GetPostStepPoint()->GetPosition().y()/nanometer; 98 G4AnalysisManager* analysisManager = G4A << 105 z=step->GetPostStepPoint()->GetPosition().z()/nanometer; 99 << 106 100 // fill ntuple << 107 // get analysis manager 101 analysisManager->FillNtupleDColumn(2, 0, << 108 G4AnalysisManager* analysisManager = G4AnalysisManager::Instance(); 102 analysisManager->FillNtupleDColumn(2, 1, << 109 103 analysisManager->FillNtupleDColumn(2, 2, << 110 // fill ntuple 104 analysisManager->FillNtupleDColumn(2, 3, << 111 analysisManager->FillNtupleDColumn(2,0, eventID); 105 analysisManager->FillNtupleDColumn(2, 4, << 112 analysisManager->FillNtupleDColumn(2,1, flagProcess); 106 analysisManager->FillNtupleDColumn(2, 5, << 113 analysisManager->FillNtupleDColumn(2,2, x); 107 analysisManager->AddNtupleRow(2); << 114 analysisManager->FillNtupleDColumn(2,3, y); 108 << 115 analysisManager->FillNtupleDColumn(2,4, z); 109 // histogram << 116 analysisManager->FillNtupleDColumn(2,5, dE); 110 if (flagProcess == 3) fpEventaction->Add << 117 analysisManager->AddNtupleRow(2); >> 118 >> 119 // histogram >> 120 if (flagProcess==3) >> 121 fpEventaction-> AddEventIn(1); >> 122 } 111 } 123 } 112 } << 124 } 113 } << 114 125