BOSS 7.0.2
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtSll.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: EvtSll.cc
12//
13// Description: The decay of a scalar meson to two leptons,
14// or generally, two spin 1/2 particles.
15// E.g., B0 -> tau+ tau-
16//
17// Modification history:
18//
19// SHY April 23, 1997 Module created
20//
21//------------------------------------------------------------------------
22//
24#include <stdlib.h>
25#include <iostream>
26#include <string>
28#include "EvtGenBase/EvtPDL.hh"
34
36
37void EvtSll::getName(std::string& model_name){
38
39 model_name="SLL";
40
41}
42
43
45
46 return new EvtSll;
47
48}
49
51
52 // check that there are 0 arguments
53 checkNArg(0);
54 checkNDaug(2);
55
57
60
61}
62
64
65
67
68 EvtParticle *l1, *l2;
69 l1 = p->getDaug(0);
70 l2 = p->getDaug(1);
71 EvtVector4R p4_p;
72 p4_p.set(p->mass(),0.0,0.0,0.0);
73
74 EvtVector4C l11, l12, l21, l22;
75
76 l11=EvtLeptonVACurrent(l1->spParent(0),l2->spParent(0));
77 l12=EvtLeptonVACurrent(l1->spParent(0),l2->spParent(1));
78 l21=EvtLeptonVACurrent(l1->spParent(1),l2->spParent(0));
79 l22=EvtLeptonVACurrent(l1->spParent(1),l2->spParent(1));
80
81 vertex(0,0,p4_p*l11);
82 vertex(0,1,p4_p*l12);
83 vertex(1,0,p4_p*l21);
84 vertex(1,1,p4_p*l22);
85
86 return;
87
88}
89
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 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)
virtual EvtDiracSpinor spParent(int) const
Definition: EvtParticle.cc:609
EvtParticle * getDaug(int i)
Definition: EvtParticle.cc:85
double mass() const
Definition: EvtParticle.cc:127
double initializePhaseSpace(int numdaughter, EvtId *daughters, double poleSize=-1., int whichTwo1=0, int whichTwo2=1)
void init()
Definition: EvtSll.cc:50
EvtDecayBase * clone()
Definition: EvtSll.cc:44
void getName(std::string &name)
Definition: EvtSll.cc:37
void decay(EvtParticle *p)
Definition: EvtSll.cc:63
virtual ~EvtSll()
Definition: EvtSll.cc:35
EvtSll()
Definition: EvtSll.hh:34
void set(int i, double d)
Definition: EvtVector4R.hh:183