CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Public Member Functions | Private Attributes
PtHatRapReweightUserHook Class Reference

#include <ReweightUserHooks.h>

Inheritance diagram for PtHatRapReweightUserHook:

Public Member Functions

double biasSelectionBy (const Pythia8::SigmaProcess *sigmaProcessPtr, const Pythia8::PhaseSpace *phaseSpacePtr, bool inEvent) override
 
bool canBiasSelection () override
 
 PtHatRapReweightUserHook (const std::string &_yLabsigma_func, double _yLab_power, const std::string &_yCMsigma_func, double _yCM_power, double _pTHatMin, double _pTHatMax, double _pt=15, double _power=4.5)
 
 ~PtHatRapReweightUserHook () override
 

Private Attributes

double power
 
double pt
 
double pTHatMax
 
double pTHatMin
 
double yCM_power
 
TF1 yCMsigma
 
std::string yCMsigma_func
 
double yLab_power
 
TF1 yLabsigma
 
std::string yLabsigma_func
 

Detailed Description

Definition at line 116 of file ReweightUserHooks.h.

Constructor & Destructor Documentation

PtHatRapReweightUserHook::PtHatRapReweightUserHook ( const std::string &  _yLabsigma_func,
double  _yLab_power,
const std::string &  _yCMsigma_func,
double  _yCM_power,
double  _pTHatMin,
double  _pTHatMax,
double  _pt = 15,
double  _power = 4.5 
)
inline

Definition at line 118 of file ReweightUserHooks.h.

References pTHatMax, pTHatMin, yCMsigma, yLabsigma, and yLabsigma_func.

126  : yLabsigma_func(_yLabsigma_func),
127  yCMsigma_func(_yCMsigma_func),
128  yLab_power(_yLab_power),
129  yCM_power(_yCM_power),
130  pTHatMin(_pTHatMin),
131  pTHatMax(_pTHatMax),
132  pt(_pt),
133  power(_power) {
134  // empirical parametrizations defined in configuration file
135  yLabsigma = TF1("yLabsigma", yLabsigma_func.c_str(), pTHatMin, pTHatMax);
136  yCMsigma = TF1("yCMsigma", yLabsigma_func.c_str(), pTHatMin, pTHatMax);
137  }
PtHatRapReweightUserHook::~PtHatRapReweightUserHook ( )
inlineoverride

Definition at line 138 of file ReweightUserHooks.h.

138 {}

Member Function Documentation

double PtHatRapReweightUserHook::biasSelectionBy ( const Pythia8::SigmaProcess *  sigmaProcessPtr,
const Pythia8::PhaseSpace *  phaseSpacePtr,
bool  inEvent 
)
inlineoverride

Definition at line 142 of file ReweightUserHooks.h.

References funct::exp(), log, funct::pow(), power, pt, yCM_power, yCMsigma, yLab_power, and yLabsigma.

144  {
145  //the variable selBias of the base class should be used;
146  if ((sigmaProcessPtr->nFinal() == 2)) {
147  double x1 = phaseSpacePtr->x1();
148  double x2 = phaseSpacePtr->x2();
149  double yLab = 0.5 * log(x1 / x2);
150  double yCM = 0.5 * log(phaseSpacePtr->tHat() / phaseSpacePtr->uHat());
151  double pTHat = phaseSpacePtr->pTHat();
152  double sigmaLab = yLabsigma.Eval(pTHat);
153  double sigmaCM = yCMsigma.Eval(pTHat);
154  // empirical reweighting function
155  selBias = pow(pTHat / pt, power) * exp(pow(fabs(yLab), yLab_power) / (2 * sigmaLab * sigmaLab) +
156  pow(fabs(yCM), yCM_power) / (2 * sigmaCM * sigmaCM));
157  return selBias;
158  }
159  selBias = 1.;
160  return selBias;
161  }
static std::vector< std::string > checklist log
Exp< T >::type exp(const T &t)
Definition: Exp.h:22
Power< A, B >::type pow(const A &a, const B &b)
Definition: Power.h:29
bool PtHatRapReweightUserHook::canBiasSelection ( )
inlineoverride

Definition at line 140 of file ReweightUserHooks.h.

140 { return true; }

Member Data Documentation

double PtHatRapReweightUserHook::power
private

Definition at line 165 of file ReweightUserHooks.h.

Referenced by biasSelectionBy().

double PtHatRapReweightUserHook::pt
private
double PtHatRapReweightUserHook::pTHatMax
private

Definition at line 165 of file ReweightUserHooks.h.

Referenced by PtHatRapReweightUserHook().

double PtHatRapReweightUserHook::pTHatMin
private

Definition at line 165 of file ReweightUserHooks.h.

Referenced by PtHatRapReweightUserHook().

double PtHatRapReweightUserHook::yCM_power
private

Definition at line 165 of file ReweightUserHooks.h.

Referenced by biasSelectionBy().

TF1 PtHatRapReweightUserHook::yCMsigma
private

Definition at line 166 of file ReweightUserHooks.h.

Referenced by biasSelectionBy(), and PtHatRapReweightUserHook().

std::string PtHatRapReweightUserHook::yCMsigma_func
private

Definition at line 164 of file ReweightUserHooks.h.

double PtHatRapReweightUserHook::yLab_power
private

Definition at line 165 of file ReweightUserHooks.h.

Referenced by biasSelectionBy().

TF1 PtHatRapReweightUserHook::yLabsigma
private

Definition at line 166 of file ReweightUserHooks.h.

Referenced by biasSelectionBy(), and PtHatRapReweightUserHook().

std::string PtHatRapReweightUserHook::yLabsigma_func
private

Definition at line 164 of file ReweightUserHooks.h.

Referenced by PtHatRapReweightUserHook().