Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
B4cCalorHit.hh
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: B4cCalorHit.hh 69223 2013-04-23 12:36:10Z gcosmo $
27 //
28 /// \file B4cCalorHit.hh
29 /// \brief Definition of the B4cCalorHit class
30 
31 #ifndef B4cCalorHit_h
32 #define B4cCalorHit_h 1
33 
34 #include "G4VHit.hh"
35 #include "G4THitsCollection.hh"
36 #include "G4Allocator.hh"
37 #include "G4ThreeVector.hh"
38 #include "tls.hh"
39 
40 /// Calorimeter hit class
41 ///
42 /// It defines data members to store the the energy deposit and track lengths
43 /// of charged particles in a selected volume:
44 /// - fEdep, fTrackLength
45 
46 class B4cCalorHit : public G4VHit
47 {
48  public:
49  B4cCalorHit();
50  B4cCalorHit(const B4cCalorHit&);
51  virtual ~B4cCalorHit();
52 
53  // operators
54  const B4cCalorHit& operator=(const B4cCalorHit&);
55  G4int operator==(const B4cCalorHit&) const;
56 
57  inline void* operator new(size_t);
58  inline void operator delete(void*);
59 
60  // methods from base class
61  virtual void Draw() {}
62  virtual void Print();
63 
64  // methods to handle data
65  void Add(G4double de, G4double dl);
66 
67  // get methods
68  G4double GetEdep() const;
69  G4double GetTrackLength() const;
70 
71  private:
72  G4double fEdep; ///< Energy deposit in the sensitive volume
73  G4double fTrackLength; ///< Track length in the sensitive volume
74 };
75 
76 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
77 
79 
81 
82 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
83 
84 inline void* B4cCalorHit::operator new(size_t)
85 {
88  void *hit;
89  hit = (void *) B4cCalorHitAllocator->MallocSingle();
90  return hit;
91 }
92 
93 inline void B4cCalorHit::operator delete(void *hit)
94 {
97  B4cCalorHitAllocator->FreeSingle((B4cCalorHit*) hit);
98 }
99 
100 inline void B4cCalorHit::Add(G4double de, G4double dl) {
101  fEdep += de;
102  fTrackLength += dl;
103 }
104 
106  return fEdep;
107 }
108 
110  return fTrackLength;
111 }
112 
113 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
114 
115 #endif
const B4cCalorHit & operator=(const B4cCalorHit &)
Definition: B4cCalorHit.cc:65
G4double GetTrackLength() const
Definition: B4cCalorHit.hh:109
void Add(G4double de, G4double dl)
Definition: B4cCalorHit.hh:100
G4THitsCollection< B4cCalorHit > B4cCalorHitsCollection
Definition: B4cCalorHit.hh:78
Definition: G4VHit.hh:48
#define G4ThreadLocal
Definition: tls.hh:52
int G4int
Definition: G4Types.hh:78
G4double GetEdep() const
Definition: B4cCalorHit.hh:105
G4ThreadLocal G4Allocator< B4cCalorHit > * B4cCalorHitAllocator
Definition: B4cCalorHit.cc:40
virtual void Draw()
Definition: B4cCalorHit.hh:61
G4int operator==(const B4cCalorHit &) const
Definition: B4cCalorHit.cc:75
virtual ~B4cCalorHit()
Definition: B4cCalorHit.cc:52
double G4double
Definition: G4Types.hh:76
virtual void Print()
Definition: B4cCalorHit.cc:82