Geant4  10.03.p02
 All Classes 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 //
28 //
29 //
30 // $Id: SensitiveDetector.cc 94932 2015-12-18 09:21:29Z gcosmo $
31 //
32 //
33 
34 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
35 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
36 
37 #include "SensitiveDetector.hh"
38 #include "Analysis.hh"
39 
40 #include "G4Step.hh"
41 #include "G4UnitsTable.hh"
42 #include "G4ios.hh"
43 
44 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
45 
47  : G4VSensitiveDetector(name), fEdep(0.)
48 {}
49 
50 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
51 
53 {}
54 
55 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
56 
58 {
59  fEdep = 0.;
60 }
61 
62 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
63 
65 {
66  G4double edep = step->GetTotalEnergyDeposit();
67  fEdep += edep;
68 
69  // verbose level can be set via /hits/verbose command
70  if (verboseLevel>1) {
71  G4cout << " Energy added to the hit: " << G4BestUnit(edep, "Energy") << G4endl;
72  }
73 
74  return true;
75 }
76 
77 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
78 
80 {
81  G4AnalysisManager* analysisManager = G4AnalysisManager::Instance();
82  analysisManager->FillH1(1, fEdep);
83  analysisManager->FillH1(5, fEdep);
84 
85  // verbose level can be set via /hits/verbose command
86  if (verboseLevel>0) {
87  G4cout << " Absorber: total energy: " << G4BestUnit(fEdep, "Energy") << G4endl;
88  }
89 }
90 
91 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
const XML_Char * name
Definition: expat.h:151
virtual void Initialize(G4HCofThisEvent *hitCollection)
virtual G4bool ProcessHits(G4Step *step, G4TouchableHistory *history)
virtual void EndOfEvent(G4HCofThisEvent *hitCollection)
#define G4BestUnit(a, b)
#define G4_USE_G4BESTUNIT_FOR_VERBOSE 1
G4GLOB_DLL std::ostream G4cout
bool G4bool
Definition: G4Types.hh:79
SensitiveDetector(const G4String &name, const G4String &hitsCollectionName, AnalysisManager *)
Definition: G4Step.hh:76
G4double GetTotalEnergyDeposit() const
#define G4endl
Definition: G4ios.hh:61
double G4double
Definition: G4Types.hh:76
virtual ~SensitiveDetector()
G4CsvAnalysisManager G4AnalysisManager
Definition: g4csv_defs.hh:77