Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
LXeScintHit.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: LXeScintHit.hh 72250 2013-07-12 08:59:26Z gcosmo $
27 //
28 /// \file optical/LXe/include/LXeScintHit.hh
29 /// \brief Definition of the LXeScintHit class
30 //
31 //
32 #ifndef LXeScintHit_h
33 #define LXeScintHit_h 1
34 
35 #include "G4VHit.hh"
36 #include "G4THitsCollection.hh"
37 #include "G4Allocator.hh"
38 #include "G4ThreeVector.hh"
39 #include "G4LogicalVolume.hh"
40 #include "G4Transform3D.hh"
41 #include "G4RotationMatrix.hh"
42 #include "G4VPhysicalVolume.hh"
43 
44 #include "tls.hh"
45 
46 class LXeScintHit : public G4VHit
47 {
48  public:
49 
50  LXeScintHit();
52  virtual ~LXeScintHit();
54  const LXeScintHit& operator=(const LXeScintHit &right);
55  G4int operator==(const LXeScintHit &right) const;
56 
57  inline void *operator new(size_t);
58  inline void operator delete(void *aHit);
59 
60  virtual void Draw();
61  virtual void Print();
62 
63  inline void SetEdep(G4double de) { fEdep = de; }
64  inline void AddEdep(G4double de) { fEdep += de; }
65  inline G4double GetEdep() { return fEdep; }
66 
67  inline void SetPos(G4ThreeVector xyz) { fPos = xyz; }
68  inline G4ThreeVector GetPos() { return fPos; }
69 
70  inline const G4VPhysicalVolume * GetPhysV() { return fPhysVol; }
71 
72  private:
73  G4double fEdep;
74  G4ThreeVector fPos;
75  const G4VPhysicalVolume* fPhysVol;
76 
77 };
78 
80 
82 
83 inline void* LXeScintHit::operator new(size_t)
84 {
87  return (void *) LXeScintHitAllocator->MallocSingle();
88 }
89 
90 inline void LXeScintHit::operator delete(void *aHit)
91 {
92  LXeScintHitAllocator->FreeSingle((LXeScintHit*) aHit);
93 }
94 
95 #endif
virtual void Draw()
Definition: LXeScintHit.cc:81
const LXeScintHit & operator=(const LXeScintHit &right)
Definition: LXeScintHit.cc:65
G4ThreadLocal G4Allocator< LXeScintHit > * LXeScintHitAllocator
Definition: LXeScintHit.cc:40
void SetPos(G4ThreeVector xyz)
Definition: LXeScintHit.hh:67
Definition: G4VHit.hh:48
#define G4ThreadLocal
Definition: tls.hh:52
virtual ~LXeScintHit()
Definition: LXeScintHit.cc:52
int G4int
Definition: G4Types.hh:78
void AddEdep(G4double de)
Definition: LXeScintHit.hh:64
void SetEdep(G4double de)
Definition: LXeScintHit.hh:63
G4THitsCollection< LXeScintHit > LXeScintHitsCollection
Definition: LXeScintHit.hh:79
const G4VPhysicalVolume * GetPhysV()
Definition: LXeScintHit.hh:70
G4double GetEdep()
Definition: LXeScintHit.hh:65
G4ThreeVector GetPos()
Definition: LXeScintHit.hh:68
double G4double
Definition: G4Types.hh:76
G4int operator==(const LXeScintHit &right) const
Definition: LXeScintHit.cc:74
virtual void Print()
Definition: LXeScintHit.cc:85