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 // $Id: GammaRayTelTrackerHit.cc,v 1.4 2006/06/29 15:57:07 gunter Exp $ >> 28 // GEANT4 tag $Name: geant4-08-01-patch-01 $ 27 // ------------------------------------------- 29 // ------------------------------------------------------------ 28 // GEANT 4 class implementation file 30 // GEANT 4 class implementation file 29 // CERN Geneva Switzerland 31 // CERN Geneva Switzerland 30 // 32 // 31 // 33 // 32 // ------------ GammaRayTelTrackerHit --- << 34 // ------------ GammaRayTelTrackerHit ------ 33 // by R.Giannitrapani, F.Longo & G.S 35 // by R.Giannitrapani, F.Longo & G.Santin (13 nov 2000) 34 // 36 // 35 // ******************************************* 37 // ************************************************************ 36 38 >> 39 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... >> 40 37 #include "GammaRayTelTrackerHit.hh" 41 #include "GammaRayTelTrackerHit.hh" 38 42 >> 43 G4Allocator<GammaRayTelTrackerHit> GammaRayTelTrackerHitAllocator; >> 44 39 //....oooOO0OOooo........oooOO0OOooo........oo 45 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 40 46 41 G4ThreadLocal G4Allocator<GammaRayTelTrackerHi << 47 GammaRayTelTrackerHit::GammaRayTelTrackerHit() >> 48 { >> 49 EdepSil = 0.; >> 50 NStrip = 0; NSilPlane = 0; IsXPlane = 0; >> 51 pos = 0.; >> 52 } 42 53 43 //....oooOO0OOooo........oooOO0OOooo........oo 54 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 44 55 45 GammaRayTelTrackerHit::GammaRayTelTrackerHit() << 56 GammaRayTelTrackerHit::~GammaRayTelTrackerHit() 46 } << 57 {;} 47 58 48 //....oooOO0OOooo........oooOO0OOooo........oo 59 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 49 60 50 GammaRayTelTrackerHit::~GammaRayTelTrackerHit( << 61 GammaRayTelTrackerHit::GammaRayTelTrackerHit(const GammaRayTelTrackerHit& right) >> 62 :G4VHit() >> 63 { >> 64 EdepSil = right.EdepSil; >> 65 NStrip = right.NStrip; NSilPlane = right.NSilPlane; >> 66 IsXPlane = right.IsXPlane; >> 67 pos = right.pos; 51 } 68 } 52 69 53 //....oooOO0OOooo........oooOO0OOooo........oo 70 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 54 71 55 GammaRayTelTrackerHit::GammaRayTelTrackerHit(c << 72 const GammaRayTelTrackerHit& GammaRayTelTrackerHit::operator=(const GammaRayTelTrackerHit& right) 56 stripNumber = right.stripNumber; << 73 { 57 siliconPlaneNumber = right.siliconPlaneNum << 74 EdepSil = right.EdepSil; 58 isXPlane = right.isXPlane; << 75 NStrip = right.NStrip; NSilPlane = right.NSilPlane; 59 siliconDepositedEnergy = right.siliconDepo << 76 IsXPlane = right.IsXPlane; 60 position = right.position; << 77 pos =right.pos; >> 78 return *this; 61 } 79 } 62 80 63 //....oooOO0OOooo........oooOO0OOooo........oo 81 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 64 82 65 auto GammaRayTelTrackerHit::operator=(const Ga << 83 int GammaRayTelTrackerHit::operator==(const GammaRayTelTrackerHit& right) const 66 stripNumber = right.stripNumber; << 84 { 67 siliconPlaneNumber = right.siliconPlaneNum << 85 return((EdepSil==right.EdepSil)&&(NStrip==right.NStrip)&&(IsXPlane==right.IsXPlane)&& (pos==right.pos)); 68 isXPlane = right.isXPlane; << 69 siliconDepositedEnergy = right.siliconDepo << 70 position = right.position; << 71 << 72 return *this; << 73 } 86 } 74 87 75 //....oooOO0OOooo........oooOO0OOooo........oo 88 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 76 89 77 auto GammaRayTelTrackerHit::operator==(const G << 90 void GammaRayTelTrackerHit::Draw() 78 return ( << 91 {;} 79 (stripNumber == right.stripNumber) && << 80 (isXPlane == right.isXPlane) && << 81 (siliconDepositedEnergy == right.silic << 82 (position == right.position) << 83 ); << 84 } << 85 92 86 //....oooOO0OOooo........oooOO0OOooo........oo 93 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 87 94 88 void GammaRayTelTrackerHit::Draw() { << 95 void GammaRayTelTrackerHit::Print() 89 } << 96 {;} 90 97 91 //....oooOO0OOooo........oooOO0OOooo........oo 98 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 92 99 93 void GammaRayTelTrackerHit::Print() { << 100 94 } << 101 >> 102 >> 103 >> 104 >> 105 >> 106 >> 107 >> 108 >> 109 95 110