Geant4 Cross Reference

Cross-Referencing   Geant4
Geant4/examples/extended/runAndEvent/RE01/src/RE01EventAction.cc

Version: [ ReleaseNotes ] [ 1.0 ] [ 1.1 ] [ 2.0 ] [ 3.0 ] [ 3.1 ] [ 3.2 ] [ 4.0 ] [ 4.0.p1 ] [ 4.0.p2 ] [ 4.1 ] [ 4.1.p1 ] [ 5.0 ] [ 5.0.p1 ] [ 5.1 ] [ 5.1.p1 ] [ 5.2 ] [ 5.2.p1 ] [ 5.2.p2 ] [ 6.0 ] [ 6.0.p1 ] [ 6.1 ] [ 6.2 ] [ 6.2.p1 ] [ 6.2.p2 ] [ 7.0 ] [ 7.0.p1 ] [ 7.1 ] [ 7.1.p1 ] [ 8.0 ] [ 8.0.p1 ] [ 8.1 ] [ 8.1.p1 ] [ 8.1.p2 ] [ 8.2 ] [ 8.2.p1 ] [ 8.3 ] [ 8.3.p1 ] [ 8.3.p2 ] [ 9.0 ] [ 9.0.p1 ] [ 9.0.p2 ] [ 9.1 ] [ 9.1.p1 ] [ 9.1.p2 ] [ 9.1.p3 ] [ 9.2 ] [ 9.2.p1 ] [ 9.2.p2 ] [ 9.2.p3 ] [ 9.2.p4 ] [ 9.3 ] [ 9.3.p1 ] [ 9.3.p2 ] [ 9.4 ] [ 9.4.p1 ] [ 9.4.p2 ] [ 9.4.p3 ] [ 9.4.p4 ] [ 9.5 ] [ 9.5.p1 ] [ 9.5.p2 ] [ 9.6 ] [ 9.6.p1 ] [ 9.6.p2 ] [ 9.6.p3 ] [ 9.6.p4 ] [ 10.0 ] [ 10.0.p1 ] [ 10.0.p2 ] [ 10.0.p3 ] [ 10.0.p4 ] [ 10.1 ] [ 10.1.p1 ] [ 10.1.p2 ] [ 10.1.p3 ] [ 10.2 ] [ 10.2.p1 ] [ 10.2.p2 ] [ 10.2.p3 ] [ 10.3 ] [ 10.3.p1 ] [ 10.3.p2 ] [ 10.3.p3 ] [ 10.4 ] [ 10.4.p1 ] [ 10.4.p2 ] [ 10.4.p3 ] [ 10.5 ] [ 10.5.p1 ] [ 10.6 ] [ 10.6.p1 ] [ 10.6.p2 ] [ 10.6.p3 ] [ 10.7 ] [ 10.7.p1 ] [ 10.7.p2 ] [ 10.7.p3 ] [ 10.7.p4 ] [ 11.0 ] [ 11.0.p1 ] [ 11.0.p2 ] [ 11.0.p3, ] [ 11.0.p4 ] [ 11.1 ] [ 11.1.1 ] [ 11.1.2 ] [ 11.1.3 ] [ 11.2 ] [ 11.2.1 ] [ 11.2.2 ] [ 11.3.0 ]

  1 //
  2 // ********************************************************************
  3 // * License and Disclaimer                                           *
  4 // *                                                                  *
  5 // * The  Geant4 software  is  copyright of the Copyright Holders  of *
  6 // * the Geant4 Collaboration.  It is provided  under  the terms  and *
  7 // * conditions of the Geant4 Software License,  included in the file *
  8 // * LICENSE and available at  http://cern.ch/geant4/license .  These *
  9 // * include a list of copyright holders.                             *
 10 // *                                                                  *
 11 // * Neither the authors of this software system, nor their employing *
 12 // * institutes,nor the agencies providing financial support for this *
 13 // * work  make  any representation or  warranty, express or implied, *
 14 // * regarding  this  software system or assume any liability for its *
 15 // * use.  Please see the license in the file  LICENSE  and URL above *
 16 // * for the full disclaimer and the limitation of liability.         *
 17 // *                                                                  *
 18 // * This  code  implementation is the result of  the  scientific and *
 19 // * technical work of the GEANT4 collaboration.                      *
 20 // * By using,  copying,  modifying or  distributing the software (or *
 21 // * any work based  on the software)  you  agree  to acknowledge its *
 22 // * use  in  resulting  scientific  publications,  and indicate your *
 23 // * acceptance of all terms of the Geant4 Software license.          *
 24 // ********************************************************************
 25 //
 26 /// \file runAndEvent/RE01/src/RE01EventAction.cc
 27 /// \brief Implementation of the RE01EventAction class
 28 //
 29 //
 30 
 31 #include "RE01EventAction.hh"
 32 
 33 #include "RE01CalorimeterHit.hh"
 34 #include "RE01TrackerHit.hh"
 35 #include "RE01Trajectory.hh"
 36 
 37 #include "G4Event.hh"
 38 #include "G4EventManager.hh"
 39 #include "G4HCofThisEvent.hh"
 40 #include "G4PrimaryParticle.hh"
 41 #include "G4PrimaryVertex.hh"
 42 #include "G4SDManager.hh"
 43 #include "G4SystemOfUnits.hh"
 44 #include "G4TrajectoryContainer.hh"
 45 #include "G4UImanager.hh"
 46 #include "G4VHitsCollection.hh"
 47 #include "G4VVisManager.hh"
 48 #include "G4ios.hh"
 49 
 50 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
 51 RE01EventAction::RE01EventAction() : G4UserEventAction(), fTrackerCollID(-1), fCalorimeterCollID(-1)
 52 {
 53   ;
 54 }
 55 
 56 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
 57 RE01EventAction::~RE01EventAction()
 58 {
 59   ;
 60 }
 61 
 62 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
 63 void RE01EventAction::BeginOfEventAction(const G4Event*)
 64 {
 65   G4SDManager* SDman = G4SDManager::GetSDMpointer();
 66   if (fTrackerCollID < 0 || fCalorimeterCollID < 0) {
 67     G4String colNam;
 68     fTrackerCollID = SDman->GetCollectionID(colNam = "trackerCollection");
 69     fCalorimeterCollID = SDman->GetCollectionID(colNam = "calCollection");
 70   }
 71 }
 72 
 73 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
 74 void RE01EventAction::EndOfEventAction(const G4Event* evt)
 75 {
 76   G4cout << ">>> Summary of Event " << evt->GetEventID() << G4endl;
 77   if (evt->GetNumberOfPrimaryVertex() == 0) {
 78     G4cout << "Event is empty." << G4endl;
 79     return;
 80   }
 81 
 82   if (fTrackerCollID < 0 || fCalorimeterCollID < 0) return;
 83 
 84   G4HCofThisEvent* HCE = evt->GetHCofThisEvent();
 85   RE01TrackerHitsCollection* THC = 0;
 86   RE01CalorimeterHitsCollection* CHC = 0;
 87   if (HCE) {
 88     THC = (RE01TrackerHitsCollection*)(HCE->GetHC(fTrackerCollID));
 89     CHC = (RE01CalorimeterHitsCollection*)(HCE->GetHC(fCalorimeterCollID));
 90   }
 91 
 92   if (THC) {
 93     int n_hit = THC->entries();
 94     G4cout << G4endl;
 95     G4cout << "Tracker hits "
 96            << "--------------------------------------------------------------" << G4endl;
 97     G4cout << n_hit << " hits are stored in RE01TrackerHitsCollection." << G4endl;
 98     if (fpEventManager->GetVerboseLevel() > 0) {
 99       G4cout << "List of hits in tracker" << G4endl;
100       for (int i = 0; i < n_hit; i++) {
101         (*THC)[i]->Print();
102       }
103     }
104   }
105   if (CHC) {
106     int n_hit = CHC->entries();
107     G4cout << G4endl;
108     G4cout << "Calorimeter hits "
109            << "--------------------------------------------------------------" << G4endl;
110     G4cout << n_hit << " hits are stored in RE01CalorimeterHitsCollection." << G4endl;
111     G4double totE = 0;
112     for (int i = 0; i < n_hit; i++) {
113       totE += (*CHC)[i]->GetEdep();
114     }
115     G4cout << "     Total energy deposition in calorimeter : " << totE / GeV << " (GeV)" << G4endl;
116   }
117 
118   // get number of stored trajectories
119   G4TrajectoryContainer* trajectoryContainer = evt->GetTrajectoryContainer();
120   G4int n_trajectories = 0;
121   if (trajectoryContainer) n_trajectories = trajectoryContainer->entries();
122   // extract the trajectories and print them out
123   G4cout << G4endl;
124   G4cout << "Trajectories in tracker "
125          << "--------------------------------------------------------------" << G4endl;
126   if (fpEventManager->GetVerboseLevel() > 0) {
127     for (G4int i = 0; i < n_trajectories; i++) {
128       RE01Trajectory* trj = (RE01Trajectory*)((*(evt->GetTrajectoryContainer()))[i]);
129       trj->ShowTrajectory();
130     }
131   }
132 
133   G4cout << G4endl;
134   G4cout << "Primary particles "
135          << "--------------------------------------------------------------" << G4endl;
136   G4int n_vertex = evt->GetNumberOfPrimaryVertex();
137   for (G4int iv = 0; iv < n_vertex; iv++) {
138     G4PrimaryVertex* pv = evt->GetPrimaryVertex(iv);
139     G4cout << G4endl;
140     G4cout << "Primary vertex " << G4ThreeVector(pv->GetX0(), pv->GetY0(), pv->GetZ0())
141            << "   at t = " << (pv->GetT0()) / ns << " [ns]" << G4endl;
142     if (fpEventManager->GetVerboseLevel() > 0) {
143       G4PrimaryParticle* pp = pv->GetPrimary();
144       while (pp) {
145         PrintPrimary(pp, 0);
146         pp = pp->GetNext();
147       }
148     }
149   }
150 }
151 
152 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
153 void RE01EventAction::PrintPrimary(G4PrimaryParticle* pp, G4int ind)
154 {
155   for (G4int ii = 0; ii <= ind; ii++) {
156     G4cout << "  ";
157   }
158   G4cout << "==PDGcode " << pp->GetPDGcode() << " ";
159   if (pp->GetG4code() != 0) {
160     G4cout << "(" << pp->GetG4code()->GetParticleName() << ")";
161   }
162   else {
163     G4cout << "is not defined in G4";
164   }
165   G4cout << " " << pp->GetMomentum() / GeV << " [GeV] ";
166   if (pp->GetTrackID() < 0) {
167     G4cout << G4endl;
168   }
169   else {
170     G4cout << ">>> G4Track ID " << pp->GetTrackID() << G4endl;
171   }
172 
173   G4PrimaryParticle* daughter = pp->GetDaughter();
174   while (daughter) {
175     PrintPrimary(daughter, ind + 1);
176     daughter = daughter->GetNext();
177   }
178 }
179