Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SensitiveDetector.cc
Go to the documentation of this file.
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 // Authors: Susanna Guatelli, susanna@uow.edu.au,
27 // Authors: Jeremy Davis, jad028@uowmail.edu.au
28 //
29 // code based on the basic example B2
30 //
31 #include "SensitiveDetector.hh"
32 #include "G4HCofThisEvent.hh"
33 #include "G4Step.hh"
34 #include "G4ThreeVector.hh"
35 #include "G4SDManager.hh"
36 #include "G4ios.hh"
37 #include "G4SystemOfUnits.hh"
38 
40  const G4String& hitsCollectionName, AnalysisManager* analysis_manager)
41  : G4VSensitiveDetector(name),
42  fHitsCollection(NULL)
43 {
44  collectionName.insert(hitsCollectionName);
45  analysis = analysis_manager;
46 }
47 
49 {}
50 
52 {
53  // Create hits collection
54 
55  fHitsCollection
57 
58  // Add this collection in hce
59 
60  G4int hcID
62  hce->AddHitsCollection( hcID, fHitsCollection );
63 }
64 
67 {
68  // energy deposit
69  G4double edep = aStep->GetTotalEnergyDeposit();
70 
71  if (edep==0.) return false;
72 
73  G4String volumeName = aStep -> GetPreStepPoint() -> GetPhysicalVolume()-> GetName();
74 
75  if(volumeName != "SV_phys1")
76  return false;
77 
79 
80  newHit -> SetEdep(edep);
81 
82  fHitsCollection -> insert( newHit );
83 
84  return true;
85 }
86 
88 {
89 #ifdef ANALYSIS_USE
90 // Initialisation of total energy deposition per event to zero
91  G4double totalEdepInOneEvent =0;
92 
93  G4int NbHits = fHitsCollection->entries();
94  //G4cout << "number of hits " <<NbHits << G4endl;
95 
96  for (G4int i=0;i<NbHits;i++)
97  {
98  G4double edep = (*fHitsCollection)[i]->GetEdep();
99  totalEdepInOneEvent = totalEdepInOneEvent + edep;
100  }
101 
102 
103  if (totalEdepInOneEvent!=0)analysis-> StoreEnergyDeposition(totalEdepInOneEvent/keV);
104 #endif
105 }
virtual void Initialize(G4HCofThisEvent *hitCollection)
G4int GetCollectionID(G4String colName)
Definition: G4SDManager.cc:131
virtual G4bool ProcessHits(G4Step *step, G4TouchableHistory *history)
virtual void EndOfEvent(G4HCofThisEvent *hitCollection)
const XML_Char * name
int G4int
Definition: G4Types.hh:78
G4THitsCollection< SensitiveDetectorHit > SensitiveDetectorHitsCollection
bool G4bool
Definition: G4Types.hh:79
SensitiveDetector(const G4String &name, const G4String &hitsCollectionName, AnalysisManager *)
Definition: G4Step.hh:76
G4double GetTotalEnergyDeposit() const
void AddHitsCollection(G4int HCID, G4VHitsCollection *aHC)
static G4SDManager * GetSDMpointer()
Definition: G4SDManager.cc:40
G4CollectionNameVector collectionName
double G4double
Definition: G4Types.hh:76
virtual ~SensitiveDetector()