Hammer  1.0.0
Helicity Amplitude Module for Matrix Element Reweighting
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
FFBtoD0starBLR.hh
Go to the documentation of this file.
1 ///
2 /// @file FFBtoD0starBLR.hh
3 /// @brief \f$ B \rightarrow D_0^* \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_BDSSD0STARBLR
13 #define HAMMER_FF_BDSSD0STARBLR
14 
16 
17 namespace Hammer {
18 
19  class FFBtoD0starBLR : public FFBLRBase {
20 
21  public:
23 
24  FFBtoD0starBLR(const FFBtoD0starBLR& other) = default;
25  FFBtoD0starBLR& operator=(const FFBtoD0starBLR& other) = delete;
26  FFBtoD0starBLR(FFBtoD0starBLR&& other) = delete;
27  FFBtoD0starBLR& operator=(FFBtoD0starBLR&& other) = delete;
28  virtual ~FFBtoD0starBLR() = 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 evalAtPSPoint(const std::vector< double > &point, const std::vector< double > &masses={})
virtual void defineSettings()
defines new settings for this class
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 std::unique_ptr< FormFactorBase > clone(const std::string &label)
virtual ~FFBtoD0starBLR()=default
FFBtoD0starBLR & operator=(const FFBtoD0starBLR &other)=delete