Hammer  1.0.0
Helicity Amplitude Module for Matrix Element Reweighting
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
FFBtoDBGLVar.hh
Go to the documentation of this file.
1 ///
2 /// @file FFBtoDBGLVar.hh
3 /// @brief \f$ B \rightarrow D \f$ BGL form factors with variations
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++ -*-
12 #ifndef HAMMER_FF_BDBGLVAR
13 #define HAMMER_FF_BDBGLVAR
14 
16 
17 namespace Hammer {
18 
19  class FFBtoDBGLVar : public FFBGLBase {
20 
21  public:
22  FFBtoDBGLVar();
23 
24  FFBtoDBGLVar(const FFBtoDBGLVar& other) = default;
25  FFBtoDBGLVar& operator=(const FFBtoDBGLVar& other) = delete;
26  FFBtoDBGLVar(FFBtoDBGLVar&& other) = delete;
27  FFBtoDBGLVar& operator=(FFBtoDBGLVar&& other) = delete;
28  virtual ~FFBtoDBGLVar() = default;
29 
30  public:
31 
32  virtual std::unique_ptr<FormFactorBase> clone(const std::string& label);
33 
34  protected:
35  virtual void evalAtPSPoint(const std::vector<double>& point, const std::vector<double>& masses = {});
36 
37  virtual void defineSettings();
38  private:
39  mutable bool initialized;
40  };
41 
42 } // namespace Hammer
43 
44 #endif
virtual ~FFBtoDBGLVar()=default
virtual void evalAtPSPoint(const std::vector< double > &point, const std::vector< double > &masses={})
Definition: FFBtoDBGLVar.cc:89
FFBtoDBGLVar & operator=(const FFBtoDBGLVar &other)=delete
Base class for BGL form factors.
Definition: FFBGLBase.hh:22
const std::vector< double > & masses() const
returns the particle masses of the current decay signature
Definition: ParticleData.cc:44
virtual void defineSettings()
defines new settings for this class
Definition: FFBtoDBGLVar.cc:51
Hammer base class for BGL form factors.
virtual std::unique_ptr< FormFactorBase > clone(const std::string &label)