Geant4  10.03.p02
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
RE05MuonSD.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 // $Id: RE05MuonSD.cc 98775 2016-08-09 14:30:39Z gcosmo $
27 //
30 //
31 
32 #include "RE05MuonSD.hh"
33 #include "RE05MuonHit.hh"
34 #include "G4HCofThisEvent.hh"
35 #include "G4TouchableHistory.hh"
36 #include "G4Track.hh"
37 #include "G4Step.hh"
38 #include "G4SystemOfUnits.hh"
39 #include "G4ios.hh"
40 
41 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
42 
44 :G4VSensitiveDetector(name),
45  fMuonCollection(0), fPositionResolution(0.)
46 {
47  G4String HCname;
48  collectionName.insert(HCname="muonCollection");
49  fPositionResolution = 5*cm;
50 }
51 
52 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
53 
55 {}
56 
57 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
58 
60 {
61  static int HCID = -1;
62  fMuonCollection = new RE05MuonHitsCollection
64  if(HCID<0)
65  { HCID = GetCollectionID(0); }
66  HCE->AddHitsCollection(HCID,fMuonCollection);
67 }
68 
69 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
70 
72 {
73  G4double edep = aStep->GetTotalEnergyDeposit();
74 
75  if(edep==0.) return true;
76 
77  RE05MuonHit* aHit;
78  int nHit = fMuonCollection->entries();
79  G4ThreeVector hitpos = aStep->GetPreStepPoint()->GetPosition();
80  for(int i=0;i<nHit;i++)
81  {
82  aHit = (*fMuonCollection)[i];
83  G4ThreeVector pos = aHit->GetPos();
84  G4double dist2 = sqr(pos.x()-hitpos.x())
85  +sqr(pos.y()-hitpos.y())+sqr(pos.z()-hitpos.z());
86  if(dist2<=sqr(fPositionResolution))
87  aHit->AddEdep(edep);
88  return true;
89  }
90 
91  aHit = new RE05MuonHit();
92  aHit->SetEdep( edep );
93  aHit->SetPos( aStep->GetPreStepPoint()->GetPosition() );
94  fMuonCollection->insert( aHit );
95 
96  return true;
97 }
98 
99 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
100 
102 {}
103 
104 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
105 
107 {}
108 
109 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
110 
112 {}
113 
114 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
115 
117 {}
118 
119 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
const XML_Char * name
Definition: expat.h:151
virtual void clear()
Definition: RE05MuonSD.cc:106
double x() const
Definition of the RE05MuonHit class.
virtual G4bool ProcessHits(G4Step *aStep, G4TouchableHistory *ROhist)
Definition: RE05MuonSD.cc:71
G4int entries() const
G4int insert(T *aHit)
double z() const
virtual G4int GetCollectionID(G4int i)
G4StepPoint * GetPreStepPoint() const
const G4ThreeVector & GetPosition() const
bool G4bool
Definition: G4Types.hh:79
static constexpr double cm
Definition: G4SIunits.hh:119
void SetEdep(G4double de)
Definition: RE05MuonHit.hh:67
Definition: G4Step.hh:76
Definition of the RE05MuonSD class.
virtual void DrawAll()
Definition: RE05MuonSD.cc:111
G4double GetTotalEnergyDeposit() const
void AddHitsCollection(G4int HCID, G4VHitsCollection *aHC)
void AddEdep(G4double de)
Definition: RE05MuonHit.hh:69
G4THitsCollection< RE05MuonHit > RE05MuonHitsCollection
Definition: RE05MuonHit.hh:79
double y() const
RE05MuonSD(G4String name)
Definition: RE05MuonSD.cc:43
G4ThreeVector GetPos()
Definition: RE05MuonHit.hh:75
virtual void Initialize(G4HCofThisEvent *HCE)
Definition: RE05MuonSD.cc:59
G4CollectionNameVector collectionName
T sqr(const T &x)
Definition: templates.hh:145
double G4double
Definition: G4Types.hh:76
virtual void EndOfEvent(G4HCofThisEvent *HCE)
Definition: RE05MuonSD.cc:101
void SetPos(G4ThreeVector xyz)
Definition: RE05MuonHit.hh:73
virtual ~RE05MuonSD()
Definition: RE05MuonSD.cc:54
static const G4double pos
virtual void PrintAll()
Definition: RE05MuonSD.cc:116