CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
EMECALShowerParametrization Class Reference

#include <EMECALShowerParametrization.h>

Public Member Functions

double correlationAlphaT (double lny) const
 
double correlationAlphaTHom (double lny) const
 
double correlationAlphaTSam (double lny) const
 
const ECALPropertiesecalProperties () const
 
 EMECALShowerParametrization (const ECALProperties *ecal, const HCALProperties *hcal, const PreshowerLayer1Properties *layer1, const PreshowerLayer2Properties *layer2, const std::vector< double > &coreIntervals, const std::vector< double > &tailIntervals, double RCFact=1., double RTFact=1.)
 
const std::vector< double > & getCoreIntervals () const
 
const std::vector< double > & getTailIntervals () const
 
const HCALPropertieshcalProperties () const
 
const PreshowerLayer1Propertieslayer1Properties () const
 
const PreshowerLayer2Propertieslayer2Properties () const
 
double meanAlpha (double lny) const
 
double meanAlphaHom (double lny) const
 
double meanAlphaSam (double lny) const
 
double meanAlphaSpot (double alpha) const
 
double meanAlphaSpotHom (double alpha) const
 
double meanAlphaSpotSam (double alpha) const
 
double meanLnAlpha (double lny) const
 
double meanLnAlphaHom (double lny) const
 
double meanLnAlphaSam (double lny) const
 
double meanLnT (double lny) const
 
double meanLnTHom (double lny) const
 
double meanLnTSam (double lny) const
 
double meanT (double lny) const
 
double meanTHom (double lny) const
 
double meanTSam (double lny) const
 
double meanTSpot (double T) const
 
double meanTSpotHom (double T) const
 
double meanTSpotSam (double T) const
 
double nSpots (double E) const
 
double nSpotsHom (double E) const
 
double nSpotsSam (double E) const
 
double p (double tau, double E) const
 
double pHom (double tau, double E) const
 
double pSam (double tau, double E) const
 
double rC (double tau, double E) const
 
double rCHom (double tau, double E) const
 
double rCSam (double tau, double E) const
 
double rT (double tau, double E) const
 
double rTHom (double tau, double E) const
 
double rTSam (double tau, double E) const
 
double sigmaLnAlpha (double lny) const
 
double sigmaLnAlphaHom (double lny) const
 
double sigmaLnAlphaSam (double lny) const
 
double sigmaLnT (double lny) const
 
double sigmaLnTHom (double lny) const
 
double sigmaLnTSam (double lny) const
 
virtual ~EMECALShowerParametrization ()
 

Private Member Functions

double k1 () const
 
double k2 () const
 
double k3 () const
 
double k4 (double E) const
 
double p1 () const
 
double p2 () const
 
double p3 (double E) const
 
double z1 (double E) const
 
double z2 () const
 

Private Attributes

const std::vector< double > & theCore
 
const ECALPropertiestheECAL
 
const HCALPropertiestheHCAL
 
const PreshowerLayer1PropertiestheLayer1
 
const PreshowerLayer2PropertiestheLayer2
 
double theRcfactor
 
double theRtfactor
 
const std::vector< double > & theTail
 

Detailed Description

Electromagnetic Shower parametrization utilities according to G. Grindhammer and S. Peters, hep-ex/0001020, Appendix A

Author
Patrick Janot
Date
: 25-Jan-2004

Definition at line 19 of file EMECALShowerParametrization.h.

Constructor & Destructor Documentation

◆ EMECALShowerParametrization()

EMECALShowerParametrization::EMECALShowerParametrization ( const ECALProperties ecal,
const HCALProperties hcal,
const PreshowerLayer1Properties layer1,
const PreshowerLayer2Properties layer2,
const std::vector< double > &  coreIntervals,
const std::vector< double > &  tailIntervals,
double  RCFact = 1.,
double  RTFact = 1. 
)
inline

Definition at line 21 of file EMECALShowerParametrization.h.

29  : theECAL(ecal),
30  theHCAL(hcal),
31  theLayer1(layer1),
32  theLayer2(layer2),
33  theCore(coreIntervals),
34  theTail(tailIntervals),
35  theRcfactor(RCFact),
36  theRtfactor(RTFact) {}

◆ ~EMECALShowerParametrization()

virtual EMECALShowerParametrization::~EMECALShowerParametrization ( )
inlinevirtual

Definition at line 38 of file EMECALShowerParametrization.h.

38 {}

Member Function Documentation

◆ correlationAlphaT()

double EMECALShowerParametrization::correlationAlphaT ( double  lny) const
inline

Definition at line 97 of file EMECALShowerParametrization.h.

97  {
98  if (theECAL->isHom())
99  return correlationAlphaTHom(lny);
100  return correlationAlphaTSam(lny);
101  }

References correlationAlphaTHom(), correlationAlphaTSam(), ECALProperties::isHom(), and theECAL.

Referenced by EMShower::EMShower().

◆ correlationAlphaTHom()

double EMECALShowerParametrization::correlationAlphaTHom ( double  lny) const
inline

Definition at line 113 of file EMECALShowerParametrization.h.

113 { return 0.705 - 0.023 * lny; }

Referenced by correlationAlphaT().

◆ correlationAlphaTSam()

double EMECALShowerParametrization::correlationAlphaTSam ( double  lny) const
inline

Definition at line 129 of file EMECALShowerParametrization.h.

129 { return 0.784 - 0.023 * lny; }

Referenced by correlationAlphaT().

◆ ecalProperties()

const ECALProperties* EMECALShowerParametrization::ecalProperties ( ) const
inline

Definition at line 219 of file EMECALShowerParametrization.h.

219 { return theECAL; }

References theECAL.

Referenced by EMShower::EMShower().

◆ getCoreIntervals()

const std::vector<double>& EMECALShowerParametrization::getCoreIntervals ( ) const
inline

Definition at line 227 of file EMECALShowerParametrization.h.

227 { return theCore; }

References theCore.

Referenced by EMShower::setIntervals().

◆ getTailIntervals()

const std::vector<double>& EMECALShowerParametrization::getTailIntervals ( ) const
inline

Definition at line 229 of file EMECALShowerParametrization.h.

229 { return theTail; }

References theTail.

Referenced by EMShower::setIntervals().

◆ hcalProperties()

const HCALProperties* EMECALShowerParametrization::hcalProperties ( ) const
inline

Definition at line 221 of file EMECALShowerParametrization.h.

221 { return theHCAL; }

References theHCAL.

Referenced by EMShower::EMShower().

◆ k1()

double EMECALShowerParametrization::k1 ( ) const
inlineprivate

Definition at line 250 of file EMECALShowerParametrization.h.

250 { return 0.6590 - 0.00309 * theECAL->theZeff(); }

References theECAL, and ECALProperties::theZeff().

Referenced by rTHom().

◆ k2()

double EMECALShowerParametrization::k2 ( ) const
inlineprivate

Definition at line 251 of file EMECALShowerParametrization.h.

251 { return 0.6450; }

Referenced by rTHom().

◆ k3()

double EMECALShowerParametrization::k3 ( ) const
inlineprivate

Definition at line 252 of file EMECALShowerParametrization.h.

252 { return -2.59; }

Referenced by rTHom().

◆ k4()

double EMECALShowerParametrization::k4 ( double  E) const
inlineprivate

Definition at line 253 of file EMECALShowerParametrization.h.

253 { return 0.3585 + 0.0421 * std::log(E); }

References dqm-mbProfile::log.

Referenced by rTHom().

◆ layer1Properties()

const PreshowerLayer1Properties* EMECALShowerParametrization::layer1Properties ( ) const
inline

Definition at line 223 of file EMECALShowerParametrization.h.

223 { return theLayer1; }

References theLayer1.

Referenced by EMShower::EMShower().

◆ layer2Properties()

const PreshowerLayer2Properties* EMECALShowerParametrization::layer2Properties ( ) const
inline

Definition at line 225 of file EMECALShowerParametrization.h.

225 { return theLayer2; }

References theLayer2.

Referenced by EMShower::EMShower().

◆ meanAlpha()

double EMECALShowerParametrization::meanAlpha ( double  lny) const
inline

Definition at line 50 of file EMECALShowerParametrization.h.

50  {
51  if (theECAL->isHom())
52  return meanAlphaHom(lny);
53  return meanAlphaSam(lny);
54  }

References ECALProperties::isHom(), meanAlphaHom(), meanAlphaSam(), and theECAL.

Referenced by EMShower::EMShower().

◆ meanAlphaHom()

double EMECALShowerParametrization::meanAlphaHom ( double  lny) const
inline

Definition at line 61 of file EMECALShowerParametrization.h.

61 { return 0.21 + (0.492 + 2.38 / theECAL->theZeff()) * lny; }

References theECAL, and ECALProperties::theZeff().

Referenced by meanAlpha(), and meanAlphaSam().

◆ meanAlphaSam()

double EMECALShowerParametrization::meanAlphaSam ( double  lny) const
inline

Definition at line 69 of file EMECALShowerParametrization.h.

69 { return meanAlphaHom(lny) - 0.444 / theECAL->theFs(); }

References meanAlphaHom(), theECAL, and ECALProperties::theFs().

Referenced by meanAlpha().

◆ meanAlphaSpot()

double EMECALShowerParametrization::meanAlphaSpot ( double  alpha) const
inline

Definition at line 195 of file EMECALShowerParametrization.h.

195  {
196  if (theECAL->isHom())
197  return meanAlphaSpotHom(alpha);
198  return meanAlphaSpotSam(alpha);
199  }

References zMuMuMuonUserData::alpha, ECALProperties::isHom(), meanAlphaSpotHom(), meanAlphaSpotSam(), and theECAL.

Referenced by EMShower::EMShower().

◆ meanAlphaSpotHom()

double EMECALShowerParametrization::meanAlphaSpotHom ( double  alpha) const
inline

Definition at line 207 of file EMECALShowerParametrization.h.

207 { return alpha * (0.639 + 0.00334 * theECAL->theZeff()); }

References zMuMuMuonUserData::alpha, theECAL, and ECALProperties::theZeff().

Referenced by meanAlphaSpot(), and meanAlphaSpotSam().

◆ meanAlphaSpotSam()

double EMECALShowerParametrization::meanAlphaSpotSam ( double  alpha) const
inline

Definition at line 215 of file EMECALShowerParametrization.h.

215  {
216  return meanAlphaSpotHom(alpha) * (0.844 + 0.0026 * theECAL->theZeff());
217  }

References zMuMuMuonUserData::alpha, meanAlphaSpotHom(), theECAL, and ECALProperties::theZeff().

Referenced by meanAlphaSpot().

◆ meanLnAlpha()

double EMECALShowerParametrization::meanLnAlpha ( double  lny) const
inline

Definition at line 85 of file EMECALShowerParametrization.h.

85  {
86  if (theECAL->isHom())
87  return meanLnAlphaHom(lny);
88  return meanLnAlphaSam(lny);
89  }

References ECALProperties::isHom(), meanLnAlphaHom(), meanLnAlphaSam(), and theECAL.

Referenced by EMShower::EMShower().

◆ meanLnAlphaHom()

double EMECALShowerParametrization::meanLnAlphaHom ( double  lny) const
inline

Definition at line 109 of file EMECALShowerParametrization.h.

109 { return std::log(0.81 + (0.458 + 2.26 / theECAL->theZeff()) * lny); }

References dqm-mbProfile::log, theECAL, and ECALProperties::theZeff().

Referenced by meanLnAlpha(), and meanLnAlphaSam().

◆ meanLnAlphaSam()

double EMECALShowerParametrization::meanLnAlphaSam ( double  lny) const
inline

Definition at line 123 of file EMECALShowerParametrization.h.

123  {
124  return log(std::exp(meanLnAlphaHom(lny)) - 0.476 / theECAL->theFs());
125  }

References JetChargeProducer_cfi::exp, dqm-mbProfile::log, meanLnAlphaHom(), theECAL, and ECALProperties::theFs().

Referenced by meanLnAlpha().

◆ meanLnT()

double EMECALShowerParametrization::meanLnT ( double  lny) const
inline

Definition at line 73 of file EMECALShowerParametrization.h.

73  {
74  if (theECAL->isHom())
75  return meanLnTHom(lny);
76  return meanLnTSam(lny);
77  }

References ECALProperties::isHom(), meanLnTHom(), meanLnTSam(), and theECAL.

Referenced by EMShower::EMShower().

◆ meanLnTHom()

double EMECALShowerParametrization::meanLnTHom ( double  lny) const
inline

Definition at line 105 of file EMECALShowerParametrization.h.

105 { return std::log(lny - 0.812); }

References dqm-mbProfile::log.

Referenced by meanLnT(), and meanLnTSam().

◆ meanLnTSam()

double EMECALShowerParametrization::meanLnTSam ( double  lny) const
inline

Definition at line 117 of file EMECALShowerParametrization.h.

117  {
118  return log(std::exp(meanLnTHom(lny)) - 0.55 / theECAL->theFs() - 0.69 * (1 - theECAL->ehat()));
119  }

References ECALProperties::ehat(), JetChargeProducer_cfi::exp, dqm-mbProfile::log, meanLnTHom(), theECAL, and ECALProperties::theFs().

Referenced by meanLnT().

◆ meanT()

double EMECALShowerParametrization::meanT ( double  lny) const
inline

Definition at line 44 of file EMECALShowerParametrization.h.

44  {
45  if (theECAL->isHom())
46  return meanTHom(lny);
47  return meanTSam(lny);
48  }

References ECALProperties::isHom(), meanTHom(), meanTSam(), and theECAL.

Referenced by EMShower::EMShower().

◆ meanTHom()

double EMECALShowerParametrization::meanTHom ( double  lny) const
inline

Definition at line 58 of file EMECALShowerParametrization.h.

58 { return lny - 0.858; }

Referenced by meanT(), and meanTSam().

◆ meanTSam()

double EMECALShowerParametrization::meanTSam ( double  lny) const
inline

Definition at line 65 of file EMECALShowerParametrization.h.

65  {
66  return meanTHom(lny) - 0.59 / theECAL->theFs() - 0.53 * (1. - theECAL->ehat());
67  }

References ECALProperties::ehat(), meanTHom(), theECAL, and ECALProperties::theFs().

Referenced by meanT().

◆ meanTSpot()

double EMECALShowerParametrization::meanTSpot ( double  T) const
inline

Definition at line 189 of file EMECALShowerParametrization.h.

189  {
190  if (theECAL->isHom())
191  return meanTSpotHom(T);
192  return meanTSpotSam(T);
193  }

References ECALProperties::isHom(), meanTSpotHom(), meanTSpotSam(), and theECAL.

Referenced by EMShower::EMShower().

◆ meanTSpotHom()

double EMECALShowerParametrization::meanTSpotHom ( double  T) const
inline

Definition at line 205 of file EMECALShowerParametrization.h.

205 { return T * (0.698 + 0.00212 * theECAL->theZeff()); }

References theECAL, and ECALProperties::theZeff().

Referenced by meanTSpot(), and meanTSpotSam().

◆ meanTSpotSam()

double EMECALShowerParametrization::meanTSpotSam ( double  T) const
inline

Definition at line 213 of file EMECALShowerParametrization.h.

213 { return meanTSpotHom(T) * (0.813 + 0.0019 * theECAL->theZeff()); }

References meanTSpotHom(), theECAL, and ECALProperties::theZeff().

Referenced by meanTSpot().

◆ nSpots()

double EMECALShowerParametrization::nSpots ( double  E) const
inline

Definition at line 183 of file EMECALShowerParametrization.h.

183  {
184  if (theECAL->isHom())
185  return nSpotsHom(E);
186  return nSpotsSam(E);
187  }

References ECALProperties::isHom(), nSpotsHom(), nSpotsSam(), and theECAL.

Referenced by EMShower::EMShower().

◆ nSpotsHom()

double EMECALShowerParametrization::nSpotsHom ( double  E) const
inline

Definition at line 203 of file EMECALShowerParametrization.h.

203 { return 93. * std::log(theECAL->theZeff()) * std::pow(E, 0.876); }

References dqm-mbProfile::log, funct::pow(), theECAL, and ECALProperties::theZeff().

Referenced by nSpots().

◆ nSpotsSam()

double EMECALShowerParametrization::nSpotsSam ( double  E) const
inline

Definition at line 211 of file EMECALShowerParametrization.h.

211 { return 10.3 / theECAL->resE() * std::pow(E, 0.959); }

References funct::pow(), ECALProperties::resE(), and theECAL.

Referenced by nSpots().

◆ p()

double EMECALShowerParametrization::p ( double  tau,
double  E 
) const
inline

Definition at line 147 of file EMECALShowerParametrization.h.

147  {
148  if (theECAL->isHom())
149  return pHom(tau, E);
150  return pSam(tau, E);
151  }

References ECALProperties::isHom(), pHom(), pSam(), metsig::tau, and theECAL.

Referenced by EMShower::compute(), and Electron.Electron::ptErr().

◆ p1()

double EMECALShowerParametrization::p1 ( ) const
inlineprivate

Definition at line 243 of file EMECALShowerParametrization.h.

243 { return 2.632 - 0.00094 * theECAL->theZeff(); }

References theECAL, and ECALProperties::theZeff().

Referenced by pHom().

◆ p2()

double EMECALShowerParametrization::p2 ( ) const
inlineprivate

Definition at line 244 of file EMECALShowerParametrization.h.

244 { return 0.401 + 0.00187 * theECAL->theZeff(); }

References theECAL, and ECALProperties::theZeff().

Referenced by pHom().

◆ p3()

double EMECALShowerParametrization::p3 ( double  E) const
inlineprivate

Definition at line 245 of file EMECALShowerParametrization.h.

245 { return 1.313 - 0.0686 * std::log(E); }

References dqm-mbProfile::log.

Referenced by pHom().

◆ pHom()

double EMECALShowerParametrization::pHom ( double  tau,
double  E 
) const
inline

Definition at line 161 of file EMECALShowerParametrization.h.

161  {
162  double arg = (p2() - tau) / p3(E);
163  return p1() * std::exp(arg - std::exp(arg));
164  }

References JetChargeProducer_cfi::exp, p1(), p2(), p3(), and metsig::tau.

Referenced by p(), and pSam().

◆ pSam()

double EMECALShowerParametrization::pSam ( double  tau,
double  E 
) const
inline

Definition at line 176 of file EMECALShowerParametrization.h.

176  {
177  return pHom(tau, E) +
178  (1 - theECAL->ehat()) * (0.348 - 0.642 / theECAL->theFs() * std::exp(-1. * std::pow((tau - 1), 2)));
179  }

References ECALProperties::ehat(), JetChargeProducer_cfi::exp, pHom(), funct::pow(), metsig::tau, theECAL, and ECALProperties::theFs().

Referenced by p().

◆ rC()

double EMECALShowerParametrization::rC ( double  tau,
double  E 
) const
inline

Definition at line 135 of file EMECALShowerParametrization.h.

135  {
136  if (theECAL->isHom())
137  return rCHom(tau, E);
138  return rCSam(tau, E);
139  }

References ECALProperties::isHom(), rCHom(), rCSam(), metsig::tau, and theECAL.

Referenced by EMShower::compute().

◆ rCHom()

double EMECALShowerParametrization::rCHom ( double  tau,
double  E 
) const
inline

Definition at line 155 of file EMECALShowerParametrization.h.

155 { return theRcfactor * (z1(E) + z2() * tau); }

References metsig::tau, theRcfactor, z1(), and z2().

Referenced by rC(), and rCSam().

◆ rCSam()

double EMECALShowerParametrization::rCSam ( double  tau,
double  E 
) const
inline

Definition at line 168 of file EMECALShowerParametrization.h.

168  {
169  return rCHom(tau, E) - 0.0203 * (1 - theECAL->ehat()) + 0.0397 / theECAL->theFs() * std::exp(-1. * tau);
170  }

References ECALProperties::ehat(), JetChargeProducer_cfi::exp, rCHom(), metsig::tau, theECAL, and ECALProperties::theFs().

Referenced by rC().

◆ rT()

double EMECALShowerParametrization::rT ( double  tau,
double  E 
) const
inline

Definition at line 141 of file EMECALShowerParametrization.h.

141  {
142  if (theECAL->isHom())
143  return rTHom(tau, E);
144  return rTSam(tau, E);
145  }

References ECALProperties::isHom(), rTHom(), rTSam(), metsig::tau, and theECAL.

Referenced by EMShower::compute().

◆ rTHom()

double EMECALShowerParametrization::rTHom ( double  tau,
double  E 
) const
inline

Definition at line 157 of file EMECALShowerParametrization.h.

157  {
158  return theRtfactor * k1() * (std::exp(k3() * (tau - k2())) + std::exp(k4(E) * (tau - k2())));
159  }

References JetChargeProducer_cfi::exp, k1(), k2(), k3(), k4(), metsig::tau, and theRtfactor.

Referenced by rT(), and rTSam().

◆ rTSam()

double EMECALShowerParametrization::rTSam ( double  tau,
double  E 
) const
inline

Definition at line 172 of file EMECALShowerParametrization.h.

172  {
173  return rTHom(tau, E) - 0.14 * (1 - theECAL->ehat()) - 0.495 / theECAL->theFs() * std::exp(-1. * tau);
174  }

References ECALProperties::ehat(), JetChargeProducer_cfi::exp, rTHom(), metsig::tau, theECAL, and ECALProperties::theFs().

Referenced by rT().

◆ sigmaLnAlpha()

double EMECALShowerParametrization::sigmaLnAlpha ( double  lny) const
inline

Definition at line 91 of file EMECALShowerParametrization.h.

91  {
92  if (theECAL->isHom())
93  return sigmaLnAlphaHom(lny);
94  return sigmaLnAlphaSam(lny);
95  }

References ECALProperties::isHom(), sigmaLnAlphaHom(), sigmaLnAlphaSam(), and theECAL.

Referenced by EMShower::EMShower().

◆ sigmaLnAlphaHom()

double EMECALShowerParametrization::sigmaLnAlphaHom ( double  lny) const
inline

Definition at line 111 of file EMECALShowerParametrization.h.

111 { return 1. / (-0.58 + 0.86 * lny); }

Referenced by sigmaLnAlpha().

◆ sigmaLnAlphaSam()

double EMECALShowerParametrization::sigmaLnAlphaSam ( double  lny) const
inline

Definition at line 127 of file EMECALShowerParametrization.h.

127 { return 1. / (-0.82 + 0.79 * lny); }

Referenced by sigmaLnAlpha().

◆ sigmaLnT()

double EMECALShowerParametrization::sigmaLnT ( double  lny) const
inline

Definition at line 79 of file EMECALShowerParametrization.h.

79  {
80  if (theECAL->isHom())
81  return sigmaLnTHom(lny);
82  return sigmaLnTSam(lny);
83  }

References ECALProperties::isHom(), sigmaLnTHom(), sigmaLnTSam(), and theECAL.

Referenced by EMShower::EMShower().

◆ sigmaLnTHom()

double EMECALShowerParametrization::sigmaLnTHom ( double  lny) const
inline

Definition at line 107 of file EMECALShowerParametrization.h.

107 { return 1. / (-1.4 + 1.26 * lny); }

Referenced by sigmaLnT().

◆ sigmaLnTSam()

double EMECALShowerParametrization::sigmaLnTSam ( double  lny) const
inline

Definition at line 121 of file EMECALShowerParametrization.h.

121 { return 1. / (-2.5 + 1.25 * lny); }

Referenced by sigmaLnT().

◆ z1()

double EMECALShowerParametrization::z1 ( double  E) const
inlineprivate

Definition at line 247 of file EMECALShowerParametrization.h.

247 { return 0.0251 + 0.00319 * std::log(E); }

References dqm-mbProfile::log.

Referenced by rCHom().

◆ z2()

double EMECALShowerParametrization::z2 ( ) const
inlineprivate

Definition at line 248 of file EMECALShowerParametrization.h.

248 { return 0.1162 - 0.000381 * theECAL->theZeff(); }

References theECAL, and ECALProperties::theZeff().

Referenced by rCHom().

Member Data Documentation

◆ theCore

const std::vector<double>& EMECALShowerParametrization::theCore
private

Definition at line 237 of file EMECALShowerParametrization.h.

Referenced by getCoreIntervals().

◆ theECAL

const ECALProperties* EMECALShowerParametrization::theECAL
private

◆ theHCAL

const HCALProperties* EMECALShowerParametrization::theHCAL
private

Definition at line 233 of file EMECALShowerParametrization.h.

Referenced by hcalProperties().

◆ theLayer1

const PreshowerLayer1Properties* EMECALShowerParametrization::theLayer1
private

Definition at line 234 of file EMECALShowerParametrization.h.

Referenced by layer1Properties().

◆ theLayer2

const PreshowerLayer2Properties* EMECALShowerParametrization::theLayer2
private

Definition at line 235 of file EMECALShowerParametrization.h.

Referenced by layer2Properties().

◆ theRcfactor

double EMECALShowerParametrization::theRcfactor
private

Definition at line 240 of file EMECALShowerParametrization.h.

Referenced by rCHom().

◆ theRtfactor

double EMECALShowerParametrization::theRtfactor
private

Definition at line 241 of file EMECALShowerParametrization.h.

Referenced by rTHom().

◆ theTail

const std::vector<double>& EMECALShowerParametrization::theTail
private

Definition at line 238 of file EMECALShowerParametrization.h.

Referenced by getTailIntervals().

EMECALShowerParametrization::k3
double k3() const
Definition: EMECALShowerParametrization.h:252
EMECALShowerParametrization::pHom
double pHom(double tau, double E) const
Definition: EMECALShowerParametrization.h:161
EMECALShowerParametrization::meanLnAlphaHom
double meanLnAlphaHom(double lny) const
Definition: EMECALShowerParametrization.h:109
EMECALShowerParametrization::theCore
const std::vector< double > & theCore
Definition: EMECALShowerParametrization.h:237
metsig::tau
Definition: SignAlgoResolutions.h:49
EMECALShowerParametrization::theLayer1
const PreshowerLayer1Properties * theLayer1
Definition: EMECALShowerParametrization.h:234
EMECALShowerParametrization::k4
double k4(double E) const
Definition: EMECALShowerParametrization.h:253
EMECALShowerParametrization::meanLnTHom
double meanLnTHom(double lny) const
Definition: EMECALShowerParametrization.h:105
ECALProperties::ehat
double ehat() const
ehat = e/mip of the calorimeter. 0 for homogeneous one
Definition: ECALProperties.h:55
zMuMuMuonUserData.alpha
alpha
zGenParticlesMatch = cms.InputTag(""),
Definition: zMuMuMuonUserData.py:9
hcal
Definition: ConfigurationDatabase.cc:13
EMECALShowerParametrization::meanTHom
double meanTHom(double lny) const
Definition: EMECALShowerParametrization.h:58
EMECALShowerParametrization::p2
double p2() const
Definition: EMECALShowerParametrization.h:244
EMECALShowerParametrization::pSam
double pSam(double tau, double E) const
Definition: EMECALShowerParametrization.h:176
EMECALShowerParametrization::theTail
const std::vector< double > & theTail
Definition: EMECALShowerParametrization.h:238
EMECALShowerParametrization::rTHom
double rTHom(double tau, double E) const
Definition: EMECALShowerParametrization.h:157
EMECALShowerParametrization::meanAlphaHom
double meanAlphaHom(double lny) const
Definition: EMECALShowerParametrization.h:61
EMECALShowerParametrization::meanAlphaSpotHom
double meanAlphaSpotHom(double alpha) const
Definition: EMECALShowerParametrization.h:207
ECALProperties::theFs
double theFs() const
Sampling fraction Fs of the calorimeter. 0 for homogeneous one.
Definition: ECALProperties.h:52
EMECALShowerParametrization::sigmaLnAlphaHom
double sigmaLnAlphaHom(double lny) const
Definition: EMECALShowerParametrization.h:111
EMECALShowerParametrization::meanTSpotSam
double meanTSpotSam(double T) const
Definition: EMECALShowerParametrization.h:213
EMECALShowerParametrization::p1
double p1() const
Definition: EMECALShowerParametrization.h:243
EMECALShowerParametrization::meanTSam
double meanTSam(double lny) const
Definition: EMECALShowerParametrization.h:65
EMECALShowerParametrization::theHCAL
const HCALProperties * theHCAL
Definition: EMECALShowerParametrization.h:233
EMECALShowerParametrization::z1
double z1(double E) const
Definition: EMECALShowerParametrization.h:247
EMECALShowerParametrization::z2
double z2() const
Definition: EMECALShowerParametrization.h:248
EMECALShowerParametrization::sigmaLnTSam
double sigmaLnTSam(double lny) const
Definition: EMECALShowerParametrization.h:121
EMECALShowerParametrization::k2
double k2() const
Definition: EMECALShowerParametrization.h:251
ECALProperties::resE
double resE() const
a rough estimate of ECAL resolution sigma/E = resE/sqrt(E)
Definition: ECALProperties.h:58
EMECALShowerParametrization::correlationAlphaTHom
double correlationAlphaTHom(double lny) const
Definition: EMECALShowerParametrization.h:113
EMECALShowerParametrization::rTSam
double rTSam(double tau, double E) const
Definition: EMECALShowerParametrization.h:172
EMECALShowerParametrization::rCSam
double rCSam(double tau, double E) const
Definition: EMECALShowerParametrization.h:168
EMECALShowerParametrization::p3
double p3(double E) const
Definition: EMECALShowerParametrization.h:245
EMECALShowerParametrization::meanTSpotHom
double meanTSpotHom(double T) const
Definition: EMECALShowerParametrization.h:205
EMECALShowerParametrization::k1
double k1() const
Definition: EMECALShowerParametrization.h:250
EMECALShowerParametrization::nSpotsHom
double nSpotsHom(double E) const
Definition: EMECALShowerParametrization.h:203
EMECALShowerParametrization::rCHom
double rCHom(double tau, double E) const
Definition: EMECALShowerParametrization.h:155
EMECALShowerParametrization::sigmaLnAlphaSam
double sigmaLnAlphaSam(double lny) const
Definition: EMECALShowerParametrization.h:127
EMECALShowerParametrization::meanAlphaSam
double meanAlphaSam(double lny) const
Definition: EMECALShowerParametrization.h:69
EMECALShowerParametrization::meanLnAlphaSam
double meanLnAlphaSam(double lny) const
Definition: EMECALShowerParametrization.h:123
EMECALShowerParametrization::theRtfactor
double theRtfactor
Definition: EMECALShowerParametrization.h:241
EMECALShowerParametrization::correlationAlphaTSam
double correlationAlphaTSam(double lny) const
Definition: EMECALShowerParametrization.h:129
ECALProperties::isHom
bool isHom() const
a rough estimate of ECAL resolution sigma/E = resE/sqrt(E)
Definition: ECALProperties.h:67
EMECALShowerParametrization::theLayer2
const PreshowerLayer2Properties * theLayer2
Definition: EMECALShowerParametrization.h:235
EMECALShowerParametrization::sigmaLnTHom
double sigmaLnTHom(double lny) const
Definition: EMECALShowerParametrization.h:107
T
long double T
Definition: Basic3DVectorLD.h:48
dqm-mbProfile.log
log
Definition: dqm-mbProfile.py:17
bsc_activity_cfg.ecal
ecal
Definition: bsc_activity_cfg.py:25
EMECALShowerParametrization::meanAlphaSpotSam
double meanAlphaSpotSam(double alpha) const
Definition: EMECALShowerParametrization.h:215
EMECALShowerParametrization::theRcfactor
double theRcfactor
Definition: EMECALShowerParametrization.h:240
funct::arg
A arg
Definition: Factorize.h:36
funct::pow
Power< A, B >::type pow(const A &a, const B &b)
Definition: Power.h:30
EMECALShowerParametrization::meanLnTSam
double meanLnTSam(double lny) const
Definition: EMECALShowerParametrization.h:117
JetChargeProducer_cfi.exp
exp
Definition: JetChargeProducer_cfi.py:6
ECALProperties::theZeff
double theZeff() const override
Effective Z: 68.36 for Standard ECAL.
Definition: ECALProperties.h:25
EMECALShowerParametrization::nSpotsSam
double nSpotsSam(double E) const
Definition: EMECALShowerParametrization.h:211
EMECALShowerParametrization::theECAL
const ECALProperties * theECAL
Definition: EMECALShowerParametrization.h:232