Hammer  1.0.0
Helicity Amplitude Module for Matrix Element Reweighting
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
FFLLSWBase.cc
Go to the documentation of this file.
1 ///
2 /// @file FFLLSWBase.cc
3 /// @brief Hammer base class for LLSW form factors
4 ///
5 
6 //**** This file is a part of the HAMMER library
7 //**** Copyright (C) 2016 - 2020 The HAMMER Collaboration
8 //**** HAMMER is licensed under version 3 of the GPL; see COPYING for details
9 //**** Please note the MCnet academic guidelines; see GUIDELINES for details
10 
11 // -*- C++ -*-
13 
14 using namespace std;
15 
16 namespace Hammer {
17 
18  FFLLSWBase::FFLLSWBase() {
19  setGroup("LLSW");
20  }
21 
22  void FFLLSWBase::addRefs() const {
23  if(!getSettingsHandler()->checkReference("Leibovich:1997tu")){
24  string ref1 =
25  "@article{Leibovich:1997tu,\n"
26  " author = \"Leibovich, Adam K. and Ligeti, Zoltan and Stewart, Iain W. and Wise, Mark B.\",\n"
27  " title = \"{Model independent results for B ---> D1(2420) lepton anti-neutrino and B ---> D2* (2460) lepton anti-neutrino at order Lambda(QCD) / m(c,b)}\",\n"
28  " journal = \"Phys. Rev. Lett.\",\n"
29  " volume = \"78\",\n"
30  " year = \"1997\",\n"
31  " pages = \"3995-3998\",\n"
32  " doi = \"10.1103/PhysRevLett.78.3995\",\n"
33  " eprint = \"hep-ph/9703213\",\n"
34  " archivePrefix = \"arXiv\",\n"
35  " primaryClass = \"hep-ph\",\n"
36  " reportNumber = \"CALT-68-2102\",\n"
37  " SLACcitation = \"%%CITATION = HEP-PH/9703213;%%\"\n"
38  "}\n";
39  getSettingsHandler()->addReference("Leibovich:1997tu", ref1);
40  }
41  if(!getSettingsHandler()->checkReference("Leibovich:1997em")){
42  string ref2 =
43  "@article{Leibovich:1997em,\n"
44  " author = \"Leibovich, Adam K. and Ligeti, Zoltan and Stewart, Iain W. and Wise, Mark B.\",\n"
45  " title = \"{Semileptonic B decays to excited charmed mesons}\",\n"
46  " journal = \"Phys. Rev.\",\n"
47  " volume = \"D57\",\n"
48  " year = \"1998\",\n"
49  " pages = \"308-330\",\n"
50  " doi = \"10.1103/PhysRevD.57.308\",\n"
51  " eprint = \"hep-ph/9705467\",\n"
52  " archivePrefix = \"arXiv\",\n"
53  " primaryClass = \"hep-ph\",\n"
54  " reportNumber = \"CALT-68-2120\",\n"
55  " SLACcitation = \"%%CITATION = HEP-PH/9705467;%%\"\n"
56  "}\n";
57  getSettingsHandler()->addReference("Leibovich:1997em", ref2);
58  }
59  }
60 }
Hammer base class for LLSW form factors.