Hammer  1.0.0
Helicity Amplitude Module for Matrix Element Reweighting
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
FFLbtoLcBLRS.hh
Go to the documentation of this file.
1 ///
2 /// @file FFLbtoLcBLRS.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_LBLCBLRS
13 #define HAMMER_FF_LBLCBLRS
14 
16 
17 namespace Hammer {
18 
19  class FFLbtoLcBLRS : public FFBLRSBase {
20 
21  public:
22  FFLbtoLcBLRS();
23 
24  FFLbtoLcBLRS(const FFLbtoLcBLRS& other) = default;
25  FFLbtoLcBLRS& operator=(const FFLbtoLcBLRS& other) = delete;
26  FFLbtoLcBLRS(FFLbtoLcBLRS&& other) = delete;
27  FFLbtoLcBLRS& operator=(FFLbtoLcBLRS&& other) = delete;
28  virtual ~FFLbtoLcBLRS() = 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 evalAtPSPoint(const std::vector< double > &point, const std::vector< double > &masses={})
Definition: FFLbtoLcBLRS.cc:78
virtual void defineSettings()
defines new settings for this class
Definition: FFLbtoLcBLRS.cc:42
virtual void eval(const Particle &parent, const ParticleList &daughters, const ParticleList &references)
method to evaluate the object on a specific particle set
Definition: FFLbtoLcBLRS.cc:62
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
virtual std::unique_ptr< FormFactorBase > clone(const std::string &label)
Particle class.
Definition: Particle.hh:30
virtual ~FFLbtoLcBLRS()=default
Hammer base class for BLR form factors.
FFLbtoLcBLRS & operator=(const FFLbtoLcBLRS &other)=delete