ECCE @ EIC Software
Reference for
ECCE @ EIC
simulation and reconstruction software on GitHub
Home page
Related Pages
Modules
Namespaces
Classes
Files
External Links
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
SensitiveDetector.cc
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file SensitiveDetector.cc
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
39
SensitiveDetector::SensitiveDetector
(
const
G4String
&
name
,
40
const
G4String
& hitsCollectionName,
AnalysisManager
* analysis_manager)
41
:
G4VSensitiveDetector
(name),
42
fHitsCollection(NULL)
43
{
44
collectionName
.
insert
(hitsCollectionName);
45
analysis
= analysis_manager;
46
}
47
48
SensitiveDetector::~SensitiveDetector
()
49
{}
50
51
void
SensitiveDetector::Initialize
(
G4HCofThisEvent
* hce)
52
{
53
// Create hits collection
54
55
fHitsCollection
56
=
new
SensitiveDetectorHitsCollection
(
SensitiveDetectorName
,
collectionName
[0]);
57
58
// Add this collection in hce
59
60
G4int
hcID
61
=
G4SDManager::GetSDMpointer
()->
GetCollectionID
(
collectionName
[0]);
62
hce->
AddHitsCollection
( hcID,
fHitsCollection
);
63
}
64
65
G4bool
SensitiveDetector::ProcessHits
(
G4Step
* aStep,
66
G4TouchableHistory
*)
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
78
SensitiveDetectorHit
* newHit =
new
SensitiveDetectorHit
();
79
80
newHit -> SetEdep(edep);
81
82
fHitsCollection
-> insert( newHit );
83
84
return
true
;
85
}
86
87
void
SensitiveDetector::EndOfEvent
(
G4HCofThisEvent
*)
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
}
geant4
tree
geant4-10.6-release
examples
advanced
radioprotection
src
SensitiveDetector.cc
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:25:00
using
1.8.2 with
ECCE GitHub integration