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