LwlynSmithFFDeltaS.h
Go to the documentation of this file.
1 //____________________________________________________________________________
2 /*!
3 
4 \class genie::LwlynSmithFFDeltaS.h
5 
6 \brief Is a concrete implementation of the QELFormFactorsModelI:
7  Form Factors for Quasi Elastic CC vN Delta S=1 scattering.
8 
9 \ref Equations for the strange form factors are taken from Cabibbo
10  and Chilton, Phys.Rev. 137 (1965) B1628-B1634 and
11  Alam et al., J.Phys. G42 (2015) no.5, 055107.
12 
13 \author Hugh Gallagher <Hugh.Gallagher \at tufts.edu>
14  Tufts University
15 
16 \created April 10, 2016
17 
18 \cpright Copyright (c) 2003-2020, The GENIE Collaboration
19  For the full text of the license visit http://copyright.genie-mc.org
20 */
21 //____________________________________________________________________________
22 
23 #ifndef _LLEWELLYN_SMITH_DELTAS_FORM_FACTOR_MODEL_H_
24 #define _LLEWELLYN_SMITH_DELTAS_FORM_FACTOR_MODEL_H_
25 
27 
28 namespace genie {
29 
31 
32 public:
34  LwlynSmithFFDeltaS(string config);
35  virtual ~LwlynSmithFFDeltaS();
36 
37  // QELFormFactorModelI interface implementation
38  double F1V (const Interaction * interaction) const;
39  double xiF2V (const Interaction * interaction) const;
40  double FA (const Interaction * interaction) const;
41  double Fp (const Interaction * interaction) const;
42 };
43 
44 } // genie namespace
45 
46 #endif
THE MAIN GENIE PROJECT NAMESPACE
Definition: AlgCmp.h:25
Summary information for an interaction.
Definition: Interaction.h:56
static Config * config
Definition: config.cpp:1054
double xiF2V(const Interaction *interaction) const
Compute the form factor xi*F2V for the input interaction.
double F1V(const Interaction *interaction) const
Compute the form factor F1V for the input interaction.
double FA(const Interaction *interaction) const
Compute the form factor FA for the input interaction.
double Fp(const Interaction *interaction) const
Compute the form factor Fp for the input interaction.
Abstract Base Class: implements the QELFormFactorsModelI interface but can not be instantiated...
Definition: LwlynSmithFF.h:36