BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtHQET.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: EvtHQET.cc
12//
13// Description: Routine to implement semileptonic B->D*lnu decays according
14// to the model HQET
15//
16// Lange Nov9/01 adding Dlnu and possible (w-1)^2 term
17//
18//
19// Modification history:
20//
21// DJL April 20, 1998 Module created
22//
23//------------------------------------------------------------------------
24//
25#include "EvtHQET.hh"
33#include "EvtHQETFF.hh"
34#include <assert.h>
35#include <stdlib.h>
36#include <string>
37using std::endl;
38
39EvtHQET::EvtHQET() : hqetffmodel( 0 ), calcamp( 0 ) {}
40
42 delete hqetffmodel;
43 hqetffmodel = 0;
44 delete calcamp;
45 calcamp = 0;
46}
47
48void EvtHQET::getName( std::string& model_name ) { model_name = "HQET"; }
49
51
53
55 calcamp->CalcAmp( p, _amp2, hqetffmodel );
56}
57
59
60 EvtId parnum, mesnum, lnum, nunum;
61
62 parnum = getParentId();
63 mesnum = getDaug( 0 );
64 lnum = getDaug( 1 );
65 nunum = getDaug( 2 );
66
67 double mymaxprob = calcamp->CalcMaxProb( parnum, mesnum, lnum, nunum, hqetffmodel );
68
69 setProbMax( mymaxprob );
70}
71
73
74 checkNDaug( 3 );
75
76 // We expect the parent to be a scalar
77 // and the daughters to be X lepton neutrino
79
82
84 if ( d1type == EvtSpinType::SCALAR )
85 {
86 checkNArg( 1, 2 );
87 if ( getNArg() == 1 ) hqetffmodel = new EvtHQETFF( getArg( 0 ) );
88 else hqetffmodel = new EvtHQETFF( getArg( 0 ), getArg( 1 ) );
89 calcamp = new EvtSemiLeptonicScalarAmp;
90 }
91 else if ( d1type == EvtSpinType::VECTOR )
92 {
93 checkNArg( 3, 4 );
94 if ( getNArg() == 3 ) hqetffmodel = new EvtHQETFF( getArg( 0 ), getArg( 1 ), getArg( 2 ) );
95 else hqetffmodel = new EvtHQETFF( getArg( 0 ), getArg( 1 ), getArg( 2 ), getArg( 3 ) );
96 calcamp = new EvtSemiLeptonicVectorAmp;
97 }
98 else
99 {
100 report( ERROR, "EvtGen" )
101 << "HQET model handles only scalar and vector meson daughters. Sorry." << endl;
102 ::abort();
103 }
104}
ostream & report(Severity severity, const char *facility)
Definition EvtReport.cc:34
@ ERROR
Definition EvtReport.hh:49
void checkSpinDaughter(int d1, EvtSpinType::spintype sp)
void checkSpinParent(EvtSpinType::spintype sp)
double getArg(int j)
void setProbMax(double prbmx)
EvtId getParentId()
void checkNDaug(int d1, int d2=-1)
EvtId * getDaugs()
void checkNArg(int a1, int a2=-1, int a3=-1, int a4=-1)
EvtId getDaug(int i)
void getName(std::string &name)
Definition EvtHQET.cc:48
void decay(EvtParticle *p)
Definition EvtHQET.cc:52
void init()
Definition EvtHQET.cc:72
EvtDecayBase * clone()
Definition EvtHQET.cc:50
EvtHQET()
Definition EvtHQET.cc:39
void initProbMax()
Definition EvtHQET.cc:58
virtual ~EvtHQET()
Definition EvtHQET.cc:41
Definition EvtId.hh:27
static EvtSpinType::spintype getSpinType(EvtId i)
Definition EvtPDL.hh:66
double initializePhaseSpace(int numdaughter, EvtId *daughters, double poleSize=-1., int whichTwo1=0, int whichTwo2=1)