Loading...
Searching...
No Matches
HodoscopeHit.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//
27/// \file B5/include/HodoscopeHit.hh
28/// \brief Definition of the B5::HodoscopeHit class
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
41class G4AttDef;
42class G4AttValue;
43
44namespace B5
45{
46
47/// Hodoscope hit
48///
49/// It records:
50/// - the strip ID
51/// - the particle time
52/// - the strip logical volume, its position and rotation
53
54class HodoscopeHit : public G4VHit
55{
56 public:
57 HodoscopeHit(G4int i,G4double t);
58 HodoscopeHit(const HodoscopeHit &right) = default;
59 ~HodoscopeHit() override = default;
60
62 G4bool operator==(const HodoscopeHit &right) const;
63
64 inline void *operator new(size_t);
65 inline void operator delete(void*aHit);
66
67 void Draw() override;
68 const std::map<G4String,G4AttDef>* GetAttDefs() const override;
69 std::vector<G4AttValue>* CreateAttValues() const override;
70 void Print() override;
71
72 G4int GetID() const { return fId; }
73
74 void SetTime(G4double val) { fTime = val; }
75 G4double GetTime() const { return fTime; }
76
77 void SetPos(G4ThreeVector xyz) { fPos = xyz; }
78 G4ThreeVector GetPos() const { return fPos; }
79
80 void SetRot(G4RotationMatrix rmat) { fRot = rmat; }
81 G4RotationMatrix GetRot() const { return fRot; }
82
83 void SetLogV(G4LogicalVolume* val) { fPLogV = val; }
84 const G4LogicalVolume* GetLogV() const { return fPLogV; }
85
86 private:
87 G4int fId = -1;
88 G4double fTime = 0.;
89 G4ThreeVector fPos;
90 G4RotationMatrix fRot;
91 const G4LogicalVolume* fPLogV = nullptr;
92};
93
95
97
98inline void* HodoscopeHit::operator new(size_t)
99{
102 }
103 return (void*)HodoscopeHitAllocator->MallocSingle();
104}
105
106inline void HodoscopeHit::operator delete(void*aHit)
107{
108 HodoscopeHitAllocator->FreeSingle((HodoscopeHit*) aHit);
109}
110
111}
112
113//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
114
115#endif
HodoscopeHit & operator=(const HodoscopeHit &right)=default
G4bool operator==(const HodoscopeHit &right) const
G4ThreeVector fPos
HodoscopeHit(G4int i, G4double t)
std::vector< G4AttValue > * CreateAttValues() const override
void SetPos(G4ThreeVector xyz)
G4RotationMatrix GetRot() const
void Draw() override
const G4LogicalVolume * fPLogV
void SetRot(G4RotationMatrix rmat)
const G4LogicalVolume * GetLogV() const
void Print() override
void SetTime(G4double val)
G4ThreeVector GetPos() const
G4RotationMatrix fRot
void SetLogV(G4LogicalVolume *val)
const std::map< G4String, G4AttDef > * GetAttDefs() const override
G4double GetTime() const
G4int GetID() const
HodoscopeHit(const HodoscopeHit &right)=default
~HodoscopeHit() override=default
G4ThreadLocal G4Allocator< HodoscopeHit > * HodoscopeHitAllocator
G4THitsCollection< HodoscopeHit > HodoscopeHitsCollection

Applications | User Support | Publications | Collaboration