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 /// \file electromagnetic/TestEm5/src/Stacking 26 /// \file electromagnetic/TestEm5/src/StackingAction.cc 27 /// \brief Implementation of the StackingActio 27 /// \brief Implementation of the StackingAction class 28 // 28 // 29 // 29 // 30 //....oooOO0OOooo........oooOO0OOooo........oo 30 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 31 //....oooOO0OOooo........oooOO0OOooo........oo 31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 32 32 33 #include "StackingAction.hh" 33 #include "StackingAction.hh" 34 34 >> 35 #include "Run.hh" 35 #include "EventAction.hh" 36 #include "EventAction.hh" 36 #include "HistoManager.hh" 37 #include "HistoManager.hh" 37 #include "Run.hh" << 38 #include "StackingMessenger.hh" 38 #include "StackingMessenger.hh" 39 39 40 #include "G4EmSecondaryParticleType.hh" << 41 #include "G4RunManager.hh" 40 #include "G4RunManager.hh" 42 #include "G4Track.hh" 41 #include "G4Track.hh" 43 42 >> 43 #include "G4SystemOfUnits.hh" >> 44 44 //....oooOO0OOooo........oooOO0OOooo........oo 45 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 45 46 46 StackingAction::StackingAction(EventAction* ev << 47 StackingAction::StackingAction(EventAction* EA) >> 48 : G4UserStackingAction(), fEventAction(EA), >> 49 fKillSecondary(0),fStackMessenger(0),fPhotoGamma(-1),fComptGamma(-1), >> 50 fPhotoAuger(-1),fComptAuger(-1),fPixeGamma(-1),fPixeAuger(-1), >> 51 fElectronDNAGamma(-1),fElectronDNAAuger(-1),fProtonDNAGamma(-1), >> 52 fProtonDNAAuger(-1),fHydrogenDNAGamma(-1),fHydrogenDNAAuger(-1), >> 53 fAlphaDNAGamma(-1),fAlphaDNAAuger(-1),fAlphaPlusDNAGamma(-1), >> 54 fAlphaPlusDNAAuger(-1),fHeliumDNAGamma(-1),fHeliumDNAAuger(-1), >> 55 fGenericIonDNAGamma(-1),fGenericIonDNAAuger(-1),fIDdefined(false) 47 { 56 { 48 fStackMessenger = new StackingMessenger(this 57 fStackMessenger = new StackingMessenger(this); 49 } 58 } 50 59 51 //....oooOO0OOooo........oooOO0OOooo........oo 60 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 52 61 53 StackingAction::~StackingAction() 62 StackingAction::~StackingAction() 54 { 63 { 55 delete fStackMessenger; 64 delete fStackMessenger; 56 } 65 } 57 66 58 //....oooOO0OOooo........oooOO0OOooo........oo 67 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 59 68 60 G4ClassificationOfNewTrack StackingAction::Cla << 69 G4ClassificationOfNewTrack >> 70 StackingAction::ClassifyNewTrack(const G4Track* aTrack) 61 { 71 { 62 G4AnalysisManager* analysisManager = G4Analy 72 G4AnalysisManager* analysisManager = G4AnalysisManager::Instance(); 63 73 64 // keep primary particle << 74 //keep primary particle 65 if (aTrack->GetParentID() == 0) { << 75 if (aTrack->GetParentID() == 0) { return fUrgent; } 66 return fUrgent; << 67 } << 68 76 69 G4int procID = aTrack->GetCreatorProcess()-> << 77 if(!fIDdefined) { 70 G4int modelID = aTrack->GetCreatorModelID(); << 78 fIDdefined = true; >> 79 fPhotoGamma = G4PhysicsModelCatalog::GetIndex("phot_fluo"); >> 80 fComptGamma = G4PhysicsModelCatalog::GetIndex("compt_fluo"); >> 81 fPhotoAuger = G4PhysicsModelCatalog::GetIndex("phot_auger"); >> 82 fComptAuger = G4PhysicsModelCatalog::GetIndex("compt_auger"); >> 83 fPixeGamma = G4PhysicsModelCatalog::GetIndex("gammaPIXE"); >> 84 fPixeAuger = G4PhysicsModelCatalog::GetIndex("e-PIXE"); >> 85 fElectronDNAGamma = >> 86 G4PhysicsModelCatalog::GetIndex("e-_G4DNAIonisation_fluo"); >> 87 fElectronDNAAuger = >> 88 G4PhysicsModelCatalog::GetIndex("e-_G4DNAIonisation_auger"); >> 89 fProtonDNAGamma = >> 90 G4PhysicsModelCatalog::GetIndex("proton_G4DNAIonisation_fluo"); >> 91 fProtonDNAAuger = >> 92 G4PhysicsModelCatalog::GetIndex("proton_G4DNAIonisation_auger"); >> 93 fHydrogenDNAGamma = >> 94 G4PhysicsModelCatalog::GetIndex("hydrogen_G4DNAIonisation_fluo"); >> 95 fHydrogenDNAAuger = >> 96 G4PhysicsModelCatalog::GetIndex("hydrogen_G4DNAIonisation_auger"); >> 97 fAlphaDNAGamma = >> 98 G4PhysicsModelCatalog::GetIndex("alpha_G4DNAIonisation_fluo"); >> 99 fAlphaDNAAuger = >> 100 G4PhysicsModelCatalog::GetIndex("alpha_G4DNAIonisation_auger"); >> 101 fAlphaPlusDNAGamma = >> 102 G4PhysicsModelCatalog::GetIndex("alpha+_G4DNAIonisation_fluo"); >> 103 fAlphaPlusDNAAuger = >> 104 G4PhysicsModelCatalog::GetIndex("alpha+_G4DNAIonisation_auger"); >> 105 fHeliumDNAGamma = >> 106 G4PhysicsModelCatalog::GetIndex("helium_G4DNAIonisation_fluo"); >> 107 fHeliumDNAAuger = >> 108 G4PhysicsModelCatalog::GetIndex("helium_G4DNAIonisation_auger"); >> 109 fGenericIonDNAGamma = >> 110 G4PhysicsModelCatalog::GetIndex("GenericIon_G4DNAIonisation_fluo"); >> 111 fGenericIonDNAAuger = >> 112 G4PhysicsModelCatalog::GetIndex("GenericIon_G4DNAIonisation_auger"); >> 113 } >> 114 G4int idx = aTrack->GetCreatorModelID(); 71 115 72 // count secondary particles << 116 //count secondary particles 73 Run* run = static_cast<Run*>(G4RunManager::G << 117 >> 118 Run* run = static_cast<Run*>( >> 119 G4RunManager::GetRunManager()->GetNonConstCurrentRun()); 74 run->CountParticles(aTrack->GetDefinition()) 120 run->CountParticles(aTrack->GetDefinition()); 75 /* 121 /* 76 G4cout << "###StackingAction: new " << 122 G4cout << "###StackingAction: new " 77 << aTrack->GetDefinition()->GetPartic 123 << aTrack->GetDefinition()->GetParticleName() 78 << " E(MeV)= " << aTrack->GetKineticE 124 << " E(MeV)= " << aTrack->GetKineticEnergy() 79 << " " << aTrack->GetMomentumDirecti 125 << " " << aTrack->GetMomentumDirection() << G4endl; 80 */ 126 */ 81 // 127 // 82 // energy spectrum of secondaries << 128 //energy spectrum of secondaries 83 // 129 // 84 G4double energy = aTrack->GetKineticEnergy() 130 G4double energy = aTrack->GetKineticEnergy(); >> 131 G4double loge = (energy > 0.) ? std::log10(energy/CLHEP::MeV) : -100.; 85 G4double charge = aTrack->GetDefinition()->G 132 G4double charge = aTrack->GetDefinition()->GetPDGCharge(); 86 133 87 if (charge != 0.) { 134 if (charge != 0.) { 88 analysisManager->FillH1(2, energy); << 135 analysisManager->FillH1(2,energy); 89 analysisManager->FillH1(4, energy); << 136 analysisManager->FillH1(4,loge); 90 if (procID >= 51 && procID <= 65) { << 137 if(idx == fPhotoAuger || idx == fComptAuger) { 91 analysisManager->FillH1(58, energy); << 138 analysisManager->FillH1(50,energy); 92 analysisManager->FillH1(60, energy); << 139 analysisManager->FillH1(52,loge); 93 } << 140 } else if(idx == fPixeAuger) { 94 else if (_AugerElectron == modelID) { << 141 analysisManager->FillH1(54,energy); 95 analysisManager->FillH1(50, energy); << 142 analysisManager->FillH1(56,loge); 96 analysisManager->FillH1(52, energy); << 143 } else if(idx == fElectronDNAAuger || 97 } << 144 idx == fProtonDNAAuger || 98 else if (_ePIXE == modelID) { << 145 idx == fHydrogenDNAAuger || 99 analysisManager->FillH1(54, energy); << 146 idx == fAlphaDNAAuger || 100 analysisManager->FillH1(56, energy); << 147 idx == fAlphaPlusDNAAuger || >> 148 idx == fHeliumDNAAuger || >> 149 idx == fGenericIonDNAAuger) { >> 150 analysisManager->FillH1(58,energy); >> 151 analysisManager->FillH1(60,loge); 101 } 152 } 102 } 153 } 103 154 104 if (aTrack->GetDefinition() == G4Gamma::Gamm 155 if (aTrack->GetDefinition() == G4Gamma::Gamma()) { 105 analysisManager->FillH1(3, energy); << 156 analysisManager->FillH1(3,energy); 106 analysisManager->FillH1(5, energy); << 157 analysisManager->FillH1(5,loge); 107 if (procID >= 51 && procID <= 65) { << 158 if(idx == fPhotoGamma || idx == fComptGamma) { 108 analysisManager->FillH1(59, energy); << 159 analysisManager->FillH1(51,energy); 109 analysisManager->FillH1(61, energy); << 160 analysisManager->FillH1(53,loge); 110 } << 161 } else if(idx == fPixeGamma) { 111 else if (_Fluorescence == modelID) { << 162 analysisManager->FillH1(55,energy); 112 analysisManager->FillH1(51, energy); << 163 analysisManager->FillH1(57,loge); 113 analysisManager->FillH1(53, energy); << 164 } else if(idx == fElectronDNAGamma || 114 } << 165 idx == fProtonDNAGamma || 115 else if (_GammaPIXE == modelID) { << 166 idx == fHydrogenDNAGamma || 116 analysisManager->FillH1(55, energy); << 167 idx == fAlphaDNAGamma || 117 analysisManager->FillH1(57, energy); << 168 idx == fAlphaPlusDNAGamma || >> 169 idx == fHeliumDNAGamma || >> 170 idx == fGenericIonDNAGamma) { >> 171 analysisManager->FillH1(59,energy); >> 172 analysisManager->FillH1(61,loge); 118 } 173 } 119 } << 174 } 120 175 121 // stack or delete secondaries << 176 //stack or delete secondaries 122 G4ClassificationOfNewTrack status = fUrgent; 177 G4ClassificationOfNewTrack status = fUrgent; 123 if (0 < fKillSecondary) { << 178 if (fKillSecondary) { 124 if (fKillSecondary == 1) { 179 if (fKillSecondary == 1) { 125 fEventAction->AddEnergy(energy); << 180 fEventAction->AddEnergy(energy); >> 181 status = fKill; >> 182 } >> 183 if (aTrack->GetDefinition() == G4Gamma::Gamma()) { >> 184 status = fKill; 126 } 185 } 127 status = fKill; << 128 } 186 } 129 << 187 130 return status; 188 return status; 131 } 189 } 132 190 133 //....oooOO0OOooo........oooOO0OOooo........oo 191 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 134 192