CGEM BOSS 6.6.5.f
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtHQET2.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: EvtHQET2.cc
12//
13// Description: Routine to implement semileptonic B->D*lnu & B->Dlnu
14// decays according to the model HQET
15//
16// Lange Nov9/01 adding Dlnu and possible (w-1)^2 term
17//
18//
19// Modification history:
20//
21// Marco Bomben March 10, 2003 Module created
22//
23//------------------------------------------------------------------------
24//
26#include <stdlib.h>
27#include <assert.h>
30#include "EvtGenBase/EvtPDL.hh"
36#include <string>
37using std::endl;
38
40 hqetffmodel(0)
41 ,calcamp(0)
42{}
43
45 delete hqetffmodel;
46 hqetffmodel=0;
47 delete calcamp;
48 calcamp=0;
49}
50
51void EvtHQET2::getName(std::string& model_name){
52
53 model_name="HQET2";
54
55}
56
57
58
60
61 return new EvtHQET2;
62
63}
64
65
67
69 calcamp->CalcAmp(p,_amp2,hqetffmodel);
70
71}
72
74
75EvtId parnum,mesnum,lnum,nunum;
76
77parnum = getParentId();
78mesnum = getDaug(0);
79lnum = getDaug(1);
80nunum = getDaug(2);
81
82double mymaxprob = calcamp->CalcMaxProb(parnum,mesnum,
83 lnum,nunum,hqetffmodel);
84
85setProbMax(mymaxprob);
86
87}
88
89
91
92 checkNDaug(3);
93
94 //We expect the parent to be a scalar
95 //and the daughters to be X lepton neutrino
97
100
102 if ( d1type==EvtSpinType::SCALAR) {
103 if ( getNArg()==2 ) {hqetffmodel = new EvtHQET2FF(getArg(0),getArg(1));
104 calcamp = new EvtSemiLeptonicScalarAmp;}
105 else {
106 report(ERROR,"EvtGen") << "HQET2 model for scalar meson daughters needs 2 arguments. Sorry."<<endl;
107 ::abort();
108 }
109 }
110 else if ( d1type==EvtSpinType::VECTOR) {
111 if ( getNArg()==4 ){ hqetffmodel = new EvtHQET2FF(getArg(0),getArg(1),getArg(2),getArg(3));
112 calcamp = new EvtSemiLeptonicVectorAmp; }
113 else {
114 report(ERROR,"EvtGen") << "HQET2 model for vector meson daughtersneeds 4 arguments. Sorry."<<endl;
115 ::abort();
116 }
117 }
118 else{
119 report(ERROR,"EvtGen") << "HQET2 model handles only scalar and vector meson daughters. Sorry."<<endl;
120 ::abort();
121 }
122
123
124}
125
ostream & report(Severity severity, const char *facility)
Definition: EvtReport.cc:36
@ ERROR
Definition: EvtReport.hh:49
EvtAmp _amp2
Definition: EvtDecayAmp.hh:66
void checkSpinDaughter(int d1, EvtSpinType::spintype sp)
void checkSpinParent(EvtSpinType::spintype sp)
double getArg(int j)
void setProbMax(double prbmx)
EvtId getParentId()
Definition: EvtDecayBase.hh:60
void checkNDaug(int d1, int d2=-1)
EvtId * getDaugs()
Definition: EvtDecayBase.hh:65
EvtId getDaug(int i)
Definition: EvtDecayBase.hh:66
void decay(EvtParticle *p)
Definition: EvtHQET2.cc:66
EvtHQET2()
Definition: EvtHQET2.cc:39
EvtDecayBase * clone()
Definition: EvtHQET2.cc:59
void getName(std::string &name)
Definition: EvtHQET2.cc:51
void init()
Definition: EvtHQET2.cc:90
virtual ~EvtHQET2()
Definition: EvtHQET2.cc:44
void initProbMax()
Definition: EvtHQET2.cc:73
Definition: EvtId.hh:27
static EvtSpinType::spintype getSpinType(EvtId i)
Definition: EvtPDL.hh:61
double initializePhaseSpace(int numdaughter, EvtId *daughters, double poleSize=-1., int whichTwo1=0, int whichTwo2=1)
virtual void CalcAmp(EvtParticle *parent, EvtAmp &amp, EvtSemiLeptonicFF *FormFactors)
double CalcMaxProb(EvtId parent, EvtId meson, EvtId lepton, EvtId nudaug, EvtSemiLeptonicFF *FormFactors)