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 // 26 28 27 #include "AnalysisManager.hh" << 28 #include "eRositaTrackerSD.hh" 29 #include "eRositaTrackerSD.hh" 29 #include "eRositaTrackerHit.hh" << 30 << 31 #include <fstream> << 32 #include <iostream> << 33 << 34 #include "G4HCofThisEvent.hh" 30 #include "G4HCofThisEvent.hh" 35 #include "G4ios.hh" << 36 #include "G4ParticleTypes.hh" << 37 #include "G4SDManager.hh" << 38 #include "G4Step.hh" 31 #include "G4Step.hh" 39 #include "G4ThreeVector.hh" 32 #include "G4ThreeVector.hh" >> 33 #include "G4SDManager.hh" >> 34 #include "G4ios.hh" >> 35 #include "G4ParticleTypes.hh" 40 36 41 //....oooOO0OOooo........oooOO0OOooo........oo << 37 #include <iostream> >> 38 #include <fstream> >> 39 >> 40 #include "AnalysisManager.hh" 42 41 43 eRositaTrackerSD::eRositaTrackerSD(G4String na << 44 { << 45 constexpr auto TRACKER_COLLECTION_NAME = " << 46 collectionName.insert(TRACKER_COLLECTION_N << 47 } << 48 42 49 //....oooOO0OOooo........oooOO0OOooo........oo << 50 43 51 eRositaTrackerSD::~eRositaTrackerSD() << 44 eRositaTrackerSD::eRositaTrackerSD(G4String name) >> 45 :G4VSensitiveDetector(name) 52 { 46 { >> 47 G4String HCname; >> 48 collectionName.insert(HCname="trackerCollection"); 53 } 49 } 54 50 55 //....oooOO0OOooo........oooOO0OOooo........oo << 56 51 57 void eRositaTrackerSD::Initialize(G4HCofThisEv << 52 eRositaTrackerSD::~eRositaTrackerSD(){ } 58 { << 53 59 trackerCollection = new eRositaTrackerHits << 60 static G4int collectionIdentifier = -1; << 61 54 62 if (collectionIdentifier < 0) { << 55 void eRositaTrackerSD::Initialize(G4HCofThisEvent* HCE) 63 collectionIdentifier = G4SDManager::Ge << 56 { >> 57 trackerCollection = new eRositaTrackerHitsCollection >> 58 (SensitiveDetectorName,collectionName[0]); >> 59 static G4int HCID = -1; >> 60 if (HCID < 0) >> 61 { >> 62 HCID = G4SDManager::GetSDMpointer()->GetCollectionID(collectionName[0]); 64 } 63 } 65 collection->AddHitsCollection(collectionId << 64 HCE->AddHitsCollection( HCID, trackerCollection ); 66 } 65 } 67 66 68 //....oooOO0OOooo........oooOO0OOooo........oo << 69 67 70 auto eRositaTrackerSD::ProcessHits(G4Step* ste << 68 G4bool eRositaTrackerSD::ProcessHits(G4Step* aStep,G4TouchableHistory*) 71 { 69 { 72 if (step->GetTrack()->GetDefinition() != G << 70 if(aStep->GetTrack()->GetDefinition() != G4Gamma::GammaDefinition()) return false; 73 return false; << 74 } << 75 71 76 // auto depositedEnergy = step->GetTotalEn << 72 // G4double edep = aStep->GetTotalEnergyDeposit(); 77 auto depositedEnergy = step->GetPreStepPoi << 73 G4double edep = aStep->GetPreStepPoint()->GetKineticEnergy(); 78 if (depositedEnergy == 0.) { << 74 79 return false; << 75 if (edep == 0.) return false; 80 } << 81 76 82 auto *newHit = new eRositaTrackerHit(); << 77 eRositaTrackerHit* newHit = new eRositaTrackerHit(); 83 newHit->SetTrackIdentifier(step->GetTrack( << 78 newHit->SetTrackID (aStep->GetTrack()->GetTrackID()); 84 // newHit->SetChamberNumber(step->GetPreSt << 79 //newHit->SetChamberNb(aStep->GetPreStepPoint()->GetTouchableHandle() 85 newHit->SetDepositedEnergy(depositedEnergy << 80 // ->GetCopyNumber()); 86 newHit->SetPosition(step->GetPostStepPoint << 81 newHit->SetEdep(edep); 87 trackerCollection->insert(newHit); << 82 newHit->SetPos(aStep->GetPostStepPoint()->GetPosition()); 88 << 83 trackerCollection->insert( newHit ); 89 // newHit->Print(); << 84 90 // newHit->Draw(); << 85 //newHit->Print(); 91 << 86 //newHit->Draw(); 92 // std::ofstream dataFile("ASCII"); << 87 93 // newHit->PrintToFile(dataFile); << 88 //ofstream out("ASCII"); 94 // dataFile.close(); << 89 //newHit->PrintToFile(out); >> 90 //out.close(); 95 91 96 return true; << 92 return true; 97 } 93 } 98 94 99 //....oooOO0OOooo........oooOO0OOooo........oo << 100 95 101 void eRositaTrackerSD::EndOfEvent(G4HCofThisEv 96 void eRositaTrackerSD::EndOfEvent(G4HCofThisEvent*) 102 { 97 { 103 G4int numberOfHits = trackerCollection->en << 98 G4int NbHits = trackerCollection->entries(); >> 99 >> 100 if (verboseLevel > 0) >> 101 { >> 102 >> 103 G4cout << std::endl >> 104 << "Hits Collection: in this event they are " << NbHits >> 105 << " hits in the tracker chambers: " << G4endl; >> 106 for (G4int i=0;i<NbHits;i++) (*trackerCollection)[i]->Print(); >> 107 >> 108 } >> 109 >> 110 // ofstream out("ASCII"); >> 111 //if (!out.is_open()) >> 112 // { >> 113 // G4cout <<"...opening ASCII file failed"; >> 114 // } >> 115 >> 116 double eTot = 0.; >> 117 >> 118 for (G4int i=0; i<NbHits; i++) >> 119 { >> 120 (*trackerCollection)[i]->PrintToFile(); >> 121 eTot += (*trackerCollection)[i]->GetEdep(); >> 122 }; 104 123 105 if (verboseLevel > 0) { << 124 // if (eTot > 0.) AnalysisManager::Instance()->ScoreTot(eTot); 106 G4cout << G4endl << 107 << "Hits collection: in this event << 108 << " hits in the tracker chambers: << 109 << 110 for (G4int i = 0; i < numberOfHits; i+ << 111 (*trackerCollection)[i]->Print(); << 112 } << 113 } << 114 125 115 for (G4int i = 0; i < numberOfHits; i++) { << 126 //out.close(); 116 (*trackerCollection)[i]->PrintToFile() << 117 }; << 118 } 127 } >> 128 >> 129 >> 130 >> 131 119 132