Hammer  1.0.0
Helicity Amplitude Module for Matrix Element Reweighting
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
FFBtoD1BLR.hh
Go to the documentation of this file.
1 ///
2 /// @file FFBtoD1BLR.hh
3 /// @brief \f$ B \rightarrow D_1 \f$ 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++ -*-
12 #ifndef HAMMER_FF_BDSSD1BLR
13 #define HAMMER_FF_BDSSD1BLR
14 
16 
17 namespace Hammer {
18 
19  class FFBtoD1BLR : public FFBLRBase {
20 
21  public:
22  FFBtoD1BLR();
23 
24  FFBtoD1BLR(const FFBtoD1BLR& other) = default;
25  FFBtoD1BLR& operator=(const FFBtoD1BLR& other) = delete;
26  FFBtoD1BLR(FFBtoD1BLR&& other) = delete;
27  FFBtoD1BLR& operator=(FFBtoD1BLR&& other) = delete;
28  virtual ~FFBtoD1BLR() = 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 void defineSettings()
defines new settings for this class
Definition: FFBtoD1BLR.cc:48
virtual void evalAtPSPoint(const std::vector< double > &point, const std::vector< double > &masses={})
Definition: FFBtoD1BLR.cc:70
FFBtoD1BLR & operator=(const FFBtoD1BLR &other)=delete
virtual std::unique_ptr< FormFactorBase > clone(const std::string &label)
Definition: FFBtoD1BLR.cc:157
const std::vector< double > & masses() const
returns the particle masses of the current decay signature
Definition: ParticleData.cc:44
Base class for BLR form factors.
Definition: FFBLRBase.hh:22
Hammer base class for BLR form factors.
virtual ~FFBtoD1BLR()=default