Hammer  1.0.0
Helicity Amplitude Module for Matrix Element Reweighting
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
FFLbtoLcBLRSVar.hh
Go to the documentation of this file.
1 ///
2 /// @file FFLbtoLcBLRSVar.hh
3 /// @brief \f$ \Lambda_b \rightarrow Lambda_c \f$ BLRS 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_LBLCBLRSVAR
13 #define HAMMER_FF_LBLCBLRSVAR
14 
16 
17 namespace Hammer {
18 
19  class FFLbtoLcBLRSVar : public FFBLRSBase {
20 
21  public:
23 
24  FFLbtoLcBLRSVar(const FFLbtoLcBLRSVar& other) = default;
25  FFLbtoLcBLRSVar& operator=(const FFLbtoLcBLRSVar& other) = delete;
26  FFLbtoLcBLRSVar(FFLbtoLcBLRSVar&& other) = delete;
27  FFLbtoLcBLRSVar& operator=(FFLbtoLcBLRSVar&& other) = delete;
28  virtual ~FFLbtoLcBLRSVar() = default;
29 
30  public:
31  virtual void eval(const Particle& parent, const ParticleList& daughters,
32  const ParticleList& references);
33 
34  virtual std::unique_ptr<FormFactorBase> clone(const std::string& label);
35 
36  protected:
37  virtual void evalAtPSPoint(const std::vector<double>& point, const std::vector<double>& masses = {});
38 
39  virtual void defineSettings();
40  private:
41  mutable bool initialized;
42  };
43 
44 } // namespace Hammer
45 
46 #endif
virtual void eval(const Particle &parent, const ParticleList &daughters, const ParticleList &references)
method to evaluate the object on a specific particle set
virtual void defineSettings()
defines new settings for this class
FFLbtoLcBLRSVar & operator=(const FFLbtoLcBLRSVar &other)=delete
virtual ~FFLbtoLcBLRSVar()=default
virtual void evalAtPSPoint(const std::vector< double > &point, const std::vector< double > &masses={})
Base class for BLR form factors.
Definition: FFBLRSBase.hh:22
const std::vector< double > & masses() const
returns the particle masses of the current decay signature
Definition: ParticleData.cc:44
std::vector< Particle > ParticleList
Definition: Particle.fhh:20
Particle class.
Definition: Particle.hh:30
Hammer base class for BLR form factors.
virtual std::unique_ptr< FormFactorBase > clone(const std::string &label)