Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 // 26 // 27 27 28 // ******************************************* 28 // ******************************************************************** 29 // 29 // 30 // CaTS (Calorimetry and Tracking Simulation) 30 // CaTS (Calorimetry and Tracking Simulation) 31 // 31 // 32 // Authors : Hans Wenzel 32 // Authors : Hans Wenzel 33 // Soon Yung Jun 33 // Soon Yung Jun 34 // (Fermi National Accelerator Labo 34 // (Fermi National Accelerator Laboratory) 35 // 35 // 36 // History 36 // History 37 // October 18th, 2021 : first implementation 37 // October 18th, 2021 : first implementation 38 // 38 // 39 // ******************************************* 39 // ******************************************************************** 40 // 40 // 41 /// \file lArTPCHit.hh 41 /// \file lArTPCHit.hh 42 /// \brief Definition of the CaTS::lArTPCHit c 42 /// \brief Definition of the CaTS::lArTPCHit class 43 43 44 #pragma once 44 #pragma once 45 45 46 #include "G4VHit.hh" 46 #include "G4VHit.hh" 47 #include "G4THitsCollection.hh" 47 #include "G4THitsCollection.hh" 48 #include "G4Allocator.hh" 48 #include "G4Allocator.hh" 49 #include "G4Types.hh" 49 #include "G4Types.hh" 50 #include "G4ios.hh" 50 #include "G4ios.hh" 51 51 52 class lArTPCHit : public G4VHit 52 class lArTPCHit : public G4VHit 53 { 53 { 54 public: 54 public: 55 lArTPCHit(); 55 lArTPCHit(); 56 ~lArTPCHit() = default; 56 ~lArTPCHit() = default; 57 lArTPCHit(G4double fe, G4double fx, G4double 57 lArTPCHit(G4double fe, G4double fx, G4double fy, G4double fz); 58 lArTPCHit(const lArTPCHit&); 58 lArTPCHit(const lArTPCHit&); 59 const lArTPCHit& operator=(const lArTPCHit&) 59 const lArTPCHit& operator=(const lArTPCHit&); 60 G4bool operator==(const lArTPCHit&) const; 60 G4bool operator==(const lArTPCHit&) const; 61 inline void* operator new(size_t); 61 inline void* operator new(size_t); 62 inline void operator delete(void*); 62 inline void operator delete(void*); 63 void Draw() final; 63 void Draw() final; 64 inline void Print() final 64 inline void Print() final 65 { 65 { 66 G4cout << "lArTPCHit Nr. of electrons: " < 66 G4cout << "lArTPCHit Nr. of electrons: " << fElectrons 67 << " x position [mm]: " << fPosX < 67 << " x position [mm]: " << fPosX << " y position [mm]: " << fPosY 68 << " z position [mm]: " << fPosZ < 68 << " z position [mm]: " << fPosZ << G4endl; 69 } 69 } 70 70 71 void SetElectrons(G4double de) { fElectrons 71 void SetElectrons(G4double de) { fElectrons = de; }; 72 void SetPosX(G4double x) { fPosX = x; }; 72 void SetPosX(G4double x) { fPosX = x; }; 73 void SetPosY(G4double y) { fPosY = y; }; 73 void SetPosY(G4double y) { fPosY = y; }; 74 void SetPosZ(G4double z) { fPosZ = z; }; 74 void SetPosZ(G4double z) { fPosZ = z; }; 75 G4double GetEdep() { return fElectrons; }; 75 G4double GetEdep() { return fElectrons; }; 76 G4double GetPosX() { return fPosX; }; 76 G4double GetPosX() { return fPosX; }; 77 G4double GetPosY() { return fPosY; }; 77 G4double GetPosY() { return fPosY; }; 78 G4double GetPosZ() { return fPosZ; }; 78 G4double GetPosZ() { return fPosZ; }; 79 79 80 private: 80 private: 81 G4double fElectrons{ 0 }; 81 G4double fElectrons{ 0 }; 82 G4double fPosX{ 0 }; 82 G4double fPosX{ 0 }; 83 G4double fPosY{ 0 }; 83 G4double fPosY{ 0 }; 84 G4double fPosZ{ 0 }; 84 G4double fPosZ{ 0 }; 85 }; 85 }; 86 86 87 using lArTPCHitsCollection = G4THitsCollection 87 using lArTPCHitsCollection = G4THitsCollection<lArTPCHit>; 88 extern G4ThreadLocal G4Allocator<lArTPCHit>* l 88 extern G4ThreadLocal G4Allocator<lArTPCHit>* lArTPCHitAllocator; 89 89 90 inline void* lArTPCHit::operator new(size_t) 90 inline void* lArTPCHit::operator new(size_t) 91 { 91 { 92 if(!lArTPCHitAllocator) 92 if(!lArTPCHitAllocator) 93 { 93 { 94 lArTPCHitAllocator = new G4Allocator<lArTP 94 lArTPCHitAllocator = new G4Allocator<lArTPCHit>; 95 } 95 } 96 return (void*) lArTPCHitAllocator->MallocSin 96 return (void*) lArTPCHitAllocator->MallocSingle(); 97 } 97 } 98 98 99 inline void lArTPCHit::operator delete(void* a 99 inline void lArTPCHit::operator delete(void* aHit) 100 { 100 { 101 lArTPCHitAllocator->FreeSingle((lArTPCHit*) 101 lArTPCHitAllocator->FreeSingle((lArTPCHit*) aHit); 102 } 102 } 103 103