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 B2/B2b/src/TrackerSD.cc 27 /// \file B2/B2b/src/TrackerSD.cc 28 /// \brief Implementation of the B2::TrackerSD 28 /// \brief Implementation of the B2::TrackerSD class 29 29 30 #include "TrackerSD.hh" 30 #include "TrackerSD.hh" 31 << 32 #include "G4HCofThisEvent.hh" 31 #include "G4HCofThisEvent.hh" 33 #include "G4SDManager.hh" << 34 #include "G4Step.hh" 32 #include "G4Step.hh" >> 33 #include "G4ThreeVector.hh" >> 34 #include "G4SDManager.hh" >> 35 #include "G4ios.hh" 35 36 36 namespace B2 37 namespace B2 37 { 38 { 38 39 39 //....oooOO0OOooo........oooOO0OOooo........oo 40 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 40 41 41 TrackerSD::TrackerSD(const G4String& name, con << 42 TrackerSD::TrackerSD(const G4String& name, 42 : G4VSensitiveDetector(name) << 43 const G4String& hitsCollectionName) >> 44 : G4VSensitiveDetector(name) 43 { 45 { 44 collectionName.insert(hitsCollectionName); 46 collectionName.insert(hitsCollectionName); 45 } 47 } 46 48 47 //....oooOO0OOooo........oooOO0OOooo........oo 49 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 48 50 49 void TrackerSD::Initialize(G4HCofThisEvent* hc 51 void TrackerSD::Initialize(G4HCofThisEvent* hce) 50 { 52 { 51 // Create hits collection 53 // Create hits collection 52 54 53 fHitsCollection = new TrackerHitsCollection( << 55 fHitsCollection >> 56 = new TrackerHitsCollection(SensitiveDetectorName, collectionName[0]); 54 57 55 // Add this collection in hce 58 // Add this collection in hce 56 59 57 G4int hcID = G4SDManager::GetSDMpointer()->G << 60 G4int hcID 58 hce->AddHitsCollection(hcID, fHitsCollection << 61 = G4SDManager::GetSDMpointer()->GetCollectionID(collectionName[0]); >> 62 hce->AddHitsCollection( hcID, fHitsCollection ); 59 } 63 } 60 64 61 //....oooOO0OOooo........oooOO0OOooo........oo 65 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 62 66 63 G4bool TrackerSD::ProcessHits(G4Step* step, G4 << 67 G4bool TrackerSD::ProcessHits(G4Step* aStep, >> 68 G4TouchableHistory*) 64 { 69 { 65 // energy deposit 70 // energy deposit 66 G4double edep = step->GetTotalEnergyDeposit( << 71 G4double edep = aStep->GetTotalEnergyDeposit(); 67 72 68 if (edep == 0.) return false; << 73 if (edep==0.) return false; 69 74 70 auto newHit = new TrackerHit(); 75 auto newHit = new TrackerHit(); 71 76 72 newHit->SetTrackID(step->GetTrack()->GetTrac << 77 newHit->SetTrackID (aStep->GetTrack()->GetTrackID()); 73 newHit->SetChamberNb(step->GetPreStepPoint() << 78 newHit->SetChamberNb(aStep->GetPreStepPoint()->GetTouchableHandle() >> 79 ->GetCopyNumber()); 74 newHit->SetEdep(edep); 80 newHit->SetEdep(edep); 75 newHit->SetPos(step->GetPostStepPoint()->Get << 81 newHit->SetPos (aStep->GetPostStepPoint()->GetPosition()); 76 82 77 fHitsCollection->insert(newHit); << 83 fHitsCollection->insert( newHit ); 78 84 79 // newHit->Print(); << 85 //newHit->Print(); 80 86 81 return true; 87 return true; 82 } 88 } 83 89 84 //....oooOO0OOooo........oooOO0OOooo........oo 90 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 85 91 86 void TrackerSD::EndOfEvent(G4HCofThisEvent*) 92 void TrackerSD::EndOfEvent(G4HCofThisEvent*) 87 { 93 { 88 if (verboseLevel > 1) { << 94 if ( verboseLevel>1 ) { 89 std::size_t nofHits = fHitsCollection->ent << 95 std::size_t nofHits = fHitsCollection->entries(); 90 G4cout << G4endl << "-------->Hits Collect << 96 G4cout << G4endl 91 << " hits in the tracker chambers: << 97 << "-------->Hits Collection: in this event they are " << nofHits 92 for (std::size_t i = 0; i < nofHits; i++) << 98 << " hits in the tracker chambers: " << G4endl; 93 (*fHitsCollection)[i]->Print(); << 99 for ( std::size_t i=0; i<nofHits; i++ ) (*fHitsCollection)[i]->Print(); 94 } 100 } 95 } 101 } 96 102 97 //....oooOO0OOooo........oooOO0OOooo........oo 103 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 98 104 99 } // namespace B2 << 105 } >> 106 100 107