ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
B5HodoscopeHit.hh
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file B5HodoscopeHit.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 B5HodoscopeHit_h
31 #define B5HodoscopeHit_h 1
32 
33 #include "G4VHit.hh"
34 #include "G4THitsCollection.hh"
35 #include "G4Allocator.hh"
36 #include "G4ThreeVector.hh"
37 #include "G4LogicalVolume.hh"
38 #include "G4Transform3D.hh"
39 #include "G4RotationMatrix.hh"
40 
41 class G4AttDef;
42 class G4AttValue;
43 
50 
51 class B5HodoscopeHit : public G4VHit
52 {
53  public:
56  virtual ~B5HodoscopeHit();
57 
58  const B5HodoscopeHit& operator=(const B5HodoscopeHit &right);
59  G4bool operator==(const B5HodoscopeHit &right) const;
60 
61  inline void *operator new(size_t);
62  inline void operator delete(void*aHit);
63 
64  void Draw();
65  virtual const std::map<G4String,G4AttDef>* GetAttDefs() const;
66  virtual std::vector<G4AttValue>* CreateAttValues() const;
67  void Print();
68 
69  G4int GetID() const { return fId; }
70 
71  void SetTime(G4double val) { fTime = val; }
72  G4double GetTime() const { return fTime; }
73 
74  void SetPos(G4ThreeVector xyz) { fPos = xyz; }
75  G4ThreeVector GetPos() const { return fPos; }
76 
77  void SetRot(G4RotationMatrix rmat) { fRot = rmat; }
78  G4RotationMatrix GetRot() const { return fRot; }
79 
80  void SetLogV(G4LogicalVolume* val) { fPLogV = val; }
81  const G4LogicalVolume* GetLogV() const { return fPLogV; }
82 
83  private:
89 };
90 
92 
94 
95 inline void* B5HodoscopeHit::operator new(size_t)
96 {
99  }
100  return (void*)B5HodoscopeHitAllocator->MallocSingle();
101 }
102 
103 inline void B5HodoscopeHit::operator delete(void*aHit)
104 {
105  B5HodoscopeHitAllocator->FreeSingle((B5HodoscopeHit*) aHit);
106 }
107 
108 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
109 
110 #endif