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 /// \file optical/wls/src/WLSPhotonDetHit.cc << 28 /// \brief Implementation of the WLSPhotonDetH << 29 // 27 // 30 // << 31 #include "WLSPhotonDetHit.hh" << 32 << 33 #include "G4UnitsTable.hh" << 34 28 35 G4ThreadLocal G4Allocator<WLSPhotonDetHit>* WL << 29 #include "WLSPhotonDetHit.hh" 36 30 37 //....oooOO0OOooo........oooOO0OOooo........oo << 31 G4Allocator<WLSPhotonDetHit> WLSPhotonDetHitAllocator; 38 32 39 WLSPhotonDetHit::WLSPhotonDetHit() 33 WLSPhotonDetHit::WLSPhotonDetHit() 40 { 34 { 41 fPosArrive = G4ThreeVector(0., 0., 0.); << 35 posExit = G4ThreeVector(0., 0., 0.); 42 fPosExit = G4ThreeVector(0., 0., 0.); << 36 posArrive = G4ThreeVector(0., 0., 0.); >> 37 arrivalTime = 0.; 43 } 38 } 44 39 45 //....oooOO0OOooo........oooOO0OOooo........oo << 40 WLSPhotonDetHit::WLSPhotonDetHit(G4ThreeVector pExit, 46 << 41 G4ThreeVector pArrive, 47 WLSPhotonDetHit::WLSPhotonDetHit(G4ThreeVector << 42 G4double pTime) 48 G4double pEne << 49 { 43 { 50 fPosExit = pExit; << 44 posExit = pExit; 51 fPosArrive = pArrive; << 45 posArrive = pArrive; 52 fArrivalTime = pTime; << 46 arrivalTime = pTime; 53 fEnergy = pEnergy; << 54 } 47 } 55 48 56 //....oooOO0OOooo........oooOO0OOooo........oo << 49 WLSPhotonDetHit::~WLSPhotonDetHit() { } 57 50 58 WLSPhotonDetHit::WLSPhotonDetHit(const WLSPhot << 51 WLSPhotonDetHit::WLSPhotonDetHit(const WLSPhotonDetHit &right) >> 52 : G4VHit() 59 { 53 { 60 *this = right; 54 *this = right; 61 } 55 } 62 56 63 //....oooOO0OOooo........oooOO0OOooo........oo << 57 const WLSPhotonDetHit& WLSPhotonDetHit::operator=(const WLSPhotonDetHit &right) 64 << 65 const WLSPhotonDetHit& WLSPhotonDetHit::operat << 66 { 58 { 67 fPosExit = right.fPosExit; << 59 posExit = right.posExit; 68 fPosArrive = right.fPosArrive; << 60 posArrive = right.posArrive; 69 fArrivalTime = right.fArrivalTime; << 61 arrivalTime = right.arrivalTime; 70 fEnergy = right.fEnergy; << 71 62 72 return *this; 63 return *this; 73 } 64 } 74 65 75 //....oooOO0OOooo........oooOO0OOooo........oo << 66 G4int WLSPhotonDetHit::operator==(const WLSPhotonDetHit& right) const 76 << 77 G4bool WLSPhotonDetHit::operator==(const WLSPh << 78 { 67 { 79 return fPosExit == right.fPosExit && fPosArr << 68 return posExit == right.posExit && 80 && fArrivalTime == right.fArrivalTime << 69 posArrive == right.posArrive && >> 70 arrivalTime == right.arrivalTime; 81 } 71 } 82 72 83 void WLSPhotonDetHit::Print() << 73 void WLSPhotonDetHit::Draw(){ } 84 { << 74 85 G4cout << "Arrival time: " << std::setw(7) < << 75 void WLSPhotonDetHit::Print(){ } 86 << "Arrival position: (" << std::setw << 87 << std::setw(7) << G4BestUnit(fPosArr << 88 << "Exit position: (" << std::setw(7) << 89 << std::setw(7) << G4BestUnit(fPosExi << 90 << "Energy: " << std::setw(7) << G4Be << 91 } << 92 76