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/TestEm16/src/Steppin << 26 // $Id: SteppingAction.cc,v 1.4 2006/06/29 16:48:04 gunter Exp $ 27 /// \brief Implementation of the SteppingActio << 27 // GEANT4 tag $Name: geant4-08-01-patch-01 $ 28 // << 29 // 28 // 30 //....oooOO0OOooo........oooOO0OOooo........oo 29 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 31 //....oooOO0OOooo........oooOO0OOooo........oo 30 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 32 31 33 #include "SteppingAction.hh" 32 #include "SteppingAction.hh" 34 << 33 #include "RunAction.hh" 35 #include "HistoManager.hh" << 36 #include "Run.hh" << 37 << 38 #include "G4EmProcessSubType.hh" << 39 #include "G4ParticleTypes.hh" << 40 #include "G4RunManager.hh" << 41 #include "G4SteppingManager.hh" 34 #include "G4SteppingManager.hh" 42 #include "G4SystemOfUnits.hh" << 43 #include "G4UnitsTable.hh" << 44 #include "G4VProcess.hh" 35 #include "G4VProcess.hh" >> 36 #include "G4ParticleTypes.hh" >> 37 #include "G4UnitsTable.hh" >> 38 >> 39 #ifdef G4ANALYSIS_USE >> 40 #include "AIDA/IHistogram1D.h" >> 41 #endif 45 42 46 //....oooOO0OOooo........oooOO0OOooo........oo 43 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 47 44 48 SteppingAction::SteppingAction() : G4UserStepp << 45 SteppingAction::SteppingAction(RunAction* RuAct) >> 46 :runAction(RuAct) >> 47 { } 49 48 50 //....oooOO0OOooo........oooOO0OOooo........oo 49 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 51 50 52 void SteppingAction::UserSteppingAction(const << 51 SteppingAction::~SteppingAction() 53 { << 52 { } 54 Run* run = static_cast<Run*>(G4RunManager::G << 55 53 56 const G4VProcess* process = aStep->GetPostSt << 54 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 57 if (process == nullptr) return; << 58 << 59 G4int eventID = G4RunManager::GetRunManager( << 60 G4Track* trk = aStep->GetTrack(); << 61 55 62 thread_local G4int iCalled = 0; << 56 void SteppingAction::UserSteppingAction(const G4Step* aStep) 63 const G4int nprint = 10; // set to 10 to ge << 57 { 64 G4AnalysisManager* analysisManager = G4Analy << 58 const G4VProcess* process = aStep->GetPostStepPoint()->GetProcessDefinedStep(); 65 << 59 if (process == 0) return; 66 if (fSynchrotronRadiation == process->GetPro << 60 G4String processName = process->GetProcessName(); 67 const G4StepPoint* PrePoint = aStep->GetPr << 61 static G4int iCalled=0; 68 const G4TrackVector* secondary = fpSteppin << 62 const G4int nprint=0; // set to 10 to get debug print for first 10 calls 69 size_t lp = (*secondary).size(); << 63 70 if (lp) { << 64 if (processName == "SynRad") 71 G4double Egamma = (*secondary)[lp - 1]-> << 65 { 72 run->f_n_gam_sync++; << 66 iCalled++; 73 run->f_e_gam_sync += Egamma; << 67 G4StepPoint* PrePoint = aStep->GetPreStepPoint(); 74 run->f_e_gam_sync2 += Egamma * Egamma; << 68 G4TrackVector* secondary = fpSteppingManager->GetSecondary(); 75 if (Egamma > run->f_e_gam_sync_max) run- << 69 76 run->f_lam_gam_sync += aStep->GetStepLen << 70 //(*secondary)[lp-1] points to the last photon generated 77 if (iCalled < nprint) { << 71 // 78 G4double Eelec = PrePoint->GetTotalEne << 72 size_t lp=(*secondary).size(); 79 G4ThreeVector Pelec = PrePoint->GetMom << 73 if (lp) 80 G4ThreeVector PGamma = (*secondary)[lp << 74 { 81 G4bool IsGamma = ((*secondary)[lp - 1] << 75 G4double Egamma = (*secondary)[lp-1]->GetTotalEnergy(); 82 const G4int wid = 8; << 76 runAction->n_gam_sync++; 83 if (analysisManager->GetVerboseLevel() << 77 runAction->e_gam_sync += Egamma; 84 G4cout << __FILE__ << " line " << __ << 78 runAction->e_gam_sync2 += Egamma*Egamma; 85 << " processName=" << process << 79 if (Egamma > runAction->e_gam_sync_max) runAction->e_gam_sync_max = Egamma; 86 << " Step Length=" << std::se << 80 runAction->lam_gam_sync += aStep->GetStepLength(); 87 << G4BestUnit(aStep->GetStepL << 81 if (iCalled<nprint) 88 << G4BestUnit(Eelec, "Energy" << 82 { 89 << " IsGamma=" << IsGamma << << 83 G4double Eelec = PrePoint->GetTotalEnergy(); 90 << G4BestUnit(Egamma, "Energy << 84 G4ThreeVector Pelec = PrePoint->GetMomentum(); 91 << G4BestUnit(PGamma, "Energy << 85 G4ThreeVector PGamma = (*secondary)[lp-1]->GetMomentum(); >> 86 G4bool IsGamma = >> 87 ((*secondary)[lp-1]->GetDefinition() == G4Gamma::GammaDefinition()); >> 88 >> 89 G4cout << "UserSteppingAction processName=" << process->GetProcessName() >> 90 << " Step Length=" << std::setw(6) >> 91 << G4BestUnit(aStep->GetStepLength(),"Length") >> 92 << " Eelec=" << G4BestUnit(Eelec,"Energy") >> 93 << " Pelec=" << G4BestUnit(Pelec,"Energy") >> 94 << " IsGamma=" << IsGamma >> 95 << " Egamma=" << G4BestUnit(Egamma,"Energy") >> 96 << " PGamma=" << G4BestUnit(PGamma,"Energy") >> 97 << " #secondaries lp=" << lp >> 98 << '\n'; 92 } 99 } 93 analysisManager->FillH1(1, Egamma); << 94 analysisManager->FillH1(2, Egamma, << 95 Egamma / keV); << 96 analysisManager->FillH1(3, aStep->GetSte << 97 } << 98 } << 99 << 100 thread_local G4ThreeVector IncomingPhotonDir << 101 if (fGammaReflection == process->GetProcessS << 102 const G4TrackVector* secondary = fpSteppin << 103 size_t lp = (*secondary).size(); << 104 if (lp) { << 105 G4double Egamma = (*secondary)[lp - 1]-> << 106 ++run->f_n_Xray_Refl; << 107 analysisManager->FillH1(1, Egamma, 1. / << 108 if (analysisManager->GetVerboseLevel() > << 109 G4cout << __FILE__ << " line " << __LI << 110 << " iCalled=" << std::setw(3) << 111 << " f_n_Xray_Refl=" << run->f_ << 112 << " ProcessName=" << process-> << 113 << " direction=" << trk->GetMom << 114 << " keV" << G4endl; << 115 IncomingPhotonDirection = trk->GetMoment << 116 } << 117 } << 118 << 119 const G4VProcess* creator = trk->GetCreatorP << 120 G4int CreatorProcessSubType = 0; << 121 if (creator != nullptr) CreatorProcessSubTyp << 122 if (CreatorProcessSubType == fGammaReflectio << 123 if (IncomingPhotonDirection != G4ThreeVect << 124 G4double cos_angle = << 125 IncomingPhotonDirection * trk->GetMome << 126 G4double IncidentAngle = std::acos(cos_a << 127 analysisManager->FillH1(4, IncidentAngle << 128 if (analysisManager->GetVerboseLevel() > << 129 G4cout << __FILE__ << " line " << __LI << 130 << " iCalled=" << std::setw(3) << 131 << " CreatorProcname=" << creat << 132 << " ProcessName=" << process-> << 133 << " IncomingPhotonDirection=" << 134 << " outgoing PhotonDirection= << 135 << " IncidentAngle=" << Inciden << 136 << " NumberOfEventToBeProcessed << 137 << " RunID=" << run->GetRunID() << 138 } << 139 } << 140 100 141 ++iCalled; << 101 #ifdef G4ANALYSIS_USE >> 102 // fill histos >> 103 if( runAction->GetHisto(0) ) // check the histos exist >> 104 { >> 105 runAction->GetHisto(0)->fill(Egamma/keV); >> 106 runAction->GetHisto(1)->fill(Egamma/keV,Egamma/keV); >> 107 runAction->GetHisto(2)->fill(aStep->GetStepLength()/m); >> 108 } >> 109 #endif >> 110 } >> 111 } >> 112 142 } 113 } 143 114 144 //....oooOO0OOooo........oooOO0OOooo........oo 115 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 145 116