BOSS 7.1.0
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtTauScalarnu.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: EvtTauScalarnu.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//
23#include <stdlib.h>
24#include <iostream>
25#include <string>
27#include "EvtGenBase/EvtPDL.hh"
33
35
36void EvtTauScalarnu::getName(std::string& model_name){
37
38 model_name="TAUSCALARNU";
39
40}
41
42
44
45 return new EvtTauScalarnu;
46
47}
48
50
51 // check that there are 0 arguments
52 checkNArg(0);
53 checkNDaug(2);
54
56
59
60}
61
63
64 setProbMax(90.0);
65
66}
67
69
70 static EvtId TAUM=EvtPDL::getId("tau-");
72
73 EvtParticle *nut;
74 nut = p->getDaug(1);
75 EvtVector4R momscalar = p->getDaug(0)->getP4();
76
77 EvtVector4C tau1, tau2;
78
79 if (p->getId()==TAUM) {
80 tau1=EvtLeptonVACurrent(nut->spParentNeutrino(),p->sp(0));
81 tau2=EvtLeptonVACurrent(nut->spParentNeutrino(),p->sp(1));
82 }
83 else{
84 tau1=EvtLeptonVACurrent(p->sp(0),nut->spParentNeutrino());
85 tau2=EvtLeptonVACurrent(p->sp(1),nut->spParentNeutrino());
86 }
87
88 vertex(0,tau1*momscalar);
89 vertex(1,tau2*momscalar);
90
91 return;
92
93}
94
EvtVector4C EvtLeptonVACurrent(const EvtDiracSpinor &d, const EvtDiracSpinor &dp)
void vertex(const EvtComplex &amp)
Definition: EvtDecayAmp.hh:37
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()
Definition: EvtDecayBase.hh:65
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:287
EvtId getId() const
Definition: EvtParticle.cc:112
virtual EvtDiracSpinor spParentNeutrino() const
Definition: EvtParticle.cc:634
const EvtVector4R & getP4() const
Definition: EvtParticle.cc:120
EvtParticle * getDaug(int i)
Definition: EvtParticle.cc:84
virtual EvtDiracSpinor sp(int) const
Definition: EvtParticle.cc:621
double initializePhaseSpace(int numdaughter, EvtId *daughters, double poleSize=-1., int whichTwo1=0, int whichTwo2=1)
virtual ~EvtTauScalarnu()
void getName(std::string &name)
void decay(EvtParticle *p)
EvtDecayBase * clone()