Geant4 Cross Reference |
1 // 1 2 // ******************************************* 3 // * License and Disclaimer 4 // * 5 // * The Geant4 software is copyright of th 6 // * the Geant4 Collaboration. It is provided 7 // * conditions of the Geant4 Software License 8 // * LICENSE and available at http://cern.ch/ 9 // * include a list of copyright holders. 10 // * 11 // * Neither the authors of this software syst 12 // * institutes,nor the agencies providing fin 13 // * work make any representation or warran 14 // * regarding this software system or assum 15 // * use. Please see the license in the file 16 // * for the full disclaimer and the limitatio 17 // * 18 // * This code implementation is the result 19 // * technical work of the GEANT4 collaboratio 20 // * By using, copying, modifying or distri 21 // * any work based on the software) you ag 22 // * use in resulting scientific publicati 23 // * acceptance of all terms of the Geant4 Sof 24 // ******************************************* 25 // 26 #include "Par03EventAction.hh" 27 28 #include "Par03DetectorConstruction.hh" 29 #include "Par03Hit.hh" 30 31 #include "G4AnalysisManager.hh" 32 #include "G4Event.hh" 33 #include "G4EventManager.hh" 34 #include "G4HCofThisEvent.hh" 35 #include "G4SDManager.hh" 36 37 Par03EventAction::Par03EventAction(Par03Detect 38 : G4UserEventAction(), fHitCollectionID(-1), 39 {} 40 41 //....oooOO0OOooo........oooOO0OOooo........oo 42 43 Par03EventAction::~Par03EventAction() = defaul 44 45 //....oooOO0OOooo........oooOO0OOooo........oo 46 47 void Par03EventAction::BeginOfEventAction(cons 48 { 49 fTimer.Start(); 50 } 51 52 //....oooOO0OOooo........oooOO0OOooo........oo 53 54 void Par03EventAction::EndOfEventAction(const 55 { 56 fTimer.Stop(); 57 // Get hits collection ID (only once) 58 if (fHitCollectionID == -1) { 59 fHitCollectionID = G4SDManager::GetSDMpoin 60 } 61 // Get hits collection 62 auto hitsCollection = 63 static_cast<Par03HitsCollection*>(aEvent-> 64 65 if (hitsCollection == nullptr) { 66 G4ExceptionDescription msg; 67 msg << "Cannot access hitsCollection ID " 68 G4Exception("Par03EventAction::GetHitsColl 69 } 70 // Get analysis manager 71 auto analysisManager = G4AnalysisManager::In 72 // Retrieve only once detector dimensions 73 if (fCellSizeZ == 0) { 74 fCellSizeZ = fDetector->GetLength() / fDet 75 fCellSizeRho = fDetector->GetRadius() / fD 76 } 77 78 // Retrieve information from primary vertex 79 // To calculate shower axis and entry point 80 auto primaryVertex = 81 G4EventManager::GetEventManager()->GetCons 82 auto primaryParticle = primaryVertex->GetPri 83 G4double primaryEnergy = primaryParticle->Ge 84 // Estimate from vertex and particle directi 85 // Calculate entrance point to the detector 86 auto primaryDirection = primaryParticle->Get 87 auto primaryEntrance = 88 primaryVertex->GetPosition() - primaryVert 89 G4double cosDirection = std::cos(primaryDire 90 G4double sinDirection = std::sin(primaryDire 91 92 // Fill histograms 93 Par03Hit* hit = nullptr; 94 G4double hitEn = 0; 95 G4double totalEnergy = 0; 96 G4int hitZ = -1; 97 G4int hitRho = -1; 98 G4int hitType = -1; 99 G4double tDistance = 0., rDistance = 0.; 100 G4double tFirstMoment = 0., tSecondMoment = 101 G4double rFirstMoment = 0., rSecondMoment = 102 for (size_t iHit = 0; iHit < hitsCollection- 103 hit = static_cast<Par03Hit*>(hitsCollectio 104 hitZ = hit->GetZid(); 105 hitRho = hit->GetRhoId(); 106 hitEn = hit->GetEdep(); 107 hitType = hit->GetType(); 108 if (hitEn > 0) { 109 totalEnergy += hitEn; 110 tDistance = hitZ * fCellSizeZ * cosDirec 111 + (hitRho * fCellSizeRho - p 112 rDistance = hitZ * fCellSizeZ * (-sinDir 113 + (hitRho * fCellSizeRho - p 114 tFirstMoment += hitEn * tDistance; 115 rFirstMoment += hitEn * rDistance; 116 analysisManager->FillH1(4, tDistance, hi 117 analysisManager->FillH1(5, rDistance, hi 118 analysisManager->FillH1(10, hitType); 119 } 120 } 121 tFirstMoment /= totalEnergy; 122 rFirstMoment /= totalEnergy; 123 analysisManager->FillH1(0, primaryEnergy / G 124 analysisManager->FillH1(1, totalEnergy / GeV 125 analysisManager->FillH1(2, totalEnergy / pri 126 analysisManager->FillH1(3, fTimer.GetRealEla 127 analysisManager->FillH1(6, tFirstMoment); 128 analysisManager->FillH1(7, rFirstMoment); 129 130 // Second loop over hits to calculate second 131 for (size_t iHit = 0; iHit < hitsCollection- 132 hit = static_cast<Par03Hit*>(hitsCollectio 133 hitEn = hit->GetEdep(); 134 hitZ = hit->GetZid(); 135 hitRho = hit->GetRhoId(); 136 if (hitEn > 0) { 137 tDistance = hitZ * fCellSizeZ * cosDirec 138 + (hitRho * fCellSizeRho - p 139 rDistance = hitZ * fCellSizeZ * (-sinDir 140 + (hitRho * fCellSizeRho - p 141 tSecondMoment += hitEn * std::pow(tDista 142 rSecondMoment += hitEn * std::pow(rDista 143 } 144 } 145 tSecondMoment /= totalEnergy; 146 rSecondMoment /= totalEnergy; 147 analysisManager->FillH1(8, tSecondMoment); 148 analysisManager->FillH1(9, rSecondMoment); 149 }