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 ////////////////////////////////////////////// 26 /////////////////////////////////////////////////////////////////////////////// 27 // File: CCalSeppingAction.cc 27 // File: CCalSeppingAction.cc 28 // Description: Study profiling during the ste 28 // Description: Study profiling during the steps 29 ////////////////////////////////////////////// 29 /////////////////////////////////////////////////////////////////////////////// 30 #include <iostream> 30 #include <iostream> 31 31 32 #include "CCalSteppingAction.hh" 32 #include "CCalSteppingAction.hh" 33 #include "CCalRunAction.hh" 33 #include "CCalRunAction.hh" >> 34 #include "CCalAnalysis.hh" 34 35 35 #include "G4AnalysisManager.hh" << 36 #include "G4SystemOfUnits.hh" 36 #include "G4SystemOfUnits.hh" 37 #include "G4SDManager.hh" 37 #include "G4SDManager.hh" 38 #include "G4StepPoint.hh" 38 #include "G4StepPoint.hh" 39 #include "G4ThreeVector.hh" 39 #include "G4ThreeVector.hh" 40 #include "G4RunManager.hh" 40 #include "G4RunManager.hh" 41 41 >> 42 #include "CCalAnalysis.hh" >> 43 42 CCalSteppingAction::CCalSteppingAction() 44 CCalSteppingAction::CCalSteppingAction() 43 { 45 { 44 timeHistoMaxBin = 200; 46 timeHistoMaxBin = 200; 45 for (G4int i=0; i<200; i++) {timeDeposit[i] 47 for (G4int i=0; i<200; i++) {timeDeposit[i] = 0.f;} 46 for (G4int i=0; i<70; i++) {LateralProfile[ 48 for (G4int i=0; i<70; i++) {LateralProfile[i] = 0.f;} 47 } 49 } 48 50 49 CCalSteppingAction::~CCalSteppingAction(){ 51 CCalSteppingAction::~CCalSteppingAction(){ 50 } 52 } 51 53 52 void CCalSteppingAction::UserSteppingAction(co 54 void CCalSteppingAction::UserSteppingAction(const G4Step* aStep) 53 { 55 { 54 G4double de = aStep->GetTotalEnergyDeposit() 56 G4double de = aStep->GetTotalEnergyDeposit(); 55 if(de < CLHEP::eV) { return; } 57 if(de < CLHEP::eV) { return; } 56 58 57 const G4StepPoint* PostStepPoint= aStep->Ge 59 const G4StepPoint* PostStepPoint= aStep->GetPostStepPoint(); 58 const G4StepPoint* PreStepPoint= aStep->Get 60 const G4StepPoint* PreStepPoint= aStep->GetPreStepPoint(); 59 G4double time = 61 G4double time = 60 (PostStepPoint) ? PostStepPoint->GetGlobal 62 (PostStepPoint) ? PostStepPoint->GetGlobalTime()/nanosecond : 0.; 61 63 62 G4int it = (G4int)time; 64 G4int it = (G4int)time; 63 it = std::min(it, 10000); 65 it = std::min(it, 10000); 64 //G4cout << "## time= " << time << " it= " < 66 //G4cout << "## time= " << time << " it= " << it << G4endl; 65 G4int TSliceID = std::max(0,std::min(it,time 67 G4int TSliceID = std::max(0,std::min(it,timeHistoMaxBin-1)); 66 68 67 G4float fde = (G4float)(de/CLHEP::GeV); 69 G4float fde = (G4float)(de/CLHEP::GeV); 68 //G4cout << " TSliceID= " << TSliceID << " 70 //G4cout << " TSliceID= " << TSliceID << " de= " << fde << G4endl; 69 71 70 timeDeposit[TSliceID] += fde; 72 timeDeposit[TSliceID] += fde; 71 73 72 G4ThreeVector HitPoint = 0.5*(PostStepPoint- 74 G4ThreeVector HitPoint = 0.5*(PostStepPoint->GetPosition()+ 73 PreStepPoint-> << 75 PreStepPoint->GetPosition()); 74 // Because the beam axis has been defined as 76 // Because the beam axis has been defined as the x-axis, 75 // the lateral displacement is given in term 77 // the lateral displacement is given in terms of the y and z positions. 76 G4double perp = 78 G4double perp = 77 std::sqrt(HitPoint.y()*HitPoint.y()+HitPoi 79 std::sqrt(HitPoint.y()*HitPoint.y()+HitPoint.z()*HitPoint.z())/cm; 78 G4int ir = (G4int)perp; 80 G4int ir = (G4int)perp; 79 //G4cout << " perp= " << perp << " ir= " << 81 //G4cout << " perp= " << perp << " ir= " << ir << G4endl; 80 G4int radialPosition = std::max(0,std::min(6 82 G4int radialPosition = std::max(0,std::min(69,ir)); 81 LateralProfile[radialPosition] += fde; 83 LateralProfile[radialPosition] += fde; 82 //G4cout << " done " << G4endl; 84 //G4cout << " done " << G4endl; 83 } 85 } 84 86 85 void CCalSteppingAction::endOfEvent(){ 87 void CCalSteppingAction::endOfEvent(){ 86 88 87 G4AnalysisManager* man = G4AnalysisManager:: 89 G4AnalysisManager* man = G4AnalysisManager::Instance(); 88 #ifdef debug << 89 G4double totalFilledProfileHcal = 0.0; 90 G4double totalFilledProfileHcal = 0.0; 90 #endif << 91 91 static G4int IDlateralProfile = -1; 92 static G4int IDlateralProfile = -1; 92 if (IDlateralProfile < 0) { 93 if (IDlateralProfile < 0) { 93 IDlateralProfile = man->GetH1Id("h500"); 94 IDlateralProfile = man->GetH1Id("h500"); 94 } 95 } 95 for (G4int i=0; i<70; ++i) { 96 for (G4int i=0; i<70; ++i) { 96 man->FillH1(IDlateralProfile+i,LateralProf 97 man->FillH1(IDlateralProfile+i,LateralProfile[i]); 97 #ifdef debug 98 #ifdef debug 98 G4cout << "Fill Profile Hcal histo " << i 99 G4cout << "Fill Profile Hcal histo " << i << " with " << LateralProfile[i] << G4endl; 99 totalFilledProfileHcal += LateralProfile[i << 100 #endif 100 #endif >> 101 totalFilledProfileHcal += LateralProfile[i]; 101 } 102 } 102 103 103 #ifdef debug 104 #ifdef debug 104 G4cout << "CCalAnalysis::InsertLateralProfil 105 G4cout << "CCalAnalysis::InsertLateralProfile: Total filled Profile Hcal" 105 << " histo " << totalFilledProfileHca << 106 << " histo " << totalFilledProfileHcal << G4endl; 106 #endif 107 #endif 107 108 108 static G4int IDTimeHist = -1; 109 static G4int IDTimeHist = -1; 109 if (IDTimeHist < 0) { 110 if (IDTimeHist < 0) { 110 IDTimeHist = man->GetH1Id("h300"); 111 IDTimeHist = man->GetH1Id("h300"); 111 } 112 } 112 static G4int IDTimeProfile = -1; 113 static G4int IDTimeProfile = -1; 113 if (IDTimeProfile < 0) { 114 if (IDTimeProfile < 0) { 114 IDTimeProfile = man->GetH1Id("h901"); 115 IDTimeProfile = man->GetH1Id("h901"); 115 } 116 } 116 #ifdef debug << 117 G4double totalFilledTimeProfile = 0.0; 117 G4double totalFilledTimeProfile = 0.0; 118 #endif << 119 for (G4int j=0; j<timeHistoMaxBin; ++j) { 118 for (G4int j=0; j<timeHistoMaxBin; ++j) { 120 man->FillH1(IDTimeHist+j,timeDeposit[j]); 119 man->FillH1(IDTimeHist+j,timeDeposit[j]); 121 #ifdef debug 120 #ifdef debug 122 G4cout << "Fill Time slice histo " << j << 121 G4cout << "Fill Time slice histo " << j << " with " << timeDeposit[j] << G4endl; 123 totalFilledTimeProfile += timeDeposit[j]; << 124 #endif 122 #endif >> 123 totalFilledTimeProfile += timeDeposit[j]; 125 124 126 G4double t = j + 0.5; 125 G4double t = j + 0.5; 127 man->FillH1(IDTimeProfile+1,t,timeDeposit[ 126 man->FillH1(IDTimeProfile+1,t,timeDeposit[j]); 128 #ifdef debug 127 #ifdef debug 129 G4cout << "Fill Time profile histo 1 wit << 128 G4cout << "Fill Time profile histo 1 with " << t << " " << x << G4endl; 130 #endif 129 #endif 131 } 130 } 132 #ifdef debug 131 #ifdef debug 133 G4cout << "CCalAnalysis::InsertTime: Total f 132 G4cout << "CCalAnalysis::InsertTime: Total filled Time profile histo " 134 << totalFilledTimeProfile << G4endl; << 133 << totalFilledTimeProfile << G4endl; 135 #endif 134 #endif 136 135 137 for (G4int i=0; i<70; i++){LateralProfile[i] 136 for (G4int i=0; i<70; i++){LateralProfile[i] = 0.f;} 138 for (G4int i=0; i<200; i++){timeDeposit[i] = 137 for (G4int i=0; i<200; i++){timeDeposit[i] = 0.f;} 139 138 140 G4cout << " --- End of event --- " << G4endl 139 G4cout << " --- End of event --- " << G4endl; 141 140 142 } 141 } 143 142