Hammer  1.0.0
Helicity Amplitude Module for Matrix Element Reweighting
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
FFBLRBase.cc
Go to the documentation of this file.
1 ///
2 /// @file FFBLRBase.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  FFBLRBase::FFBLRBase() {
19  setGroup("BLR");
20  }
21 
22  void FFBLRBase::addRefs() const {
23  if(!getSettingsHandler()->checkReference("Bernlochner:2016bci")){
24  string ref1 =
25  "@article{Bernlochner:2016bci,\n"
26  " author = \"Bernlochner, Florian U. and Ligeti, Zoltan\",\n"
27  " title = \"{Semileptonic $B_{(s)}$ decays to excited charmed mesons with $e,\\mu,\\tau$ and searching for new physics with $R(D^{**})$}\",\n"
28  " journal = \"Phys. Rev.\",\n"
29  " volume = \"D95\",\n"
30  " year = \"2017\",\n"
31  " number = \"1\",\n"
32  " pages = \"014022\",\n"
33  " doi = \"10.1103/PhysRevD.95.014022\",\n"
34  " eprint = \"1606.09300\",\n"
35  " archivePrefix = \"arXiv\",\n"
36  " primaryClass = \"hep-ph\",\n"
37  " SLACcitation = \"%%CITATION = ARXIV:1606.09300;%%\"\n"
38  "}\n";
39  getSettingsHandler()->addReference("Bernlochner:2016bci", ref1);
40  }
41  if(!getSettingsHandler()->checkReference("Bernlochner:2017jxt")){
42  string ref2 =
43  "@article{Bernlochner:2017jxt,\n"
44  " author = \"Bernlochner, Florian U. and Ligeti, Zoltan and Robinson, Dean J.\",\n"
45  " title = \"{Model independent analysis of semileptonic $B$ decays to $D^{**}$ for arbitrary new physics}\",\n"
46  " journal = \"Phys. Rev.\",\n"
47  " volume = \"D97\",\n"
48  " year = \"2018\",\n"
49  " number = \"7\",\n"
50  " pages = \"075011\",\n"
51  " doi = \"10.1103/PhysRevD.97.075011\",\n"
52  " eprint = \"1711.03110\",\n"
53  " archivePrefix = \"arXiv\",\n"
54  " primaryClass = \"hep-ph\",\n"
55  " SLACcitation = \"%%CITATION = ARXIV:1711.03110;%%\"\n"
56  "}\n";
57  getSettingsHandler()->addReference("Bernlochner:2017jxt", ref2);
58  }
59  }
60 }
Hammer base class for BLR form factors.