Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer << 3 // * DISCLAIMER * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th << 5 // * The following disclaimer summarizes all the specific disclaimers * 6 // * the Geant4 Collaboration. It is provided << 6 // * of contributors to this software. The specific disclaimers,which * 7 // * conditions of the Geant4 Software License << 7 // * govern, are listed with their locations in: * 8 // * LICENSE and available at http://cern.ch/ << 8 // * http://cern.ch/geant4/license * 9 // * include a list of copyright holders. << 10 // * 9 // * * 11 // * Neither the authors of this software syst 10 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 11 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 12 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 13 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file << 14 // * use. * 16 // * for the full disclaimer and the limitatio << 17 // * 15 // * * 18 // * This code implementation is the result << 16 // * This code implementation is the intellectual property of the * 19 // * technical work of the GEANT4 collaboratio << 17 // * GEANT4 collaboration. * 20 // * By using, copying, modifying or distri << 18 // * By copying, distributing or modifying the Program (or any work * 21 // * any work based on the software) you ag << 19 // * based on the Program) you indicate your acceptance of this * 22 // * use in resulting scientific publicati << 20 // * statement, and all its terms. * 23 // * acceptance of all terms of the Geant4 Sof << 24 // ******************************************* 21 // ******************************************************************** 25 // 22 // 26 /// \file electromagnetic/TestEm5/src/Stacking << 23 // $Id: StackingAction.cc,v 1.4 2004/12/02 16:19:11 vnivanch Exp $ 27 /// \brief Implementation of the StackingActio << 24 // GEANT4 tag $Name: geant4-07-00-patch-01 $ 28 // << 29 // 25 // 30 //....oooOO0OOooo........oooOO0OOooo........oo 26 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 31 //....oooOO0OOooo........oooOO0OOooo........oo 27 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 32 28 33 #include "StackingAction.hh" 29 #include "StackingAction.hh" 34 30 >> 31 #include "RunAction.hh" 35 #include "EventAction.hh" 32 #include "EventAction.hh" 36 #include "HistoManager.hh" 33 #include "HistoManager.hh" 37 #include "Run.hh" << 38 #include "StackingMessenger.hh" 34 #include "StackingMessenger.hh" 39 35 40 #include "G4EmSecondaryParticleType.hh" << 41 #include "G4RunManager.hh" << 42 #include "G4Track.hh" 36 #include "G4Track.hh" 43 37 44 //....oooOO0OOooo........oooOO0OOooo........oo 38 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 45 39 46 StackingAction::StackingAction(EventAction* ev << 40 StackingAction::StackingAction(RunAction* RA, EventAction* EA, HistoManager* HM) >> 41 :runaction(RA), eventaction(EA), histoManager(HM) 47 { 42 { 48 fStackMessenger = new StackingMessenger(this << 43 killSecondary = false; >> 44 stackMessenger = new StackingMessenger(this); 49 } 45 } 50 46 51 //....oooOO0OOooo........oooOO0OOooo........oo 47 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 52 48 53 StackingAction::~StackingAction() 49 StackingAction::~StackingAction() 54 { 50 { 55 delete fStackMessenger; << 51 delete stackMessenger; 56 } 52 } 57 53 58 //....oooOO0OOooo........oooOO0OOooo........oo 54 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 59 55 60 G4ClassificationOfNewTrack StackingAction::Cla << 56 G4ClassificationOfNewTrack >> 57 StackingAction::ClassifyNewTrack(const G4Track* aTrack) 61 { 58 { 62 G4AnalysisManager* analysisManager = G4Analy << 59 //keep primary particle >> 60 if (aTrack->GetParentID() == 0) return fUrgent; >> 61 >> 62 //count secondary particles >> 63 runaction->CountParticles(aTrack->GetDefinition()); 63 64 64 // keep primary particle << 65 if (aTrack->GetParentID() == 0) { << 66 return fUrgent; << 67 } << 68 << 69 G4int procID = aTrack->GetCreatorProcess()-> << 70 G4int modelID = aTrack->GetCreatorModelID(); << 71 << 72 // count secondary particles << 73 Run* run = static_cast<Run*>(G4RunManager::G << 74 run->CountParticles(aTrack->GetDefinition()) << 75 /* << 76 G4cout << "###StackingAction: new " << 77 << aTrack->GetDefinition()->GetPartic << 78 << " E(MeV)= " << aTrack->GetKineticE << 79 << " " << aTrack->GetMomentumDirecti << 80 */ << 81 // 65 // 82 // energy spectrum of secondaries << 66 //energy spectrum of secondaries 83 // 67 // 84 G4double energy = aTrack->GetKineticEnergy() 68 G4double energy = aTrack->GetKineticEnergy(); 85 G4double charge = aTrack->GetDefinition()->G 69 G4double charge = aTrack->GetDefinition()->GetPDGCharge(); 86 70 87 if (charge != 0.) { << 71 if (charge != 0.) histoManager->FillHisto(2,energy); 88 analysisManager->FillH1(2, energy); << 89 analysisManager->FillH1(4, energy); << 90 if (procID >= 51 && procID <= 65) { << 91 analysisManager->FillH1(58, energy); << 92 analysisManager->FillH1(60, energy); << 93 } << 94 else if (_AugerElectron == modelID) { << 95 analysisManager->FillH1(50, energy); << 96 analysisManager->FillH1(52, energy); << 97 } << 98 else if (_ePIXE == modelID) { << 99 analysisManager->FillH1(54, energy); << 100 analysisManager->FillH1(56, energy); << 101 } << 102 } << 103 << 104 if (aTrack->GetDefinition() == G4Gamma::Gamm << 105 analysisManager->FillH1(3, energy); << 106 analysisManager->FillH1(5, energy); << 107 if (procID >= 51 && procID <= 65) { << 108 analysisManager->FillH1(59, energy); << 109 analysisManager->FillH1(61, energy); << 110 } << 111 else if (_Fluorescence == modelID) { << 112 analysisManager->FillH1(51, energy); << 113 analysisManager->FillH1(53, energy); << 114 } << 115 else if (_GammaPIXE == modelID) { << 116 analysisManager->FillH1(55, energy); << 117 analysisManager->FillH1(57, energy); << 118 } << 119 } << 120 72 121 // stack or delete secondaries << 73 if (aTrack->GetDefinition() == G4Gamma::Gamma()) 122 G4ClassificationOfNewTrack status = fUrgent; << 74 histoManager->FillHisto(3, std::log10(energy/MeV)); 123 if (0 < fKillSecondary) { << 124 if (fKillSecondary == 1) { << 125 fEventAction->AddEnergy(energy); << 126 } << 127 status = fKill; << 128 } << 129 75 >> 76 //stack or delete secondaries >> 77 G4ClassificationOfNewTrack status = fUrgent; >> 78 if (killSecondary) status = fKill; >> 79 130 return status; 80 return status; 131 } 81 } 132 82 133 //....oooOO0OOooo........oooOO0OOooo........oo 83 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 134 84