ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
B4cCalorHit.hh
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file B4cCalorHit.hh
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 //
29 
30 #ifndef B4cCalorHit_h
31 #define B4cCalorHit_h 1
32 
33 #include "G4VHit.hh"
34 #include "G4THitsCollection.hh"
35 #include "G4Allocator.hh"
36 #include "G4ThreeVector.hh"
37 #include "G4Threading.hh"
38 
44 
45 class B4cCalorHit : public G4VHit
46 {
47  public:
48  B4cCalorHit();
49  B4cCalorHit(const B4cCalorHit&);
50  virtual ~B4cCalorHit();
51 
52  // operators
53  const B4cCalorHit& operator=(const B4cCalorHit&);
54  G4bool operator==(const B4cCalorHit&) const;
55 
56  inline void* operator new(size_t);
57  inline void operator delete(void*);
58 
59  // methods from base class
60  virtual void Draw() {}
61  virtual void Print();
62 
63  // methods to handle data
64  void Add(G4double de, G4double dl);
65 
66  // get methods
67  G4double GetEdep() const;
68  G4double GetTrackLength() const;
69 
70  private:
73 };
74 
75 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
76 
78 
80 
81 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
82 
83 inline void* B4cCalorHit::operator new(size_t)
84 {
85  if (!B4cCalorHitAllocator) {
87  }
88  void *hit;
89  hit = (void *) B4cCalorHitAllocator->MallocSingle();
90  return hit;
91 }
92 
93 inline void B4cCalorHit::operator delete(void *hit)
94 {
95  if (!B4cCalorHitAllocator) {
97  }
98  B4cCalorHitAllocator->FreeSingle((B4cCalorHit*) hit);
99 }
100 
101 inline void B4cCalorHit::Add(G4double de, G4double dl) {
102  fEdep += de;
103  fTrackLength += dl;
104 }
105 
107  return fEdep;
108 }
109 
111  return fTrackLength;
112 }
113 
114 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
115 
116 #endif