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: GammaRayTelAnticoincidenceHit.cc,v 1.4 2006/06/29 15:56:12 gunter Exp $ >> 28 // GEANT4 tag $Name: geant4-08-02 $ 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 // ------------ GammaRayTelAnticoincidenc 34 // ------------ GammaRayTelAnticoincidenceHit ------ 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 "GammaRayTelAnticoincidenceHit.hh" 41 #include "GammaRayTelAnticoincidenceHit.hh" 38 42 >> 43 G4Allocator<GammaRayTelAnticoincidenceHit> GammaRayTelAnticoincidenceHitAllocator; >> 44 39 //....oooOO0OOooo........oooOO0OOooo........oo 45 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 40 46 41 G4ThreadLocal G4Allocator<GammaRayTelAnticoinc << 47 GammaRayTelAnticoincidenceHit::GammaRayTelAnticoincidenceHit() >> 48 { >> 49 EdepACD = 0.; >> 50 ACDTileNumber = 0; >> 51 IsACDPlane = 0; >> 52 pos = 0.; >> 53 } 42 54 43 //....oooOO0OOooo........oooOO0OOooo........oo 55 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 44 56 45 GammaRayTelAnticoincidenceHit::GammaRayTelAnti << 57 GammaRayTelAnticoincidenceHit::~GammaRayTelAnticoincidenceHit() 46 } << 58 {;} 47 59 48 //....oooOO0OOooo........oooOO0OOooo........oo 60 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 49 61 50 GammaRayTelAnticoincidenceHit::~GammaRayTelAnt << 62 GammaRayTelAnticoincidenceHit::GammaRayTelAnticoincidenceHit(const GammaRayTelAnticoincidenceHit& right) >> 63 : G4VHit() >> 64 { >> 65 EdepACD = right.EdepACD; >> 66 ACDTileNumber = right.ACDTileNumber; >> 67 IsACDPlane = right.IsACDPlane; >> 68 pos = right.pos; 51 } 69 } 52 70 53 //....oooOO0OOooo........oooOO0OOooo........oo 71 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 54 72 55 GammaRayTelAnticoincidenceHit::GammaRayTelAnti << 73 const GammaRayTelAnticoincidenceHit& GammaRayTelAnticoincidenceHit::operator=(const GammaRayTelAnticoincidenceHit& right) 56 acdTileNumber(right.acdTileNumber), << 74 { 57 isACDPlane(right.isACDPlane), << 75 EdepACD = right.EdepACD; 58 acdDepositedEnergy(right.acdDepositedEnerg << 76 ACDTileNumber = right.ACDTileNumber; 59 position(right.position) { << 77 IsACDPlane = right.IsACDPlane; >> 78 pos = right.pos; >> 79 return *this; 60 } 80 } 61 81 62 //....oooOO0OOooo........oooOO0OOooo........oo 82 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 63 83 64 auto GammaRayTelAnticoincidenceHit::operator=( << 84 int GammaRayTelAnticoincidenceHit::operator==(const GammaRayTelAnticoincidenceHit& right) const 65 acdTileNumber = right.acdTileNumber; << 85 { 66 isACDPlane = right.isACDPlane; << 86 return((EdepACD==right.EdepACD)&&(ACDTileNumber==right.ACDTileNumber)&&(IsACDPlane==right.IsACDPlane)&& (pos==right.pos)); 67 acdDepositedEnergy = right.acdDepositedEne << 68 position = right.position; << 69 << 70 return *this; << 71 } 87 } 72 88 73 //....oooOO0OOooo........oooOO0OOooo........oo 89 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 74 90 75 auto GammaRayTelAnticoincidenceHit::operator== << 91 void GammaRayTelAnticoincidenceHit::Draw() 76 return ( << 92 {;} 77 (acdTileNumber == right.acdTileNumber) && << 78 (isACDPlane == right.isACDPlane) && << 79 (acdDepositedEnergy == right.acdDeposi << 80 (position == right.position) << 81 ); << 82 } << 83 93 84 //....oooOO0OOooo........oooOO0OOooo........oo 94 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 85 95 86 void GammaRayTelAnticoincidenceHit::Draw() { << 96 void GammaRayTelAnticoincidenceHit::Print() 87 } << 97 {;} 88 98 89 //....oooOO0OOooo........oooOO0OOooo........oo 99 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 90 100 91 void GammaRayTelAnticoincidenceHit::Print() { << 101 92 } << 102 >> 103 >> 104 >> 105 >> 106 >> 107 >> 108 >> 109 >> 110 93 111