BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtTaulnunu.cc
Go to the documentation of this file.
1//--------------------------------------------------------------------------
2//
3// Environment:
4// This software is part of the EvtGen package developed jointly
5// for the BaBar and CLEO collaborations. If you use all or part
6// of it, please give an appropriate acknowledgement.
7//
8// Copyright Information: See EvtGen/COPYRIGHT
9// Copyright (C) 1998 Caltech, UCSB
10//
11// Module: EvtTaulnunu.cc
12//
13// Description: The leptonic decay of the tau meson.
14// E.g., tau- -> e- nueb nut
15//
16// Modification history:
17//
18// RYD January 17, 1997 Module created
19//
20//------------------------------------------------------------------------
21//
22#include "EvtTaulnunu.hh"
30#include <iostream>
31#include <stdlib.h>
32#include <string>
33
35
36void EvtTaulnunu::getName( std::string& model_name ) { model_name = "TAULNUNU"; }
37
39
41
42 // check that there are 0 arguments
43 checkNArg( 0 );
44 checkNDaug( 3 );
45
47
51}
52
54
56 static EvtId TAUM = EvtPDL::getId( "tau-" );
57
59
60 EvtParticle *l, *nul, *nut;
61
62 l = p->getDaug( 0 );
63 nul = p->getDaug( 1 );
64 nut = p->getDaug( 2 );
65
66 EvtVector4C l1, l2, tau1, tau2;
67
68 if ( p->getId() == TAUM )
69 {
70
71 tau1 = EvtLeptonVACurrent( nut->spParentNeutrino(), p->sp( 0 ) );
72 tau2 = EvtLeptonVACurrent( nut->spParentNeutrino(), p->sp( 1 ) );
73 l1 = EvtLeptonVACurrent( l->spParent( 0 ), nul->spParentNeutrino() );
74 l2 = EvtLeptonVACurrent( l->spParent( 1 ), nul->spParentNeutrino() );
75 }
76 else
77 {
78 tau1 = EvtLeptonVACurrent( p->sp( 0 ), nut->spParentNeutrino() );
79 tau2 = EvtLeptonVACurrent( p->sp( 1 ), nut->spParentNeutrino() );
80 l1 = EvtLeptonVACurrent( nul->spParentNeutrino(), l->spParent( 0 ) );
81 l2 = EvtLeptonVACurrent( nul->spParentNeutrino(), l->spParent( 1 ) );
82 }
83
84 vertex( 0, 0, tau1 * l1 );
85 vertex( 0, 1, tau1 * l2 );
86 vertex( 1, 0, tau2 * l1 );
87 vertex( 1, 1, tau2 * l2 );
88
89 return;
90}
EvtVector4C EvtLeptonVACurrent(const EvtDiracSpinor &d, const EvtDiracSpinor &dp)
void vertex(const EvtComplex &amp)
void checkSpinDaughter(int d1, EvtSpinType::spintype sp)
void checkSpinParent(EvtSpinType::spintype sp)
void setProbMax(double prbmx)
void checkNDaug(int d1, int d2=-1)
EvtId * getDaugs()
void checkNArg(int a1, int a2=-1, int a3=-1, int a4=-1)
Definition EvtId.hh:27
static EvtId getId(const std::string &name)
Definition EvtPDL.cc:272
EvtId getId() const
virtual EvtDiracSpinor spParentNeutrino() const
virtual EvtDiracSpinor spParent(int) const
EvtParticle * getDaug(int i)
virtual EvtDiracSpinor sp(int) const
double initializePhaseSpace(int numdaughter, EvtId *daughters, double poleSize=-1., int whichTwo1=0, int whichTwo2=1)
void decay(EvtParticle *p)
void initProbMax()
void getName(std::string &name)
virtual ~EvtTaulnunu()
EvtDecayBase * clone()