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 // >> 27 // $Id: G4BMesonMinus.cc,v 1.13 2006/06/29 19:19:14 gunter Exp $ >> 28 // GEANT4 tag $Name: geant4-08-01-patch-01 $ >> 29 // >> 30 // 26 // ------------------------------------------- 31 // ---------------------------------------------------------------------- 27 // GEANT 4 class implementation file 32 // GEANT 4 class implementation file 28 // 33 // 29 // 34 // 30 // Created Hisaya Kurashi 35 // Created Hisaya Kurashige, 16 June 1997 31 // ******************************************* 36 // ********************************************************************** 32 // << 37 // New impelemenataion as an utility class M.Asai, 26 July 2004 >> 38 // ---------------------------------------------------------------------- 33 39 34 #include "G4BMesonMinus.hh" 40 #include "G4BMesonMinus.hh" 35 << 36 #include "G4ParticleTable.hh" 41 #include "G4ParticleTable.hh" 37 #include "G4String.hh" << 38 #include "G4SystemOfUnits.hh" << 39 42 40 G4BMesonMinus* G4BMesonMinus::theInstance = nu << 43 // ###################################################################### >> 44 // ### BMesonMinus ### >> 45 // ###################################################################### >> 46 >> 47 G4BMesonMinus* G4BMesonMinus::theInstance = 0; 41 48 42 G4BMesonMinus* G4BMesonMinus::Definition() 49 G4BMesonMinus* G4BMesonMinus::Definition() 43 { 50 { 44 if (theInstance != nullptr) return theInstan << 51 if (theInstance !=0) return theInstance; 45 const G4String name = "B-"; 52 const G4String name = "B-"; 46 // search in particle table] 53 // search in particle table] 47 G4ParticleTable* pTable = G4ParticleTable::G 54 G4ParticleTable* pTable = G4ParticleTable::GetParticleTable(); 48 G4ParticleDefinition* anInstance = pTable->F 55 G4ParticleDefinition* anInstance = pTable->FindParticle(name); 49 if (anInstance == nullptr) { << 56 if (anInstance ==0) 50 // create particle << 57 { 51 // << 58 // create particle 52 // Arguments for constructor are as fol << 59 // 53 // name mass << 60 // Arguments for constructor are as follows 54 // 2*spin parity C- << 61 // name mass width charge 55 // 2*Isospin 2*Isospin3 << 62 // 2*spin parity C-conjugation 56 // type lepton number ba << 63 // 2*Isospin 2*Isospin3 G-parity 57 // stable lifetime << 64 // type lepton number baryon number PDG encoding 58 // shortlived subType << 65 // stable lifetime decay table >> 66 // shortlived subType anti_encoding 59 67 60 // clang-format off << 61 anInstance = new G4ParticleDefinition( 68 anInstance = new G4ParticleDefinition( 62 name, 5.27929*GeV, 4.018e << 69 name, 5.2790*GeV, 3.94e-10*MeV, -1.*eplus, 63 0, -1, 70 0, -1, 0, 64 1, -1, 71 1, -1, 0, 65 "meson", 0, 72 "meson", 0, 0, -521, 66 false, 1.638e-3*ns, << 73 false, 1.638e-3*ns, NULL, 67 false, "B"); 74 false, "B"); 68 // clang-format on << 69 } 75 } 70 theInstance = static_cast<G4BMesonMinus*>(an << 76 theInstance = reinterpret_cast<G4BMesonMinus*>(anInstance); 71 return theInstance; 77 return theInstance; 72 } 78 } 73 79 74 G4BMesonMinus* G4BMesonMinus::BMesonMinusDefin << 80 G4BMesonMinus* G4BMesonMinus::BMesonMinusDefinition() 75 { 81 { 76 return Definition(); 82 return Definition(); 77 } 83 } 78 84 79 G4BMesonMinus* G4BMesonMinus::BMesonMinus() << 85 G4BMesonMinus* G4BMesonMinus::BMesonMinus() 80 { 86 { 81 return Definition(); 87 return Definition(); 82 } 88 } >> 89 >> 90 >> 91 >> 92 >> 93 >> 94 83 95