Hammer  1.0.0
Helicity Amplitude Module for Matrix Element Reweighting
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
FFRCTBase.cc
Go to the documentation of this file.
1 ///
2 /// @file FFRCTBase.cc
3 /// @brief Hammer base class for RCT 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  FFRCTBase::FFRCTBase() {
19  setGroup("RCT");
20  }
21 
22  void FFRCTBase::addRefs() const {
23  if(!getSettingsHandler()->checkReference("Shekhovtsova:2012ra")){
24  string ref1 =
25  "@article{Shekhovtsova:2012ra,\n"
26  " author = \"Shekhovtsova, O. and Przedzinski, T. and Roig, P. and Was, Z.\",\n"
27  " title = \"{Resonance chiral Lagrangian currents and $\\tau$ decay Monte Carlo}\",\n"
28  " journal = \"Phys. Rev.\",\n"
29  " volume = \"D86\",\n"
30  " year = \"2012\",\n"
31  " pages = \"113008\",\n"
32  " doi = \"10.1103/PhysRevD.86.113008\",\n"
33  " eprint = \"1203.3955\",\n"
34  " archivePrefix = \"arXiv\",\n"
35  " primaryClass = \"hep-ph\",\n"
36  " reportNumber = \"IFJPAN-IV-2011-6, UAB-FT-695, FTUV-2011-09-29, IFIC-11-53, CERN-PH-TH-2012-016\",\n"
37  " SLACcitation = \"%%CITATION = ARXIV:1203.3955;%%\"\n"
38  "}\n";
39  getSettingsHandler()->addReference("Shekhovtsova:2012ra", ref1);
40  }
41  if(!getSettingsHandler()->checkReference("Nugent:2013hxa")){
42  string ref2 =
43  "@article{Nugent:2013hxa,\n"
44  " author = \"Nugent, I. M. and Przedzinski, T. and Roig, P. and Shekhovtsova, O. and Was, Z.\",\n"
45  " title = \"{Resonance chiral Lagrangian currents and experimental data for $\\tau^-\\to\\pi^{-}\\pi^{-}\\pi^{+}\\nu_{\\tau}$}\",\n"
46  " journal = \"Phys. Rev.\",\n"
47  " volume = \"D88\",\n"
48  " year = \"2013\",\n"
49  " pages = \"093012\",\n"
50  " doi = \"10.1103/PhysRevD.88.093012\",\n"
51  " eprint = \"1310.1053\",\n"
52  " archivePrefix = \"arXiv\",\n"
53  " primaryClass = \"hep-ph\",\n"
54  " reportNumber = \"IFJPAN-2013-5, UAB-FT-731\",\n"
55  " SLACcitation = \"%%CITATION = ARXIV:1310.1053;%%\"\n"
56  "}\n";
57  getSettingsHandler()->addReference("Nugent:2013hxa", ref2);
58  }
59  }
60 
61 }
Hammer base class for RCT form factors.