source: trunk/source/processes/decay/src/G4PionDecayMakeSpin.cc @ 846

Last change on this file since 846 was 819, checked in by garnier, 16 years ago

import all except CVS

File size: 5.3 KB
Line 
1//
2// ********************************************************************
3// * License and Disclaimer                                           *
4// *                                                                  *
5// * The  Geant4 software  is  copyright of the Copyright Holders  of *
6// * the Geant4 Collaboration.  It is provided  under  the terms  and *
7// * conditions of the Geant4 Software License,  included in the file *
8// * LICENSE and available at  http://cern.ch/geant4/license .  These *
9// * include a list of copyright holders.                             *
10// *                                                                  *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work  make  any representation or  warranty, express or implied, *
14// * regarding  this  software system or assume any liability for its *
15// * use.  Please see the license in the file  LICENSE  and URL above *
16// * for the full disclaimer and the limitation of liability.         *
17// *                                                                  *
18// * This  code  implementation is the result of  the  scientific and *
19// * technical work of the GEANT4 collaboration.                      *
20// * By using,  copying,  modifying or  distributing the software (or *
21// * any work based  on the software)  you  agree  to acknowledge its *
22// * use  in  resulting  scientific  publications,  and indicate your *
23// * acceptance of all terms of the Geant4 Software license.          *
24// ********************************************************************
25//
26//
27//
28
29#include "G4PionDecayMakeSpin.hh"
30
31#include "G4Decay.hh"
32#include "G4DecayProducts.hh"
33
34#include "G4RandomDirection.hh"
35
36// constructor
37
38G4PionDecayMakeSpin::G4PionDecayMakeSpin(const G4String& processName)
39                               : G4Decay(processName) { }
40
41G4PionDecayMakeSpin::~G4PionDecayMakeSpin() { }
42
43void G4PionDecayMakeSpin::DaughterPolarization(const G4Track& aTrack,
44                                   G4DecayProducts* products)
45{
46  //  This routine deals only with particles that can decay into a muon
47  //                 pi+, pi-, K+, K- and K0_long
48
49  // get particle
50
51  const G4DynamicParticle* aParticle = aTrack.GetDynamicParticle();
52  const G4ParticleDefinition* aParticleDef = aParticle->GetDefinition();
53
54  G4ParticleDefinition* aMuonPlus =
55            G4ParticleTable::GetParticleTable()->FindParticle("mu+");
56  G4ParticleDefinition* aMuonMinus =
57            G4ParticleTable::GetParticleTable()->FindParticle("mu-");
58  G4ParticleDefinition* aPionPlus = 
59            G4ParticleTable::GetParticleTable()->FindParticle("pi+");
60  G4ParticleDefinition* aPionMinus =
61            G4ParticleTable::GetParticleTable()->FindParticle("pi-");
62  G4ParticleDefinition* aKaonPlus =
63            G4ParticleTable::GetParticleTable()->FindParticle("kaon+");
64  G4ParticleDefinition* aKaonMinus =
65            G4ParticleTable::GetParticleTable()->FindParticle("kaon-");
66  G4ParticleDefinition* aKaon0Long =
67            G4ParticleTable::GetParticleTable()->FindParticle("kaon0L");
68  G4ParticleDefinition* aNeutrinoMu =
69            G4ParticleTable::GetParticleTable()->FindParticle("nu_mu");
70  G4ParticleDefinition* aAntiNeutrinoMu =
71            G4ParticleTable::GetParticleTable()->FindParticle("anti_nu_mu");
72
73  if( aParticleDef == aPionPlus   ||
74      aParticleDef == aPionMinus  || 
75      aParticleDef == aKaonPlus   ||
76      aParticleDef == aKaonMinus  ||
77      aParticleDef == aKaon0Long ) {
78  } else {
79      return;
80  }
81
82  G4DynamicParticle* aMuon = NULL;
83
84  G4double emu(0), eneutrino(0);
85  G4ThreeVector p_muon, p_neutrino;
86
87  G4int numberOfSecondaries = products->entries();
88
89  if (numberOfSecondaries > 0) {
90    for (G4int index=0; index < numberOfSecondaries; index++)
91    {
92        G4DynamicParticle* aSecondary = (*products)[index];
93        G4ParticleDefinition* aSecondaryDef = aSecondary->GetDefinition();
94
95        if (aSecondaryDef == aMuonPlus ||
96            aSecondaryDef == aMuonMinus ) {
97            //          Muon+ or Muon-
98            aMuon = aSecondary;
99            emu    = aSecondary->GetTotalEnergy();
100            p_muon = aSecondary->GetMomentum();
101        } else if (aSecondaryDef == aNeutrinoMu ||
102                   aSecondaryDef == aAntiNeutrinoMu ) {
103            //          Muon-Neutrino / Muon-Anti-Neutrino
104            eneutrino  = aSecondary->GetTotalEnergy();
105            p_neutrino = aSecondary->GetMomentum();
106        }
107    }
108  }
109
110  //  This routine deals only with decays with a
111  //  muon and mu-(anti)neutrinos in the final state
112
113  if (!aMuon) return;
114  if (eneutrino==0||emu==0) return;
115
116  G4ThreeVector spin(0,0,0);
117
118  const G4DynamicParticle* theParentParticle = products->GetParentParticle();
119
120  G4double amass = theParentParticle->GetMass();
121  G4double emmu = aMuonPlus->GetPDGMass();
122
123  if (numberOfSecondaries == 2 ) {
124
125     G4double scale = - (eneutrino - ( p_muon * p_neutrino )/(emu+emmu));
126
127     p_muon = scale * p_muon;
128     p_neutrino = emmu * p_neutrino;
129     spin = p_muon + p_neutrino;
130
131     scale = 2./(amass*amass-emmu*emmu);
132     spin = scale * spin;
133
134     if (aParticle->GetCharge() < 0.0) spin = -spin;
135
136  } else {
137
138       spin = G4RandomDirection();
139
140  }
141
142  spin = spin.unit();
143
144  aMuon->SetPolarization(spin.x(),spin.y(),spin.z());
145
146  return; 
147}
Note: See TracBrowser for help on using the repository browser.