Hammer  1.0.0
Helicity Amplitude Module for Matrix Element Reweighting
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
FFBLRSBase.cc
Go to the documentation of this file.
1 ///
2 /// @file FFBLRSBase.cc
3 /// @brief Hammer base class for BLR 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  FFBLRSBase::FFBLRSBase() {
19  setGroup("BLRS");
20  }
21 
22  void FFBLRSBase::addRefs() const {
23  if(!getSettingsHandler()->checkReference("Bernlochner:2018kxh")){
24  string ref1 =
25  " @article{Bernlochner:2018kxh,\n"
26  " author = \"Bernlochner, Florian U. and Ligeti, Zoltan and Robinson, Dean J. and Sutcliffe, William L.\",\n"
27  " title = \"{New predictions for $\\Lambda_b\\to\\Lambda_c$ semileptonic decays and tests of heavy quark symmetry}\",\n"
28  " journal = \"Phys. Rev. Lett.\",\n"
29  " volume = \"121\",\n"
30  " year = \"2018\",\n"
31  " number = \"20\",\n"
32  " pages = \"202001\",\n"
33  " doi = \"10.1103/PhysRevLett.121.202001\",\n"
34  " eprint = \"1808.09464\",\n"
35  " archivePrefix = \"arXiv\",\n"
36  " primaryClass = \"hep-ph\",\n"
37  " SLACcitation = \"%%CITATION = ARXIV:1808.09464;%%\"\n"
38  "}\n";
39  getSettingsHandler()->addReference("Bernlochner:2018kxh", ref1);
40  }
41  if(!getSettingsHandler()->checkReference("Bernlochner:2018bfn")){
42  string ref2 =
43  "@article{Bernlochner:2018bfn,\n"
44  " author = \"Bernlochner, Florian U. and Ligeti, Zoltan and Robinson, Dean J. and Sutcliffe, William L.\",\n"
45  " title = \"{Precise predictions for $\\Lambda_b \\to \\Lambda_c$ semileptonic decays}\",\n"
46  " journal = \"Phys. Rev.\",\n"
47  " volume = \"D99\",\n"
48  " year = \"2019\",\n"
49  " number = \"5\",\n"
50  " pages = \"055008\",\n"
51  " doi = \"10.1103/PhysRevD.99.055008\",\n"
52  " eprint = \"1812.07593\",\n"
53  " archivePrefix = \"arXiv\",\n"
54  " primaryClass = \"hep-ph\",\n"
55  " SLACcitation = \"%%CITATION = ARXIV:1812.07593;%%\"\n"
56  "}\n";
57  getSettingsHandler()->addReference("Bernlochner:2018bfn", ref2);
58  }
59  }
60 }
Hammer base class for BLR form factors.