Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
FCALCalorHit.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: FCALCalorHit.hh 67976 2013-03-13 10:23:17Z gcosmo $
27 //
28 //
29 
30 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
32 
33 #ifndef FCALCalorHit_h
34 #define FCALCalorHit_h 1
35 
36 #include "G4VHit.hh"
37 #include "G4THitsCollection.hh"
38 #include "G4Allocator.hh"
39 
40 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
41 
42 class FCALCalorHit : public G4VHit
43 {
44  public:
45 
46  FCALCalorHit();
47  ~FCALCalorHit();
48  FCALCalorHit(const FCALCalorHit&);
49  const FCALCalorHit& operator=(const FCALCalorHit&);
50  int operator==(const FCALCalorHit&) const;
51 
52  inline void* operator new(size_t);
53  inline void operator delete(void*);
54 
55  void Draw();
56  void Print();
57 
58  public:
59 
60  void AddAbs(G4double de, G4double dl) {EdepAbs += de; TrackLengthAbs += dl;};
61  void AddGap(G4double de, G4double dl) {EdepGap += de; TrackLengthGap += dl;};
62 
63  G4double GetEdepAbs() { return EdepAbs; };
64  G4double GetTrakAbs() { return TrackLengthAbs; };
65  G4double GetEdepGap() { return EdepGap; };
66  G4double GetTrakGap() { return TrackLengthGap; };
67 
68  private:
69 
70  G4double EdepAbs, TrackLengthAbs;
71  G4double EdepGap, TrackLengthGap;
72 
73 };
74 
75 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
76 
78 
80 
81 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
82 
83 inline void* FCALCalorHit::operator new(size_t)
84 {
85  void* aHit;
86  aHit = (void*) FCALCalorHitAllocator.MallocSingle();
87  return aHit;
88 }
89 
90 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
91 
92 inline void FCALCalorHit::operator delete(void* aHit)
93 {
94  FCALCalorHitAllocator.FreeSingle((FCALCalorHit*) aHit);
95 }
96 
97 #endif
98 
99 
Type * MallocSingle()
Definition: G4Allocator.hh:191
int operator==(const FCALCalorHit &) const
Definition: FCALCalorHit.cc:70
void FreeSingle(Type *anElement)
Definition: G4Allocator.hh:201
Definition: G4VHit.hh:48
G4double GetTrakAbs()
Definition: FCALCalorHit.hh:64
G4double GetTrakGap()
Definition: FCALCalorHit.hh:66
G4THitsCollection< FCALCalorHit > FCALCalorHitsCollection
Definition: FCALCalorHit.hh:77
void AddAbs(G4double de, G4double dl)
Definition: FCALCalorHit.hh:60
const FCALCalorHit & operator=(const FCALCalorHit &)
Definition: FCALCalorHit.cc:61
void AddGap(G4double de, G4double dl)
Definition: FCALCalorHit.hh:61
G4double GetEdepGap()
Definition: FCALCalorHit.hh:65
double G4double
Definition: G4Types.hh:76
G4Allocator< FCALCalorHit > FCALCalorHitAllocator
Definition: FCALCalorHit.cc:35
G4double GetEdepAbs()
Definition: FCALCalorHit.hh:63