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