a Code for the Combination of Indirect and Direct Constraints on High Energy Physics Models Logo
muVBFpVH_Hmumu Class Reference

#include <HiggsThObservables.h>

+ Inheritance diagram for muVBFpVH_Hmumu:

Detailed Description

Author
HEPfit Collaboration

Definition at line 4421 of file HiggsThObservables.h.

Public Member Functions

double computeThValue ()
 
 muVBFpVH_Hmumu (const StandardModel &SM_i, const double sqrt_s_i)
 Constructor. More...
 
- Public Member Functions inherited from ThObservable
double getBinMax ()
 A get method to get the maximum value of the bin. More...
 
double getBinMin ()
 A get method to get the minimum value of the bin. More...
 
const StandardModelgetModel ()
 A get method to get the model. More...
 
const std::vector< std::string > getParametersForObservable ()
 A get method to get the parameters for the specific observable. More...
 
void setBinMax (double max)
 A set method to set the maximum value of the bin. More...
 
void setBinMin (double min)
 A set method to set the minimum value of the bin. More...
 
void setParametersForObservable (std::vector< std::string > parametersForObservable_i)
 A set method to get the parameters for the specific observable. More...
 
 ThObservable (const StandardModel &SM_i)
 Constructor. More...
 
 ThObservable (const ThObservable &orig)
 The copy constructor. More...
 
virtual ~ThObservable ()
 The default destructor. More...
 

Private Attributes

const NPbasemyNPbase
 
const double sqrt_s
 

Additional Inherited Members

- Protected Attributes inherited from ThObservable
double max
 the bin maximum. More...
 
double min
 The bin minimum. More...
 
std::vector< std::string > parametersForObservable
 a vector of parameter namesfor the specific observable More...
 
const StandardModelSM
 A reference to an object of StandardMode class. More...
 

Constructor & Destructor Documentation

◆ muVBFpVH_Hmumu()

muVBFpVH_Hmumu::muVBFpVH_Hmumu ( const StandardModel SM_i,
const double  sqrt_s_i 
)

Constructor.

Parameters
[in]SM_ia reference to a StandardModel object or to any extension of it
[in]sqrt_s_ithe center-of-mass energy in TeV

Definition at line 2935 of file HiggsThObservables.cpp.

2936: ThObservable(SM_i), sqrt_s(sqrt_s_i)
2937{
2938 if ((myNPbase = dynamic_cast<const NPbase*> (&SM)) == NULL)
2939 throw std::runtime_error("muVBFpVH_Hmumu called with a class whose parent is not NPbase");
2940}
The auxiliary base model class for other model classes.
Definition: NPbase.h:66
ThObservable(const StandardModel &SM_i)
Constructor.
Definition: ThObservable.h:32
const StandardModel & SM
A reference to an object of StandardMode class.
Definition: ThObservable.h:121
const NPbase * myNPbase

Member Function Documentation

◆ computeThValue()

double muVBFpVH_Hmumu::computeThValue ( )
virtual
Returns

Implements ThObservable.

Definition at line 2942 of file HiggsThObservables.cpp.

2943{
2944
2945 //VM:Note that these values are valid for 13 TeV, they are not general
2946 //We should access the SM function that has all the values (for the
2947 //different energies). The values are slightly different, we should
2948 //check this.
2949 //Ref: https://www.hepdata.net/record/ins2104706 Figure2a (symmetrized)
2950 double xsSM_VBF = 3.49948;
2951 double xsSM_WH = 1.21539;
2952 double xsSM_ZH = 0.795910;
2953 //double xsSM_VBF = myNPbase->computeSigmaVBF(sqrt_s);
2954 //double xsSM_WH = myNPbase->computeSigmaWH(sqrt_s);
2955 //double xsSM_ZH = myNPbase->computeSigmaZH(sqrt_s);
2956 if ((this->getModel()).isModelLinearized() || (this->getModel()).isModelNPquadratic()) {
2957 //AG: Most general expression including quadratic corrections.
2958 // If FlagQuadraticTerms=false, the quadratic pieces become 0 in NPSMEFTd6General
2959 double muProd1 = ( xsSM_VBF*(myNPbase->delta_muVBF_1(sqrt_s)) + xsSM_WH*(myNPbase->delta_muWH_1(sqrt_s)) + xsSM_ZH*(myNPbase->delta_muZH_1(sqrt_s)) )/(xsSM_VBF+xsSM_WH+xsSM_ZH);
2960 double muProd2 = ( xsSM_VBF*(myNPbase->delta_muVBF_2(sqrt_s)) + xsSM_WH*(myNPbase->delta_muWH_2(sqrt_s)) + xsSM_ZH*(myNPbase->delta_muZH_2(sqrt_s)) )/(xsSM_VBF+xsSM_WH+xsSM_ZH);
2961 double dGammaR1 = myNPbase->deltaGammaHmumuRatio1();
2962 double dGammaR2 = myNPbase->deltaGammaHmumuRatio2();
2963
2964 double dGammaRTot1 = myNPbase->deltaGammaTotalRatio1();
2965 double dGammaRTot2 = myNPbase->deltaGammaTotalRatio2();
2966 double Br1 = dGammaR1-dGammaRTot1;
2967 double Br2 = dGammaR2 -dGammaRTot2 - dGammaR1*dGammaRTot1 + pow(dGammaRTot1,2.0);
2968
2969 double mu;
2970
2971 mu = 1.0 + (muProd1 + Br1) + (muProd2 + Br2 + muProd1*Br1);
2972
2973 if (mu < 0) return std::numeric_limits<double>::quiet_NaN();
2974
2975 return mu;
2976
2977 } else {
2978
2979 //VM: Just in case someone wants to add directly the production*decay
2980 //(which is the observable we fit at the end).
2981 double NPmuVBFpVH_Hmumu = myNPbase->muVBFpVH_Hmumu(sqrt_s);
2982 if(NPmuVBFpVH_Hmumu==1.0){
2983 return ( (xsSM_VBF*(myNPbase->muVBF(sqrt_s))+xsSM_WH*(myNPbase->muWH(sqrt_s))+xsSM_ZH*(myNPbase->muZH(sqrt_s))) / (xsSM_VBF+xsSM_WH+xsSM_ZH) )*(myNPbase->BrHmumuRatio()) ;
2984 } else {
2985 return NPmuVBFpVH_Hmumu;
2986 }
2987 }
2988}
virtual const double muVBF(const double sqrt_s) const
The ratio between the vector-boson fusion Higgs production cross-section in the current model and in...
Definition: NPbase.h:1127
virtual const double delta_muZH_2(const double sqrt_s) const
Definition: NPbase.h:1893
virtual const double deltaGammaTotalRatio1() const
Definition: NPbase.h:2015
virtual const double deltaGammaHmumuRatio1() const
Definition: NPbase.h:1988
virtual const double deltaGammaHmumuRatio2() const
Definition: NPbase.h:1992
virtual const double muZH(const double sqrt_s) const
The ratio between the Z-Higgs associated production cross-section in the current model and in the St...
Definition: NPbase.h:1251
virtual const double delta_muVBF_1(const double sqrt_s) const
Definition: NPbase.h:1871
virtual const double muVBFpVH_Hmumu(const double sqrt_s) const
Definition: NPbase.h:1780
virtual const double deltaGammaTotalRatio2() const
Definition: NPbase.h:2019
virtual const double muWH(const double sqrt_s) const
The ratio between the W-Higgs associated production cross-section in the current model and in the St...
Definition: NPbase.h:1229
virtual const double delta_muVBF_2(const double sqrt_s) const
Definition: NPbase.h:1875
virtual const double BrHmumuRatio() const
The ratio of the Br in the current model and in the Standard Model.
Definition: NPbase.h:2241
virtual const double delta_muZH_1(const double sqrt_s) const
Definition: NPbase.h:1889
virtual const double delta_muWH_1(const double sqrt_s) const
Definition: NPbase.h:1880
virtual const double delta_muWH_2(const double sqrt_s) const
Definition: NPbase.h:1884
const StandardModel & getModel()
A get method to get the model.
Definition: ThObservable.h:100

Member Data Documentation

◆ myNPbase

const NPbase* muVBFpVH_Hmumu::myNPbase
private

Definition at line 4438 of file HiggsThObservables.h.

◆ sqrt_s

const double muVBFpVH_Hmumu::sqrt_s
private

Definition at line 4439 of file HiggsThObservables.h.


The documentation for this class was generated from the following files: