Hammer  1.0.0
Helicity Amplitude Module for Matrix Element Reweighting
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
FFPCRBase.cc
Go to the documentation of this file.
1 ///
2 /// @file FFPCRBase.cc
3 /// @brief Hammer base class for PCR 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  FFPCRBase::FFPCRBase() {
19  setGroup("PCR");
20  }
21 
22  void FFPCRBase::addRefs() const {
23  if(!getSettingsHandler()->checkReference("Pervin:2005ve")){
24  string ref =
25  "@article{Pervin:2005ve,\n"
26  " author = \"Pervin, Muslema and Roberts, Winston and Capstick, Simon\",\n"
27  " title = \"{Semileptonic decays of heavy lambda baryons in a quark model}\",\n"
28  " journal = \"Phys. Rev.\",\n"
29  " volume = \"C72\",\n"
30  " year = \"2005\",\n"
31  " pages = \"035201\",\n"
32  " doi = \"10.1103/PhysRevC.72.035201\",\n"
33  " eprint = \"nucl-th/0503030\",\n"
34  " archivePrefix = \"arXiv\",\n"
35  " primaryClass = \"nucl-th\",\n"
36  " reportNumber = \"JLAB-THY-05-304\",\n"
37  " SLACcitation = \"%%CITATION = NUCL-TH/0503030;%%\"\n"
38  "}\n";
39  getSettingsHandler()->addReference("Pervin:2005ve", ref);
40  }
41  }
42 
43 }
Hammer base class for PCR form factors.