Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
RE05CalorimeterHit.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: RE05CalorimeterHit.hh 69764 2013-05-14 09:59:36Z gcosmo $
27 //
28 /// \file RE05/include/RE05CalorimeterHit.hh
29 /// \brief Definition of the RE05CalorimeterHit class
30 //
31 
32 #ifndef RE05CalorimeterHit_h
33 #define RE05CalorimeterHit_h 1
34 
35 #include "G4VHit.hh"
36 #include "G4THitsCollection.hh"
37 #include "G4Allocator.hh"
38 #include "G4Types.hh"
39 #include "G4ThreeVector.hh"
40 #include "G4LogicalVolume.hh"
41 #include "G4Transform3D.hh"
42 #include "G4RotationMatrix.hh"
43 
44 class G4AttDef;
45 
46 class RE05CalorimeterHit : public G4VHit
47 {
48  public:
49 
52  virtual ~RE05CalorimeterHit();
54  const RE05CalorimeterHit& operator=(const RE05CalorimeterHit &right);
55  G4int operator==(const RE05CalorimeterHit &right) const;
56 
57  inline void *operator new(size_t);
58  inline void operator delete(void *aHit);
59 
60  virtual void Draw();
61  virtual const std::map<G4String,G4AttDef>* GetAttDefs() const;
62  virtual std::vector<G4AttValue>* CreateAttValues() const;
63  virtual void Print();
64 
65  private:
66  G4int ZCellID;
67  G4int PhiCellID;
68  G4double edep;
69  G4ThreeVector pos;
70  G4RotationMatrix rot;
71  const G4LogicalVolume* pLogV;
72  static std::map<G4String,G4AttDef> fAttDefs;
73 
74  public:
75  inline void SetCellID(G4int z,G4int phi)
76  {
77  ZCellID = z;
78  PhiCellID = phi;
79  }
80  inline G4int GetZ() { return ZCellID; }
81  inline G4int GetPhi() { return PhiCellID; }
82  inline void SetEdep(G4double de)
83  { edep = de; }
84  inline void AddEdep(G4double de)
85  { edep += de; }
86  inline G4double GetEdep()
87  { return edep; }
88  inline void SetPos(G4ThreeVector xyz)
89  { pos = xyz; }
91  { return pos; }
92  inline void SetRot(G4RotationMatrix rmat)
93  { rot = rmat; }
95  { return rot; }
96  inline const G4LogicalVolume * GetLogV()
97  { return pLogV; }
98 
99 };
100 
102 
104 
105 inline void* RE05CalorimeterHit::operator new(size_t)
106 {
109  return (void*) RE05CalorimeterHitAllocator->MallocSingle();
110 }
111 
112 inline void RE05CalorimeterHit::operator delete(void *aHit)
113 {
114  RE05CalorimeterHitAllocator->FreeSingle((RE05CalorimeterHit*) aHit);
115 }
116 
117 #endif
118 
119 
void SetRot(G4RotationMatrix rmat)
G4double z
Definition: TRTMaterials.hh:39
G4ThreadLocal G4Allocator< RE05CalorimeterHit > * RE05CalorimeterHitAllocator
Definition: G4VHit.hh:48
const G4LogicalVolume * GetLogV()
G4THitsCollection< RE05CalorimeterHit > RE05CalorimeterHitsCollection
#define G4ThreadLocal
Definition: tls.hh:52
void SetEdep(G4double de)
int G4int
Definition: G4Types.hh:78
void SetCellID(G4int z, G4int phi)
void AddEdep(G4double de)
void SetPos(G4ThreeVector xyz)
G4int operator==(const RE05CalorimeterHit &right) const
virtual std::vector< G4AttValue > * CreateAttValues() const
G4RotationMatrix GetRot()
virtual const std::map< G4String, G4AttDef > * GetAttDefs() const
double G4double
Definition: G4Types.hh:76
G4ThreeVector GetPos()
const RE05CalorimeterHit & operator=(const RE05CalorimeterHit &right)