120 lines
4.4 KiB
C++
120 lines
4.4 KiB
C++
// This code implementation is the intellectual property of
|
|
// the RD44 GEANT4 collaboration.
|
|
//
|
|
// By copying, distributing or modifying the Program (or any work
|
|
// based on the Program) you indicate your acceptance of this statement,
|
|
// and all its terms.
|
|
//
|
|
// $Id: G4TauPlus.cc,v 2.2 1998/09/24 05:53:28 kurasige Exp $
|
|
// GEANT4 tag $Name: geant4-00 $
|
|
//
|
|
//
|
|
// ----------------------------------------------------------------------
|
|
// GEANT 4 class implementation file
|
|
//
|
|
// For information related to this code contact:
|
|
// CERN, CN Division, ASD Group
|
|
// History: first implementation, based on object model of
|
|
// 4th April 1996, G.Cosmo
|
|
// 7 July 1996 H.Kurashige
|
|
// **********************************************************************
|
|
|
|
#include <fstream.h>
|
|
#include <iomanip.h>
|
|
|
|
#include "G4TauPlus.hh"
|
|
|
|
#include "G4PhaseSpaceDecayChannel.hh"
|
|
#include "G4DecayTable.hh"
|
|
|
|
// ######################################################################
|
|
// ### TAPLUS ###
|
|
// ######################################################################
|
|
|
|
G4TauPlus::G4TauPlus(
|
|
const G4String& aName, G4double mass,
|
|
G4double width, G4double charge,
|
|
G4int iSpin, G4int iParity,
|
|
G4int iConjugation, G4int iIsospin,
|
|
G4int iIsospin3, G4int gParity,
|
|
const G4String& pType, G4int lepton,
|
|
G4int baryon, G4int encoding,
|
|
G4bool stable, G4double lifetime,
|
|
G4DecayTable *decaytable )
|
|
: G4VLepton( aName,mass,width,charge,iSpin,iParity,
|
|
iConjugation,iIsospin,iIsospin3,gParity,pType,
|
|
lepton,baryon,encoding,stable,lifetime,decaytable )
|
|
{
|
|
SetPDGStable(false);
|
|
|
|
//create Decay Table
|
|
G4DecayTable* table = GetDecayTable();
|
|
if (table!=NULL) delete table;
|
|
table = new G4DecayTable();
|
|
|
|
// create decay channels
|
|
G4VDecayChannel** mode = new G4VDecayChannel*[6];
|
|
// tau+ -> mu+ + nu_mu + anti_nu_tau
|
|
mode[0] = new G4PhaseSpaceDecayChannel("tau+",0.174,3,"mu+","nu_mu","anti_nu_tau");
|
|
// tau+ -> e+ + nu_e + anti_nu_tau
|
|
mode[1] = new G4PhaseSpaceDecayChannel("tau+",0.178,3,"e+","nu_e","anti_nu_tau");
|
|
// tau+ -> pi+ + anti_nu_tau
|
|
mode[2] = new G4PhaseSpaceDecayChannel("tau+",0.113,2,"pi+","anti_nu_tau");
|
|
// tau+ -> pi0 + pi0 + pi+ + anti_nu_tau
|
|
mode[3] = new G4PhaseSpaceDecayChannel("tau+",0.252,3,"pi0","pi+","anti_nu_tau");
|
|
// tau+ -> pi0 + pi0 + pi+ + anti_nu_tau
|
|
mode[4] = new G4PhaseSpaceDecayChannel();
|
|
mode[4]->SetParent("tau+");
|
|
mode[4]->SetBR(0.093);
|
|
mode[4]->SetNumberOfDaughters(4);
|
|
mode[4]->SetDaughter(0,"pi0");
|
|
mode[4]->SetDaughter(1,"pi0");
|
|
mode[4]->SetDaughter(2,"pi+");
|
|
mode[4]->SetDaughter(3,"anti_nu_tau");
|
|
// tau+ -> pi+ + pi+ + pi- + anti_nu_tau
|
|
mode[5] = new G4PhaseSpaceDecayChannel();
|
|
mode[5]->SetParent("tau+");
|
|
mode[5]->SetBR(0.098);
|
|
mode[5]->SetNumberOfDaughters(4);
|
|
mode[5]->SetDaughter(0,"pi+");
|
|
mode[5]->SetDaughter(1,"pi+");
|
|
mode[5]->SetDaughter(2,"pi-");
|
|
mode[5]->SetDaughter(3,"anti_nu_tau");
|
|
|
|
for (G4int index=0; index <6; index++ ) table->Insert(mode[index]);
|
|
|
|
delete [] mode;
|
|
|
|
SetDecayTable(table);
|
|
}
|
|
|
|
// ......................................................................
|
|
// ... static member definitions ...
|
|
// ......................................................................
|
|
//
|
|
// Arguments for constructor are as follows
|
|
// name mass width charge
|
|
// 2*spin parity C-conjugation
|
|
// 2*Isospin 2*Isospin3 G-parity
|
|
// type lepton number baryon number PDG encoding
|
|
// stable lifetime decay table
|
|
//
|
|
G4TauPlus G4TauPlus::theTauPlus(
|
|
"tau+", 1.7771*GeV, 0.0*MeV, 1.*eplus,
|
|
1, 0, 0,
|
|
0, 0, 0,
|
|
"lepton", -1, 0, -15,
|
|
true, 295.6e-6*ns, NULL
|
|
);
|
|
|
|
G4TauPlus* G4TauPlus::TauPlusDefinition(){return &theTauPlus;}
|
|
// initialization for static cut values
|
|
G4double G4TauPlus::theTauPlusLengthCut = -1.0;
|
|
G4double* G4TauPlus::theTauPlusKineticEnergyCuts = NULL;
|
|
|
|
|
|
|
|
|
|
|
|
|