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 // << 27 /// \file optical/LXe/src/LXePMTSD.cc << 28 /// \brief Implementation of the LXePMTSD clas << 29 // << 30 // << 31 #include "LXePMTSD.hh" 26 #include "LXePMTSD.hh" 32 << 33 #include "LXeDetectorConstruction.hh" << 34 #include "LXePMTHit.hh" 27 #include "LXePMTHit.hh" >> 28 #include "LXeDetectorConstruction.hh" 35 #include "LXeUserTrackInformation.hh" 29 #include "LXeUserTrackInformation.hh" 36 30 >> 31 #include "G4VPhysicalVolume.hh" 37 #include "G4LogicalVolume.hh" 32 #include "G4LogicalVolume.hh" 38 #include "G4ParticleDefinition.hh" << 39 #include "G4ParticleTypes.hh" << 40 #include "G4SDManager.hh" << 41 #include "G4Step.hh" << 42 #include "G4TouchableHistory.hh" << 43 #include "G4Track.hh" 33 #include "G4Track.hh" 44 #include "G4VPhysicalVolume.hh" << 34 #include "G4Step.hh" >> 35 #include "G4ParticleDefinition.hh" 45 #include "G4VTouchable.hh" 36 #include "G4VTouchable.hh" >> 37 #include "G4TouchableHistory.hh" 46 #include "G4ios.hh" 38 #include "G4ios.hh" >> 39 #include "G4ParticleTypes.hh" >> 40 #include "G4ParticleDefinition.hh" 47 41 48 //....oooOO0OOooo........oooOO0OOooo........oo << 42 //_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ 49 << 43 LXePMTSD::LXePMTSD(G4String name) 50 LXePMTSD::LXePMTSD(G4String name) : G4VSensiti << 44 :G4VSensitiveDetector(name),pmtHitCollection(0),pmtPositionsX(0) >> 45 ,pmtPositionsY(0),pmtPositionsZ(0) 51 { 46 { 52 collectionName.insert("pmtHitCollection"); 47 collectionName.insert("pmtHitCollection"); 53 } 48 } 54 49 55 //....oooOO0OOooo........oooOO0OOooo........oo << 50 //_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ 56 << 57 LXePMTSD::~LXePMTSD() 51 LXePMTSD::~LXePMTSD() 58 { << 52 {} 59 delete fPMTPositionsX; << 60 delete fPMTPositionsY; << 61 delete fPMTPositionsZ; << 62 } << 63 << 64 //....oooOO0OOooo........oooOO0OOooo........oo << 65 << 66 void LXePMTSD::SetPmtPositions(const std::vect << 67 { << 68 for (size_t i = 0; i < positions.size(); ++i << 69 if (fPMTPositionsX) fPMTPositionsX->push_b << 70 if (fPMTPositionsY) fPMTPositionsY->push_b << 71 if (fPMTPositionsZ) fPMTPositionsZ->push_b << 72 } << 73 } << 74 53 75 //....oooOO0OOooo........oooOO0OOooo........oo << 54 //_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ 76 << 55 void LXePMTSD::Initialize(G4HCofThisEvent* HCE){ 77 void LXePMTSD::Initialize(G4HCofThisEvent* hit << 56 pmtHitCollection = new LXePMTHitsCollection 78 { << 57 (SensitiveDetectorName,collectionName[0]); 79 fPMTHitCollection = new LXePMTHitsCollection << 58 //Store collection with event and keep ID 80 << 59 static G4int HCID = -1; 81 if (fHitCID < 0) { << 60 if(HCID<0){ 82 fHitCID = G4SDManager::GetSDMpointer()->Ge << 61 HCID = GetCollectionID(0); 83 } << 62 } 84 hitsCE->AddHitsCollection(fHitCID, fPMTHitCo << 63 HCE->AddHitsCollection( HCID, pmtHitCollection ); 85 } << 64 } 86 << 65 87 //....oooOO0OOooo........oooOO0OOooo........oo << 66 //_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ 88 << 67 G4bool LXePMTSD::ProcessHits(G4Step* aStep,G4TouchableHistory* ROhist){ 89 G4bool LXePMTSD::ProcessHits(G4Step*, G4Toucha << 68 return ProcessHits_constStep(aStep,ROhist); 90 { << 69 } 91 return false; << 70 92 } << 71 //Generates a hit and uses the postStepPoint's mother volume replica number 93 << 72 //PostStepPoint because the hit is generated manually when the photon is 94 //....oooOO0OOooo........oooOO0OOooo........oo << 73 //absorbed by the photocathode 95 << 74 //_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ 96 // Generates a hit and uses the postStepPoint' << 75 G4bool LXePMTSD::ProcessHits_constStep(const G4Step* aStep, 97 // PostStepPoint because the hit is generated << 76 G4TouchableHistory* ){ 98 // absorbed by the photocathode << 77 99 << 78 //need to know if this is an optical photon 100 G4bool LXePMTSD::ProcessHits_boundary(const G4 << 79 if(aStep->GetTrack()->GetDefinition() 101 { << 80 != G4OpticalPhoton::OpticalPhotonDefinition()) return false; 102 // need to know if this is an optical photon << 81 103 if (aStep->GetTrack()->GetDefinition() != G4 << 82 //User replica number 1 since photocathode is a daughter volume 104 return false; << 83 //to the pmt which was replicated 105 << 84 G4int pmtNumber= 106 // User replica number 1 since photocathode << 85 aStep->GetPostStepPoint()->GetTouchable()->GetReplicaNumber(1); 107 // to the pmt which was replicated << 86 G4VPhysicalVolume* physVol= 108 G4int pmtNumber = aStep->GetPostStepPoint()- << 87 aStep->GetPostStepPoint()->GetTouchable()->GetVolume(1); 109 G4VPhysicalVolume* physVol = aStep->GetPostS << 88 110 << 89 //Find the correct hit collection 111 // Find the correct hit collection << 90 G4int n=pmtHitCollection->entries(); 112 size_t n = fPMTHitCollection->entries(); << 91 LXePMTHit* hit=NULL; 113 LXePMTHit* hit = nullptr; << 92 for(G4int i=0;i<n;i++){ 114 for (size_t i = 0; i < n; ++i) { << 93 if((*pmtHitCollection)[i]->GetPMTNumber()==pmtNumber){ 115 if ((*fPMTHitCollection)[i]->GetPMTNumber( << 94 hit=(*pmtHitCollection)[i]; 116 hit = (*fPMTHitCollection)[i]; << 117 break; 95 break; 118 } 96 } 119 } 97 } 120 << 98 121 if (hit == nullptr) { // this pmt wasn't pr << 99 if(hit==NULL){//this pmt wasnt previously hit in this event 122 hit = new LXePMTHit(); // so create new h << 100 hit = new LXePMTHit(); //so create new hit 123 hit->SetPMTNumber(pmtNumber); 101 hit->SetPMTNumber(pmtNumber); 124 hit->SetPMTPhysVol(physVol); 102 hit->SetPMTPhysVol(physVol); 125 fPMTHitCollection->insert(hit); << 103 pmtHitCollection->insert(hit); 126 hit->SetPMTPos((*fPMTPositionsX)[pmtNumber << 104 hit->SetPMTPos((*pmtPositionsX)[pmtNumber],(*pmtPositionsY)[pmtNumber], 127 (*fPMTPositionsZ)[pmtNumber << 105 (*pmtPositionsZ)[pmtNumber]); 128 } 106 } 129 107 130 hit->IncPhotonCount(); // increment hit for << 108 hit->IncPhotonCount(); //increment hit for the selected pmt 131 << 109 132 if (!LXeDetectorConstruction::GetSphereOn()) << 110 if(!LXeDetectorConstruction::GetSphereOn()){ 133 hit->SetDrawit(true); 111 hit->SetDrawit(true); 134 // If the sphere is disabled then this hit << 112 //If the sphere is disabled then this hit is automaticaly drawn 135 } 113 } 136 else { // sphere enabled << 114 else{//sphere enabled 137 auto trackInfo = (LXeUserTrackInformation* << 115 LXeUserTrackInformation* trackInfo= 138 if (trackInfo->GetTrackStatus() & hitSpher << 116 (LXeUserTrackInformation*)aStep->GetTrack()->GetUserInformation(); 139 // only draw this hit if the photon has << 117 if(trackInfo->GetTrackStatus()&hitSphere) >> 118 //only draw this hit if the photon has hit the sphere first 140 hit->SetDrawit(true); 119 hit->SetDrawit(true); 141 } 120 } >> 121 142 122 143 return true; 123 return true; 144 } 124 } >> 125 >> 126 //_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ >> 127 void LXePMTSD::EndOfEvent(G4HCofThisEvent* ){ >> 128 } >> 129 >> 130 //_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ >> 131 void LXePMTSD::clear(){ >> 132 } >> 133 >> 134 //_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ >> 135 void LXePMTSD::DrawAll(){ >> 136 } >> 137 >> 138 //_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ >> 139 void LXePMTSD::PrintAll(){ >> 140 } >> 141 145 142