Geant4  10.03.p03
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
B5DriftChamberHit.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: B5DriftChamberHit.hh 101036 2016-11-04 09:00:23Z gcosmo $
27 //
30 
31 #ifndef B5DriftChamberHit_h
32 #define B5DriftChamberHit_h 1
33 
34 #include "G4VHit.hh"
35 #include "G4THitsCollection.hh"
36 #include "G4Allocator.hh"
37 #include "G4ThreeVector.hh"
38 #include "G4LogicalVolume.hh"
39 #include "G4Transform3D.hh"
40 #include "G4RotationMatrix.hh"
41 
42 class G4AttDef;
43 class G4AttValue;
44 
51 
52 class B5DriftChamberHit : public G4VHit
53 {
54  public:
56  B5DriftChamberHit(G4int layerID);
58  virtual ~B5DriftChamberHit();
59 
60  const B5DriftChamberHit& operator=(const B5DriftChamberHit &right);
61  int operator==(const B5DriftChamberHit &right) const;
62 
63  inline void *operator new(size_t);
64  inline void operator delete(void *aHit);
65 
66  virtual void Draw();
67  virtual const std::map<G4String,G4AttDef>* GetAttDefs() const;
68  virtual std::vector<G4AttValue>* CreateAttValues() const;
69  virtual void Print();
70 
71  void SetLayerID(G4int z) { fLayerID = z; }
72  G4int GetLayerID() const { return fLayerID; }
73 
74  void SetTime(G4double t) { fTime = t; }
75  G4double GetTime() const { return fTime; }
76 
77  void SetLocalPos(G4ThreeVector xyz) { fLocalPos = xyz; }
78  G4ThreeVector GetLocalPos() const { return fLocalPos; }
79 
80  void SetWorldPos(G4ThreeVector xyz) { fWorldPos = xyz; }
81  G4ThreeVector GetWorldPos() const { return fWorldPos; }
82 
83  private:
84  G4int fLayerID;
85  G4double fTime;
86  G4ThreeVector fLocalPos;
87  G4ThreeVector fWorldPos;
88 };
89 
91 
93 
94 inline void* B5DriftChamberHit::operator new(size_t)
95 {
98  }
99  return (void*)B5DriftChamberHitAllocator->MallocSingle();
100 }
101 
102 inline void B5DriftChamberHit::operator delete(void* aHit)
103 {
104  B5DriftChamberHitAllocator->FreeSingle((B5DriftChamberHit*) aHit);
105 }
106 
107 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
108 
109 #endif
virtual void Draw()
virtual const std::map< G4String, G4AttDef > * GetAttDefs() const
G4ThreeVector GetWorldPos() const
int operator==(const B5DriftChamberHit &right) const
Definition: G4VHit.hh:48
virtual ~B5DriftChamberHit()
void SetTime(G4double t)
void SetLocalPos(G4ThreeVector xyz)
virtual std::vector< G4AttValue > * CreateAttValues() const
#define G4ThreadLocal
Definition: tls.hh:89
int G4int
Definition: G4Types.hh:78
void SetWorldPos(G4ThreeVector xyz)
G4ThreeVector GetLocalPos() const
virtual void Print()
const B5DriftChamberHit & operator=(const B5DriftChamberHit &right)
G4double GetTime() const
tuple z
Definition: test.py:28
double G4double
Definition: G4Types.hh:76
G4ThreadLocal G4Allocator< B5DriftChamberHit > * B5DriftChamberHitAllocator
G4int GetLayerID() const
void SetLayerID(G4int z)