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 runAndEvent/RE01/src/RE01StackingAct 26 /// \file runAndEvent/RE01/src/RE01StackingAction.cc 27 /// \brief Implementation of the RE01StackingA 27 /// \brief Implementation of the RE01StackingAction class 28 // 28 // 29 // 29 // 30 30 31 #include "RE01StackingAction.hh" 31 #include "RE01StackingAction.hh" 32 << 33 #include "RE01CalorimeterHit.hh" << 34 #include "RE01TrackInformation.hh" 32 #include "RE01TrackInformation.hh" >> 33 #include "RE01CalorimeterHit.hh" 35 34 >> 35 #include "G4SDManager.hh" >> 36 #include "G4RunManager.hh" 36 #include "G4Event.hh" 37 #include "G4Event.hh" 37 #include "G4HCofThisEvent.hh" 38 #include "G4HCofThisEvent.hh" 38 #include "G4ParticleDefinition.hh" << 39 #include "G4ParticleTypes.hh" << 40 #include "G4RunManager.hh" << 41 #include "G4SDManager.hh" << 42 #include "G4SystemOfUnits.hh" << 43 #include "G4Track.hh" 39 #include "G4Track.hh" 44 #include "G4TrackStatus.hh" 40 #include "G4TrackStatus.hh" >> 41 #include "G4ParticleDefinition.hh" >> 42 #include "G4ParticleTypes.hh" >> 43 #include "G4SystemOfUnits.hh" 45 #include "G4ios.hh" 44 #include "G4ios.hh" 46 45 47 //....oooOO0OOooo........oooOO0OOooo........oo << 46 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 48 RE01StackingAction::RE01StackingAction() 47 RE01StackingAction::RE01StackingAction() 49 : G4UserStackingAction(), fStage(0), fCalori << 48 :G4UserStackingAction(), 50 { << 49 fStage(0),fCalorimeterHitsColID(-1) 51 ; << 50 {;} 52 } << 53 51 54 //....oooOO0OOooo........oooOO0OOooo........oo << 52 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 55 RE01StackingAction::~RE01StackingAction() 53 RE01StackingAction::~RE01StackingAction() 56 { << 54 {;} 57 ; << 58 } << 59 55 60 //....oooOO0OOooo........oooOO0OOooo........oo << 56 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 61 G4ClassificationOfNewTrack RE01StackingAction << 57 G4ClassificationOfNewTrack RE01StackingAction >> 58 ::ClassifyNewTrack(const G4Track * aTrack) 62 { 59 { 63 G4ClassificationOfNewTrack classification = 60 G4ClassificationOfNewTrack classification = fUrgent; 64 61 65 if (fStage == 0) { << 62 if(fStage==0) >> 63 { 66 RE01TrackInformation* trackInfo; 64 RE01TrackInformation* trackInfo; 67 if (aTrack->GetTrackStatus() == fSuspend) << 65 if(aTrack->GetTrackStatus()==fSuspend) // Track reached to calorimeter 68 { 66 { 69 trackInfo = (RE01TrackInformation*)(aTra 67 trackInfo = (RE01TrackInformation*)(aTrack->GetUserInformation()); 70 trackInfo->SetTrackingStatus(0); 68 trackInfo->SetTrackingStatus(0); 71 trackInfo->SetSourceTrackInformation(aTr 69 trackInfo->SetSourceTrackInformation(aTrack); 72 // G4cout << "Track " << aTrack->Ge << 70 // G4cout << "Track " << aTrack->GetTrackID() 73 // << " (parentID " << aTrac << 71 // << " (parentID " << aTrack->GetParentID() 74 // << ") has reached to calo << 72 // << ") has reached to calorimeter and has been suspended at " 75 // << aTrack->GetPosition() << 73 // << aTrack->GetPosition() << G4endl; 76 classification = fWaiting; 74 classification = fWaiting; 77 } 75 } 78 else if (aTrack->GetParentID() == 0) // P << 76 else if(aTrack->GetParentID()==0) // Primary particle 79 { 77 { 80 trackInfo = new RE01TrackInformation(aTr 78 trackInfo = new RE01TrackInformation(aTrack); 81 trackInfo->SetTrackingStatus(1); 79 trackInfo->SetTrackingStatus(1); 82 G4Track* theTrack = (G4Track*)aTrack; 80 G4Track* theTrack = (G4Track*)aTrack; 83 theTrack->SetUserInformation(trackInfo); 81 theTrack->SetUserInformation(trackInfo); 84 } 82 } 85 } 83 } 86 return classification; 84 return classification; 87 } 85 } 88 86 89 //....oooOO0OOooo........oooOO0OOooo........oo << 87 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 90 G4VHitsCollection* RE01StackingAction::GetCalC 88 G4VHitsCollection* RE01StackingAction::GetCalCollection() 91 { 89 { 92 G4SDManager* SDMan = G4SDManager::GetSDMpoin 90 G4SDManager* SDMan = G4SDManager::GetSDMpointer(); 93 G4RunManager* runMan = G4RunManager::GetRunM 91 G4RunManager* runMan = G4RunManager::GetRunManager(); 94 if (fCalorimeterHitsColID < 0) { << 92 if(fCalorimeterHitsColID<0) 95 fCalorimeterHitsColID = SDMan->GetCollecti << 93 { fCalorimeterHitsColID = SDMan->GetCollectionID("calCollection"); } 96 } << 94 if(fCalorimeterHitsColID>=0) 97 if (fCalorimeterHitsColID >= 0) { << 95 { 98 const G4Event* currentEvent = runMan->GetC 96 const G4Event* currentEvent = runMan->GetCurrentEvent(); 99 G4HCofThisEvent* HCE = currentEvent->GetHC 97 G4HCofThisEvent* HCE = currentEvent->GetHCofThisEvent(); 100 return HCE->GetHC(fCalorimeterHitsColID); 98 return HCE->GetHC(fCalorimeterHitsColID); 101 } 99 } 102 return 0; 100 return 0; 103 } 101 } 104 102 105 //....oooOO0OOooo........oooOO0OOooo........oo << 103 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 106 void RE01StackingAction::NewStage() 104 void RE01StackingAction::NewStage() 107 { 105 { 108 // G4cout << "+++++++++++ Stage " << fStage 106 // G4cout << "+++++++++++ Stage " << fStage << G4endl; 109 if (fStage == 0) { << 107 if(fStage==0) >> 108 { 110 // display trajetory information in the tr 109 // display trajetory information in the tracking region 111 G4cout << G4endl; 110 G4cout << G4endl; 112 G4cout << "Tracks in tracking region have << 111 G4cout << "Tracks in tracking region have been processed. -- Stage 0 over." >> 112 << G4endl; 113 G4cout << G4endl; 113 G4cout << G4endl; 114 } 114 } 115 else { << 115 else 116 // display calorimeter information caused << 116 { >> 117 // display calorimeter information caused by a "source" track 117 // in the tracker region 118 // in the tracker region 118 // G4cout << G4endl; 119 // G4cout << G4endl; 119 // G4cout << "Processing one shower ori 120 // G4cout << "Processing one shower originated by a source track " 120 // << "in tracker region is over 121 // << "in tracker region is over." << G4endl; 121 // G4cout << G4endl; 122 // G4cout << G4endl; 122 RE01CalorimeterHitsCollection* CHC = (RE01 << 123 RE01CalorimeterHitsCollection* CHC = 123 if (CHC) { << 124 (RE01CalorimeterHitsCollection*)GetCalCollection(); >> 125 if(CHC) >> 126 { 124 int n_hit = CHC->entries(); 127 int n_hit = CHC->entries(); 125 G4double totE = 0; 128 G4double totE = 0; 126 G4int n_hitByATrack = 0; 129 G4int n_hitByATrack = 0; 127 for (int i = 0; i < n_hit; i++) { << 130 for(int i=0;i<n_hit;i++) >> 131 { 128 G4double edepByATrack = (*CHC)[i]->Get 132 G4double edepByATrack = (*CHC)[i]->GetEdepByATrack(); 129 if (edepByATrack > 0.) { << 133 if(edepByATrack>0.) >> 134 { 130 totE += edepByATrack; 135 totE += edepByATrack; 131 if (n_hitByATrack == 0) { << 136 if(n_hitByATrack==0) 132 (*CHC)[i]->GetTrackInformation()-> << 137 { (*CHC)[i]->GetTrackInformation()->Print(); } 133 } << 134 n_hitByATrack++; 138 n_hitByATrack++; 135 G4cout << "Cell[" << (*CHC)[i]->GetZ << 139 G4cout << "Cell[" << (*CHC)[i]->GetZ() << "," 136 << edepByATrack / GeV << " [G << 140 << (*CHC)[i]->GetPhi() << "] " >> 141 << edepByATrack/GeV << " [GeV]" << G4endl; 137 (*CHC)[i]->ClearEdepByATrack(); 142 (*CHC)[i]->ClearEdepByATrack(); 138 } 143 } 139 } 144 } 140 if (n_hitByATrack > 0) { << 145 if(n_hitByATrack>0) 141 G4cout << "### Total energy depositio << 146 { 142 << n_hitByATrack << " cells : " << 147 G4cout << >> 148 "### Total energy deposition in calorimeter by a source track in " >> 149 << n_hitByATrack << " cells : " << totE / GeV << " (GeV)" >> 150 << G4endl; 143 G4cout << G4endl; 151 G4cout << G4endl; 144 } 152 } 145 } 153 } 146 } 154 } 147 155 148 if (stackManager->GetNUrgentTrack()) { << 156 if(stackManager->GetNUrgentTrack()) >> 157 { 149 // Transfer all tracks in Urgent stack to 158 // Transfer all tracks in Urgent stack to Waiting stack, since all tracks 150 // in Waiting stack have already been tran 159 // in Waiting stack have already been transfered to Urgent stack before 151 // invokation of this method. 160 // invokation of this method. 152 stackManager->TransferStackedTracks(fUrgen << 161 stackManager->TransferStackedTracks(fUrgent,fWaiting); 153 162 154 // Then, transfer only one track to Urgent 163 // Then, transfer only one track to Urgent stack. 155 stackManager->TransferOneStackedTrack(fWai << 164 stackManager->TransferOneStackedTrack(fWaiting,fUrgent); 156 165 157 fStage++; 166 fStage++; 158 } 167 } 159 } 168 } 160 169 161 //....oooOO0OOooo........oooOO0OOooo........oo << 170 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 162 void RE01StackingAction::PrepareNewEvent() 171 void RE01StackingAction::PrepareNewEvent() 163 { << 172 { 164 fStage = 0; << 173 fStage = 0; 165 } 174 } 166 175