Geant4.10
 All Data Structures 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 66526 2012-12-19 13:41:33Z ihrivnac $
27 //
28 /// \file RE05/src/RE05MuonSD.cc
29 /// \brief Implementation of the RE05MuonSD class
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 
43 {
44  G4String HCname;
45  collectionName.insert(HCname="muonCollection");
46  positionResolution = 5*cm;
47 }
48 
50 
52 {
53  static int HCID = -1;
54  muonCollection = new RE05MuonHitsCollection
56  if(HCID<0)
57  { HCID = GetCollectionID(0); }
58  HCE->AddHitsCollection(HCID,muonCollection);
59 }
60 
62 {
63  G4double edep = aStep->GetTotalEnergyDeposit();
64 
65  if(edep==0.) return true;
66 
67  RE05MuonHit* aHit;
68  int nHit = muonCollection->entries();
69  G4ThreeVector hitpos = aStep->GetPreStepPoint()->GetPosition();
70  for(int i=0;i<nHit;i++)
71  {
72  aHit = (*muonCollection)[i];
73  G4ThreeVector pos = aHit->GetPos();
74  G4double dist2 = sqr(pos.x()-hitpos.x())
75  +sqr(pos.y()-hitpos.y())+sqr(pos.z()-hitpos.z());
76  if(dist2<=sqr(positionResolution))
77  aHit->AddEdep(edep);
78  return true;
79  }
80 
81  aHit = new RE05MuonHit();
82  aHit->SetEdep( edep );
83  aHit->SetPos( aStep->GetPreStepPoint()->GetPosition() );
84  muonCollection->insert( aHit );
85 
86  return true;
87 }
88 
90 {;}
91 
93 {
94 }
95 
97 {
98 }
99 
101 {
102 }
103 
virtual void clear()
Definition: RE05MuonSD.cc:92
double x() const
Definition of the RE05MuonHit class.
virtual G4bool ProcessHits(G4Step *aStep, G4TouchableHistory *ROhist)
Definition: RE05MuonSD.cc:61
const XML_Char * name
double z() const
virtual G4int GetCollectionID(G4int i)
G4StepPoint * GetPreStepPoint() const
const G4ThreeVector & GetPosition() const
bool G4bool
Definition: G4Types.hh:79
void SetEdep(G4double de)
Definition: RE05MuonHit.hh:68
Definition: G4Step.hh:76
Definition of the RE05MuonSD class.
virtual void DrawAll()
Definition: RE05MuonSD.cc:96
G4double GetTotalEnergyDeposit() const
void AddHitsCollection(G4int HCID, G4VHitsCollection *aHC)
void AddEdep(G4double de)
Definition: RE05MuonHit.hh:70
G4THitsCollection< RE05MuonHit > RE05MuonHitsCollection
Definition: RE05MuonHit.hh:81
double y() const
RE05MuonSD(G4String name)
Definition: RE05MuonSD.cc:41
G4ThreeVector GetPos()
Definition: RE05MuonHit.hh:76
virtual void Initialize(G4HCofThisEvent *HCE)
Definition: RE05MuonSD.cc:51
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:89
void SetPos(G4ThreeVector xyz)
Definition: RE05MuonHit.hh:74
virtual ~RE05MuonSD()
Definition: RE05MuonSD.cc:49
virtual void PrintAll()
Definition: RE05MuonSD.cc:100