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: GammaRayTelCalorimeterHit.cc,v 1.5 2010-11-11 17:25:01 stesting Exp $ >> 28 // GEANT4 tag $Name: not supported by cvs2svn $ 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 // ------------ GammaRayTelCalorimeterHit 34 // ------------ GammaRayTelCalorimeterHit ------ 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 "GammaRayTelCalorimeterHit.hh" 41 #include "GammaRayTelCalorimeterHit.hh" 38 42 >> 43 G4Allocator<GammaRayTelCalorimeterHit> GammaRayTelCalorimeterHitAllocator; >> 44 39 //....oooOO0OOooo........oooOO0OOooo........oo 45 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 40 46 41 G4ThreadLocal G4Allocator<GammaRayTelCalorimet << 47 GammaRayTelCalorimeterHit::GammaRayTelCalorimeterHit() >> 48 { >> 49 EdepCAL = 0.; >> 50 CALBarNumber = 0; >> 51 CALPlaneNumber = 0; >> 52 IsCALPlane = 0; >> 53 pos = G4ThreeVector(0.,0.,0.); >> 54 } 42 55 43 //....oooOO0OOooo........oooOO0OOooo........oo 56 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 44 57 45 GammaRayTelCalorimeterHit::GammaRayTelCalorime << 58 GammaRayTelCalorimeterHit::~GammaRayTelCalorimeterHit() 46 } << 59 {;} 47 60 48 //....oooOO0OOooo........oooOO0OOooo........oo 61 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 49 62 50 GammaRayTelCalorimeterHit::~GammaRayTelCalorim << 63 GammaRayTelCalorimeterHit::GammaRayTelCalorimeterHit(const GammaRayTelCalorimeterHit& right) >> 64 :G4VHit() >> 65 { >> 66 EdepCAL = right.EdepCAL; >> 67 CALBarNumber = right.CALBarNumber; >> 68 CALPlaneNumber = right.CALPlaneNumber; >> 69 IsCALPlane = right.IsCALPlane; >> 70 pos = right.pos; 51 } 71 } 52 72 53 //....oooOO0OOooo........oooOO0OOooo........oo 73 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 54 74 55 GammaRayTelCalorimeterHit::GammaRayTelCalorime << 75 const GammaRayTelCalorimeterHit& GammaRayTelCalorimeterHit::operator=(const GammaRayTelCalorimeterHit& right) 56 calBarNumber(right.calBarNumber), << 76 { 57 calPlaneNumber(right.calPlaneNumber), << 77 EdepCAL = right.EdepCAL; 58 isCALPlane(right.isCALPlane), << 78 CALBarNumber = right.CALBarNumber; 59 calDepositedEnergy(right.calDepositedEnerg << 79 CALPlaneNumber = right.CALPlaneNumber; 60 position(right.position) { << 80 IsCALPlane = right.IsCALPlane; >> 81 pos = right.pos; >> 82 return *this; 61 } 83 } 62 84 63 //....oooOO0OOooo........oooOO0OOooo........oo 85 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 64 86 65 auto GammaRayTelCalorimeterHit::operator=(cons << 87 int GammaRayTelCalorimeterHit::operator==(const GammaRayTelCalorimeterHit& right) const 66 calBarNumber = right.calBarNumber; << 88 { 67 calPlaneNumber = right.calPlaneNumber; << 89 return((EdepCAL==right.EdepCAL)&&(CALBarNumber==right.CALBarNumber)&&(CALPlaneNumber==right.CALPlaneNumber)&&(IsCALPlane==right.IsCALPlane)&& (pos==right.pos)); 68 isCALPlane = right.isCALPlane; << 69 calDepositedEnergy = right.calDepositedEne << 70 position = right.position; << 71 << 72 return *this; << 73 } 90 } 74 91 75 //....oooOO0OOooo........oooOO0OOooo........oo 92 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 76 93 77 auto GammaRayTelCalorimeterHit::operator==(con << 94 void GammaRayTelCalorimeterHit::Draw() 78 return ( << 95 {;} 79 (calBarNumber == right.calBarNumber) && << 80 (calPlaneNumber == right.calPlaneNumber) & << 81 (isCALPlane == right.isCALPlane) && << 82 (calDepositedEnergy == right.calDeposi << 83 (position == right.position) << 84 ); << 85 } << 86 96 87 //....oooOO0OOooo........oooOO0OOooo........oo 97 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 88 98 89 void GammaRayTelCalorimeterHit::Draw() { << 99 void GammaRayTelCalorimeterHit::Print() 90 } << 100 {;} 91 101 92 //....oooOO0OOooo........oooOO0OOooo........oo 102 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 93 103 94 void GammaRayTelCalorimeterHit::Print() { << 104 95 } << 105 >> 106 >> 107 >> 108 >> 109 >> 110 >> 111 >> 112 >> 113 96 114