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 66508 2012-12-19 10:16:45Z gcosmo $ 27 // ------------------------------------------- 28 // ------------------------------------------------------------ 28 // GEANT 4 class implementation file 29 // GEANT 4 class implementation file 29 // CERN Geneva Switzerland 30 // CERN Geneva Switzerland 30 // 31 // 31 // 32 // 32 // ------------ GammaRayTelAnticoincidenc 33 // ------------ GammaRayTelAnticoincidenceHit ------ 33 // by R.Giannitrapani, F.Longo & G.S 34 // by R.Giannitrapani, F.Longo & G.Santin (13 nov 2000) 34 // 35 // 35 // ******************************************* 36 // ************************************************************ 36 37 >> 38 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... >> 39 37 #include "GammaRayTelAnticoincidenceHit.hh" 40 #include "GammaRayTelAnticoincidenceHit.hh" 38 41 >> 42 G4Allocator<GammaRayTelAnticoincidenceHit> GammaRayTelAnticoincidenceHitAllocator; >> 43 39 //....oooOO0OOooo........oooOO0OOooo........oo 44 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 40 45 41 G4ThreadLocal G4Allocator<GammaRayTelAnticoinc << 46 GammaRayTelAnticoincidenceHit::GammaRayTelAnticoincidenceHit() >> 47 { >> 48 EdepACD = 0.; >> 49 ACDTileNumber = 0; >> 50 IsACDPlane = 0; >> 51 pos = G4ThreeVector(0.,0.,0.); >> 52 } 42 53 43 //....oooOO0OOooo........oooOO0OOooo........oo 54 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 44 55 45 GammaRayTelAnticoincidenceHit::GammaRayTelAnti << 56 GammaRayTelAnticoincidenceHit::~GammaRayTelAnticoincidenceHit() 46 } << 57 {;} 47 58 48 //....oooOO0OOooo........oooOO0OOooo........oo 59 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 49 60 50 GammaRayTelAnticoincidenceHit::~GammaRayTelAnt << 61 GammaRayTelAnticoincidenceHit::GammaRayTelAnticoincidenceHit(const GammaRayTelAnticoincidenceHit& right) >> 62 : G4VHit() >> 63 { >> 64 EdepACD = right.EdepACD; >> 65 ACDTileNumber = right.ACDTileNumber; >> 66 IsACDPlane = right.IsACDPlane; >> 67 pos = right.pos; 51 } 68 } 52 69 53 //....oooOO0OOooo........oooOO0OOooo........oo 70 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 54 71 55 GammaRayTelAnticoincidenceHit::GammaRayTelAnti << 72 const GammaRayTelAnticoincidenceHit& GammaRayTelAnticoincidenceHit::operator=(const GammaRayTelAnticoincidenceHit& right) 56 acdTileNumber(right.acdTileNumber), << 73 { 57 isACDPlane(right.isACDPlane), << 74 EdepACD = right.EdepACD; 58 acdDepositedEnergy(right.acdDepositedEnerg << 75 ACDTileNumber = right.ACDTileNumber; 59 position(right.position) { << 76 IsACDPlane = right.IsACDPlane; >> 77 pos = right.pos; >> 78 return *this; 60 } 79 } 61 80 62 //....oooOO0OOooo........oooOO0OOooo........oo 81 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 63 82 64 auto GammaRayTelAnticoincidenceHit::operator=( << 83 int GammaRayTelAnticoincidenceHit::operator==(const GammaRayTelAnticoincidenceHit& right) const 65 acdTileNumber = right.acdTileNumber; << 84 { 66 isACDPlane = right.isACDPlane; << 85 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 } 86 } 72 87 73 //....oooOO0OOooo........oooOO0OOooo........oo 88 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 74 89 75 auto GammaRayTelAnticoincidenceHit::operator== << 90 void GammaRayTelAnticoincidenceHit::Draw() 76 return ( << 91 {;} 77 (acdTileNumber == right.acdTileNumber) && << 78 (isACDPlane == right.isACDPlane) && << 79 (acdDepositedEnergy == right.acdDeposi << 80 (position == right.position) << 81 ); << 82 } << 83 92 84 //....oooOO0OOooo........oooOO0OOooo........oo 93 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 85 94 86 void GammaRayTelAnticoincidenceHit::Draw() { << 95 void GammaRayTelAnticoincidenceHit::Print() 87 } << 96 {;} 88 97 89 //....oooOO0OOooo........oooOO0OOooo........oo 98 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 90 99 91 void GammaRayTelAnticoincidenceHit::Print() { << 100 92 } << 101 >> 102 >> 103 >> 104 >> 105 >> 106 >> 107 >> 108 >> 109 93 110