Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer << 3 // * DISCLAIMER * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th << 5 // * The following disclaimer summarizes all the specific disclaimers * 6 // * the Geant4 Collaboration. It is provided << 6 // * of contributors to this software. The specific disclaimers,which * 7 // * conditions of the Geant4 Software License << 7 // * govern, are listed with their locations in: * 8 // * LICENSE and available at http://cern.ch/ << 8 // * http://cern.ch/geant4/license * 9 // * include a list of copyright holders. << 10 // * 9 // * * 11 // * Neither the authors of this software syst 10 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 11 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 12 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 13 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file << 14 // * use. * 16 // * for the full disclaimer and the limitatio << 17 // * 15 // * * 18 // * This code implementation is the result << 16 // * This code implementation is the intellectual property of the * 19 // * technical work of the GEANT4 collaboratio << 17 // * GEANT4 collaboration. * 20 // * By using, copying, modifying or distri << 18 // * By copying, distributing or modifying the Program (or any work * 21 // * any work based on the software) you ag << 19 // * based on the Program) you indicate your acceptance of this * 22 // * use in resulting scientific publicati << 20 // * statement, and all its terms. * 23 // * acceptance of all terms of the Geant4 Sof << 24 // ******************************************* 21 // ******************************************************************** 25 // 22 // >> 23 // >> 24 // $Id: G4KaonZeroLong.cc,v 1.12 2002/12/16 11:15:41 gcosmo Exp $ >> 25 // GEANT4 tag $Name: geant4-05-01 $ >> 26 // >> 27 // 26 // ------------------------------------------- 28 // ---------------------------------------------------------------------- 27 // GEANT 4 class implementation file 29 // GEANT 4 class implementation file 28 // 30 // 29 // History: first implementation, based o 31 // History: first implementation, based on object model of 30 // 4th April 1996, G.Cosmo 32 // 4th April 1996, G.Cosmo 31 // H.Kurashige 33 // H.Kurashige 7 Jul 96 32 // ******************************************* 34 // ********************************************************************** 33 // New impelemenataion as an utility class M << 35 34 // ------------------------------------------- << 36 #include "g4std/fstream" 35 // Update width (PDG2006) Oc << 37 #include "g4std/iomanip" 36 // << 37 38 38 #include "G4KaonZeroLong.hh" 39 #include "G4KaonZeroLong.hh" 39 40 40 #include "G4DecayTable.hh" << 41 #include "G4KL3DecayChannel.hh" << 42 #include "G4ParticleTable.hh" << 43 #include "G4PhaseSpaceDecayChannel.hh" 41 #include "G4PhaseSpaceDecayChannel.hh" 44 #include "G4String.hh" << 42 #include "G4KL3DecayChannel.hh" 45 #include "G4SystemOfUnits.hh" << 43 #include "G4DecayTable.hh" 46 #include "G4Types.hh" << 44 // ###################################################################### 47 #include "G4VDecayChannel.hh" << 45 // ### KAONZEROLONG ### >> 46 // ###################################################################### >> 47 >> 48 G4KaonZeroLong::G4KaonZeroLong( >> 49 const G4String& aName, G4double mass, >> 50 G4double width, G4double charge, >> 51 G4int iSpin, G4int iParity, >> 52 G4int iConjugation, G4int iIsospin, >> 53 G4int iIsospin3, G4int gParity, >> 54 const G4String& pType, G4int lepton, >> 55 G4int baryon, G4int encoding, >> 56 G4bool stable, G4double lifetime, >> 57 G4DecayTable *decaytable ) >> 58 : G4VMeson( aName,mass,width,charge,iSpin,iParity, >> 59 iConjugation,iIsospin,iIsospin3,gParity,pType, >> 60 lepton,baryon,encoding,stable,lifetime,decaytable ) >> 61 { >> 62 SetParticleSubType("kaon"); >> 63 // Anti-particle of K0Long is K0Long itself >> 64 SetAntiPDGEncoding(encoding); >> 65 //create Decay Table >> 66 G4DecayTable* table = GetDecayTable(); >> 67 if (table!=NULL) delete table; >> 68 table = new G4DecayTable(); >> 69 >> 70 // create decay channels >> 71 G4VDecayChannel** mode = new G4VDecayChannel*[6]; >> 72 // kaon0L -> pi0 + pi0 + pi0 >> 73 mode[0] = new G4PhaseSpaceDecayChannel("kaon0L",0.211,3,"pi0","pi0","pi0"); >> 74 // kaon0L -> pi0 + pi+ + pi- >> 75 mode[1] = new G4PhaseSpaceDecayChannel("kaon0L",0.126,3,"pi0","pi+","pi-"); >> 76 // kaon0L -> pi- + e+ + nu_e (Ke3) >> 77 mode[2] = new G4KL3DecayChannel("kaon0L",0.194,"pi-","e+","nu_e"); >> 78 // kaon0L -> pi+ + e- + anti_nu_e (Ke3) >> 79 mode[3] = new G4KL3DecayChannel("kaon0L",0.194,"pi+","e-","anti_nu_e"); >> 80 // kaon0L -> pi- + mu+ + nu_mu (Kmu3) >> 81 mode[4] = new G4KL3DecayChannel("kaon0L",0.136,"pi-","mu+","nu_mu"); >> 82 // kaon0L -> pi+ + mu- + anti_nu_mu (Kmu3) >> 83 mode[5] = new G4KL3DecayChannel("kaon0L",0.136,"pi+","mu-","anti_nu_mu"); 48 84 49 G4KaonZeroLong* G4KaonZeroLong::theInstance = << 85 for (G4int index=0; index <6; index++ ) table->Insert(mode[index]); >> 86 delete [] mode; 50 87 51 G4KaonZeroLong* G4KaonZeroLong::Definition() << 88 SetDecayTable(table); 52 { << 53 if (theInstance != nullptr) return theInstan << 54 const G4String name = "kaon0L"; << 55 // search in particle table] << 56 G4ParticleTable* pTable = G4ParticleTable::G << 57 G4ParticleDefinition* anInstance = pTable->F << 58 if (anInstance == nullptr) { << 59 // create particle << 60 // << 61 // Arguments for constructor are as fol << 62 // name mass << 63 // 2*spin parity C- << 64 // 2*Isospin 2*Isospin3 << 65 // type lepton number ba << 66 // stable lifetime << 67 // shortlived subType << 68 << 69 // clang-format off << 70 anInstance = new G4ParticleDefinition( << 71 name, 0.497614*GeV, 1.287 << 72 0, -1, << 73 1, 0, << 74 "meson", 0, << 75 false, 51.16*ns, << 76 false, "kaon", << 77 // clang-format on << 78 << 79 // create Decay Table << 80 auto table = new G4DecayTable(); << 81 << 82 // create decay channels << 83 auto mode = new G4VDecayChannel*[6]; << 84 // kaon0L -> pi0 + pi0 + pi0 << 85 mode[0] = new G4PhaseSpaceDecayChannel("ka << 86 // kaon0L -> pi0 + pi+ + pi- << 87 mode[1] = new G4PhaseSpaceDecayChannel("ka << 88 // kaon0L -> pi- + e+ + nu_e (Ke3) << 89 mode[2] = new G4KL3DecayChannel("kaon0L", << 90 // kaon0L -> pi+ + e- + anti_nu_e (Ke3) << 91 mode[3] = new G4KL3DecayChannel("kaon0L", << 92 // kaon0L -> pi- + mu+ + nu_mu (Kmu3) << 93 mode[4] = new G4KL3DecayChannel("kaon0L", << 94 // kaon0L -> pi+ + mu- + anti_nu_mu (Kmu3) << 95 mode[5] = new G4KL3DecayChannel("kaon0L", << 96 << 97 for (G4int index = 0; index < 6; index++) << 98 table->Insert(mode[index]); << 99 delete[] mode; << 100 << 101 anInstance->SetDecayTable(table); << 102 } << 103 theInstance = static_cast<G4KaonZeroLong*>(a << 104 return theInstance; << 105 } 89 } 106 90 107 G4KaonZeroLong* G4KaonZeroLong::KaonZeroLongDe << 91 // ...................................................................... 108 { << 92 // ... static member definitions ... 109 return Definition(); << 93 // ...................................................................... 110 } << 94 // >> 95 // Arguments for constructor are as follows >> 96 // name mass width charge >> 97 // 2*spin parity C-conjugation >> 98 // 2*Isospin 2*Isospin3 G-parity >> 99 // type lepton number baryon number PDG encoding >> 100 // stable lifetime decay table >> 101 >> 102 G4KaonZeroLong G4KaonZeroLong::theKaonZeroLong( >> 103 "kaon0L", 0.497672*GeV, 1.273e-14*MeV, 0.0, >> 104 0, -1, 0, >> 105 1, 0, 0, >> 106 "meson", 0, 0, 130, >> 107 false, 51.7*ns, NULL >> 108 ); >> 109 >> 110 G4KaonZeroLong* G4KaonZeroLong::KaonZeroLongDefinition(){return &theKaonZeroLong;} >> 111 G4KaonZeroLong* G4KaonZeroLong::KaonZeroLong(){return &theKaonZeroLong;} 111 112 112 G4KaonZeroLong* G4KaonZeroLong::KaonZeroLong() << 113 { << 114 return Definition(); << 115 } << 116 113