Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
RE05CalorimeterSD.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: RE05CalorimeterSD.cc 69920 2013-05-17 13:36:37Z gcosmo $
27 //
28 /// \file RE05/src/RE05CalorimeterSD.cc
29 /// \brief Implementation of the RE05CalorimeterSD class
30 //
31 
32 #include "RE05CalorimeterSD.hh"
33 #include "RE05CalorimeterHit.hh"
34 #include "G4VPhysicalVolume.hh"
35 #include "G4LogicalVolume.hh"
36 #include "G4Track.hh"
37 #include "G4Step.hh"
38 #include "G4ParticleDefinition.hh"
39 #include "G4VTouchable.hh"
40 #include "G4TouchableHistory.hh"
41 #include "G4SystemOfUnits.hh"
42 #include "G4ios.hh"
43 
44 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
45 
48  numberOfCellsInZ(20),numberOfCellsInPhi(48)
49 {
50  G4String HCname;
51  collectionName.insert(HCname="calCollection");
52 }
53 
54 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
55 
57 {;}
58 
60 {
61  CalCollection = new RE05CalorimeterHitsCollection
63  for(G4int j=0;j<numberOfCellsInZ;j++)
64  for(G4int k=0;k<numberOfCellsInPhi;k++)
65  {
66  CellID[j][k] = -1;
67  }
68  verboseLevel = 0;
69 }
70 
71 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
72 
74 {
75 //***** RE05CalorimeterSD has been migrated to Geant4 version 10 that does not
76 //***** support Readout Geometry in multi-threaded mode. Now RE05CalorimeterSD
77 //***** is assigned to a dedicaed parallel world. The pointer "aStep" points to
78 //***** a G4Step object for the parallel world.
79 
80  G4double edep = aStep->GetTotalEnergyDeposit();
81  if(verboseLevel>1) G4cout << "Next step edep(MeV) = " << edep/MeV << G4endl;
82  if(edep==0.) return false;
83 
84  const G4VTouchable* touchable = aStep->GetPreStepPoint()->GetTouchable();
85  G4int copyIDinZ = touchable->GetReplicaNumber(0);
86  G4int copyIDinPhi = touchable->GetReplicaNumber(1);
87 
88  if(CellID[copyIDinZ][copyIDinPhi]==-1)
89  {
90  RE05CalorimeterHit* calHit
91  = new RE05CalorimeterHit
92  (touchable->GetVolume()->GetLogicalVolume(),copyIDinZ,copyIDinPhi);
93  calHit->SetEdep( edep );
94  G4AffineTransform aTrans = touchable->GetHistory()->GetTopTransform();
95  aTrans.Invert();
96  calHit->SetPos(aTrans.NetTranslation());
97  calHit->SetRot(aTrans.NetRotation());
98  G4int icell = CalCollection->insert( calHit );
99  CellID[copyIDinZ][copyIDinPhi] = icell - 1;
100  if(verboseLevel>0)
101  { G4cout << " New Calorimeter Hit on CellID "
102  << copyIDinZ << " " << copyIDinPhi << G4endl; }
103  }
104  else
105  {
106  (*CalCollection)[CellID[copyIDinZ][copyIDinPhi]]->AddEdep(edep);
107  if(verboseLevel>0)
108  { G4cout << " Energy added to CellID "
109  << copyIDinZ << " " << copyIDinPhi << G4endl; }
110  }
111 
112  return true;
113 }
114 
115 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
116 
118 {
119  static G4int HCID = -1;
120  if(HCID<0)
121  { HCID = GetCollectionID(0); }
122  HCE->AddHitsCollection( HCID, CalCollection );
123 }
124 
126 {
127 }
128 
130 {
131 }
132 
134 {
135 }
136 
void SetRot(G4RotationMatrix rmat)
Definition of the RE05CalorimeterHit class.
virtual void Initialize(G4HCofThisEvent *HCE)
G4ThreeVector NetTranslation() const
const XML_Char * name
virtual const G4NavigationHistory * GetHistory() const
Definition: G4VTouchable.cc:86
G4THitsCollection< RE05CalorimeterHit > RE05CalorimeterHitsCollection
const G4VTouchable * GetTouchable() const
void SetEdep(G4double de)
int G4int
Definition: G4Types.hh:78
virtual G4int GetCollectionID(G4int i)
G4StepPoint * GetPreStepPoint() const
G4AffineTransform & Invert()
G4GLOB_DLL std::ostream G4cout
void SetPos(G4ThreeVector xyz)
bool G4bool
Definition: G4Types.hh:79
Definition: G4Step.hh:76
virtual ~RE05CalorimeterSD()
G4double GetTotalEnergyDeposit() const
void AddHitsCollection(G4int HCID, G4VHitsCollection *aHC)
virtual void clear()
G4RotationMatrix NetRotation() const
G4LogicalVolume * GetLogicalVolume() const
virtual G4bool ProcessHits(G4Step *aStep, G4TouchableHistory *ROhist)
virtual G4VPhysicalVolume * GetVolume(G4int depth=0) const
Definition: G4VTouchable.cc:44
RE05CalorimeterSD(G4String name)
virtual G4int GetReplicaNumber(G4int depth=0) const
Definition: G4VTouchable.cc:58
virtual void PrintAll()
#define G4endl
Definition: G4ios.hh:61
const G4AffineTransform & GetTopTransform() const
G4CollectionNameVector collectionName
double G4double
Definition: G4Types.hh:76
virtual void DrawAll()
virtual void EndOfEvent(G4HCofThisEvent *HCE)
Definition of the RE05CalorimeterSD class.