CMS 3D CMS Logo

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

#include <HDRShower.h>

Public Member Functions

bool computeShower ()
 
float getR ()
 
 HDRShower (const RandomEngineAndDistribution *engine, HDShowerParametrization *myParam, EcalHitMaker *myGrid, HcalHitMaker *myHcalHitMaker, int onECAL, double epart)
 
void setFuncParam ()
 
bool setHit (float espot, float theta)
 
void thetaFunction (int nthetaStep)
 
virtual ~HDRShower ()
 

Private Attributes

float decal
 
float depthECAL
 
float depthGAP
 
double depthStart
 
double e
 
float EcalShift
 
float EgridTable [7]
 
float eHDspot
 
std::vector< float > elastspot
 
float EsCut
 
double lambdaEM
 
double lambdaHD
 
float maxDepth
 
int nthetaStep
 
int onEcal
 
bool qstatus
 
const RandomEngineAndDistributionrandom
 
float rpdf [100]
 
EcalHitMakertheGrid
 
HcalHitMakertheHcalHitMaker
 
HDShowerParametrizationtheParam
 
float Theta1amp [7]
 
float Theta1ampSig [7]
 
float Theta1Lambda [7]
 
float Theta1LambdaSig [7]
 
float ThetaLam21 [7]
 
float ThetaLam21Sig [7]
 
std::vector< int > thetaSpots
 
float thetaStep
 
double x0EM
 
double x0HD
 

Detailed Description

Definition at line 22 of file HDRShower.h.

Constructor & Destructor Documentation

◆ HDRShower()

HDRShower::HDRShower ( const RandomEngineAndDistribution engine,
HDShowerParametrization myParam,
EcalHitMaker myGrid,
HcalHitMaker myHcalHitMaker,
int  onECAL,
double  epart 
)

Definition at line 23 of file HDRShower.cc.

References e, EcalShift, eHDspot, EsCut, M_PI, nthetaStep, setFuncParam(), and thetaStep.

29  : theParam(myParam), theGrid(myGrid), theHcalHitMaker(myHcalHitMaker), onEcal(onECAL), e(epart), random(engine) {
30  eHDspot = 0.2;
31  EsCut = 0.050;
32  EcalShift = 0.12;
33  nthetaStep = 10;
34  thetaStep = 0.5 * M_PI / nthetaStep;
35 
36  if (e < 0)
37  e = 0.;
38  setFuncParam();
39 }
int nthetaStep
Definition: HDRShower.h:56
HcalHitMaker * theHcalHitMaker
Definition: HDRShower.h:43
float eHDspot
Definition: HDRShower.h:53
int onEcal
Definition: HDRShower.h:44
double e
Definition: HDRShower.h:45
void setFuncParam()
Definition: HDRShower.cc:204
EcalHitMaker * theGrid
Definition: HDRShower.h:42
HDShowerParametrization * theParam
Definition: HDRShower.h:41
float thetaStep
Definition: HDRShower.h:58
#define M_PI
float EsCut
Definition: HDRShower.h:54
float EcalShift
Definition: HDRShower.h:55
const RandomEngineAndDistribution * random
Definition: HDRShower.h:75

◆ ~HDRShower()

virtual HDRShower::~HDRShower ( )
inlinevirtual

Definition at line 31 of file HDRShower.h.

31 { ; }

Member Function Documentation

◆ computeShower()

bool HDRShower::computeShower ( )

Definition at line 41 of file HDRShower.cc.

References decal, depthECAL, depthGAP, depthStart, EcalHitMaker::ecalHcalGapTotalL0(), EcalShift, EcalHitMaker::ecalTotalL0(), eHDspot, elastspot, RandomEngineAndDistribution::flatShoot(), EcalHitMaker::getPads(), EcalHitMaker::hcalTotalL0(), mps_fire::i, dqmiolumiharvest::j, dqm-mbProfile::log, maxDepth, AlignmentProducer_cff::maxLoops, nthetaStep, onEcal, qstatus, random, setHit(), theGrid, theta(), thetaFunction(), thetaSpots, and thetaStep.

Referenced by CalorimetryManager::HDShowerSimulation().

41  {
42  if (onEcal) {
43  depthECAL = theGrid->ecalTotalL0(); // ECAL depth segment
44  depthGAP = theGrid->ecalHcalGapTotalL0(); // GAP depth segment
45  } else
46  depthECAL = depthGAP = 0;
47 
48  float depthHCAL = theGrid->hcalTotalL0(); // HCAL depth segment
49 
50  // maxDepth = depthECAL + depthGAP + depthHCAL - 1.0;
51  maxDepth = depthECAL + depthHCAL - 0.5;
52  depthStart = log(1. / random->flatShoot()); // starting point lambda unts
53 
54  if (depthStart > maxDepth) {
56  if (depthStart < 0.)
57  depthStart = 0.;
58  }
59 
60  if (depthStart < EcalShift)
62 
63  decal = (depthECAL + depthStart) * 0.5;
64  qstatus = false;
65  if (decal < depthECAL) {
67  // if(!qstatus)
68  // cout<<" depth rejected by getQuads(decal="<<decal<<") status="<<qstatus
69  // <<" depthECAL="<<depthECAL<<endl;
70  }
71 
73  int maxLoops = 10000;
74  for (int itheta = 0; itheta < nthetaStep; itheta++) {
75  float theta, es;
76  for (int i = 0; i <= thetaSpots[itheta]; i++) {
77  if (i == thetaSpots[itheta])
78  es = elastspot[itheta];
79  else
80  es = eHDspot;
81  for (int j = 0; j < maxLoops; j++) {
82  theta = (itheta + random->flatShoot()) * thetaStep;
83  if (setHit(es, theta))
84  break;
85  }
86  }
87  }
88  return (true);
89 }
double ecalHcalGapTotalL0() const
ECAL-HCAL transition.
Definition: EcalHitMaker.h:91
double ecalTotalL0() const
in the ECAL
Definition: EcalHitMaker.h:85
int nthetaStep
Definition: HDRShower.h:56
bool qstatus
Definition: HDRShower.h:63
float eHDspot
Definition: HDRShower.h:53
double depthStart
Definition: HDRShower.h:52
int onEcal
Definition: HDRShower.h:44
std::vector< int > thetaSpots
Definition: HDRShower.h:60
void thetaFunction(int nthetaStep)
Definition: HDRShower.cc:134
float depthECAL
Definition: HDRShower.h:59
bool setHit(float espot, float theta)
Definition: HDRShower.cc:91
EcalHitMaker * theGrid
Definition: HDRShower.h:42
float thetaStep
Definition: HDRShower.h:58
float EcalShift
Definition: HDRShower.h:55
float maxDepth
Definition: HDRShower.h:59
std::vector< float > elastspot
Definition: HDRShower.h:61
bool getPads(double depth, bool inCm=false)
double hcalTotalL0() const
in the HCAL
Definition: EcalHitMaker.h:88
float depthGAP
Definition: HDRShower.h:59
double flatShoot(double xmin=0.0, double xmax=1.0) const
const RandomEngineAndDistribution * random
Definition: HDRShower.h:75
float decal
Definition: HDRShower.h:64
Geom::Theta< T > theta() const

◆ getR()

float HDRShower::getR ( )

Definition at line 119 of file HDRShower.cc.

References l1ctLayer1_cff::dr, RandomEngineAndDistribution::flatShoot(), nano_mu_digi_cff::float, mps_fire::i, lambdaHD, AlCaHLTBitMon_ParallelJobs::p, alignCSCRings::r, R_range, random, and rpdf.

Referenced by setHit().

119  {
120  float p = random->flatShoot();
121  unsigned int i = 1;
122  while (rpdf[i] < p && i < R_range - 1) {
123  i++;
124  }
125  float r;
126  float dr = rpdf[i] - rpdf[i - 1];
127  if (dr != 0.0)
128  r = (float(i) + (p - rpdf[i - 1]) / dr) / lambdaHD;
129  else
130  r = float(i) / lambdaHD;
131  return (r);
132 }
double lambdaHD
Definition: HDRShower.h:51
#define R_range
Definition: HDRShower.h:16
float rpdf[100]
Definition: HDRShower.h:62
double flatShoot(double xmin=0.0, double xmax=1.0) const
const RandomEngineAndDistribution * random
Definition: HDRShower.h:75

◆ setFuncParam()

void HDRShower::setFuncParam ( )

Definition at line 204 of file HDRShower.cc.

References debug, e, HDShowerParametrization::ecalProperties(), EgridTable, JetChargeProducer_cfi::exp, nano_mu_digi_cff::float, HDShowerParametrization::hcalProperties(), mps_fire::i, ECALProperties::interactionLength(), HCALProperties::interactionLength(), lambdaEM, lambdafit, lambdaHD, dqm-mbProfile::log, LogDebug, NEnergyScan, onEcal, funct::pow(), alignCSCRings::r, R_range, HCALProperties::radLenIncm(), rpdf, theParam, Theta1amp, Theta1ampSig, Theta1Lambda, Theta1LambdaSig, ThetaLam21, ThetaLam21Sig, x, and x0HD.

Referenced by HDRShower().

204  {
207  if (onEcal)
209  else
210  lambdaEM = lambdaHD;
211 
212  if (debug)
213  LogDebug("FastCalorimetry") << "setFuncParam-> lambdaEM=" << lambdaEM << " lambdaHD=" << lambdaHD << endl;
214 
215  float _EgridTable[NEnergyScan] = {10, 20, 30, 50, 100, 300, 500};
216  float _Theta1amp[NEnergyScan] = {1.57, 2.05, 2.27, 2.52, 2.66, 2.76, 2.76};
217  float _Theta1ampSig[NEnergyScan] = {2.40, 1.50, 1.25, 1.0, 0.8, 0.52, 0.52};
218 
219  float _Theta1Lambda[NEnergyScan] = {0.086, 0.092, 0.88, 0.80, 0.0713, 0.0536, 0.0536};
220  float _Theta1LambdaSig[NEnergyScan] = {0.038, 0.037, 0.027, 0.03, 0.023, 0.018, 0.018};
221 
222  float _ThetaLam21[NEnergyScan] = {2.8, 2.44, 2.6, 2.77, 3.16, 3.56, 3.56};
223  float _ThetaLam21Sig[NEnergyScan] = {1.8, 0.97, 0.87, 0.77, 0.7, 0.49, 0.49};
224 
225  for (int i = 0; i < NEnergyScan; i++) {
226  EgridTable[i] = _EgridTable[i];
227  Theta1amp[i] = _Theta1amp[i];
228  Theta1ampSig[i] = _Theta1ampSig[i];
229  Theta1Lambda[i] = _Theta1Lambda[i];
230  Theta1LambdaSig[i] = _Theta1LambdaSig[i];
231  ThetaLam21[i] = _ThetaLam21[i];
232  ThetaLam21Sig[i] = _ThetaLam21Sig[i];
233  }
234 
235 #define lambdafit 15.05
236  float R_alfa = -0.0993 + 0.1114 * log(e);
237  float R_p = 0.589191 + 0.0463392 * log(e);
238  float R_beta_lam = (0.54134 - 0.00011148 * e) / 4.0 * lambdafit; //was fitted in 4cmbin
239  float LamOverX0 = lambdaHD / x0HD; // 10.52
240  // int R_range = 100; // 7 lambda
241  // rpdf.erase(rpdf.begin(),rpdf.end());
242 
243  rpdf[0] = 0.;
244  for (int i = 1; i < R_range; i++) {
245  float x = (float(i)) / lambdaHD;
246  float r = pow(x, R_alfa) * (R_p * exp(-R_beta_lam * x) + (1 - R_p) * exp(-LamOverX0 * R_beta_lam * x));
247  rpdf[i] = r;
248  // rpdf.push_back(r);
249  }
250 
251  for (int i = 1; i < R_range; i++)
252  rpdf[i] += rpdf[i - 1];
253  for (int i = 0; i < R_range; i++)
254  rpdf[i] /= rpdf[R_range - 1];
255 }
float Theta1amp[7]
Definition: HDRShower.h:67
double lambdaHD
Definition: HDRShower.h:51
double radLenIncm() const override
Radiation length in cm.
double x0HD
Definition: HDRShower.h:51
#define R_range
Definition: HDRShower.h:16
double interactionLength() const override
Interaction length in cm.
float ThetaLam21[7]
Definition: HDRShower.h:71
int onEcal
Definition: HDRShower.h:44
float Theta1ampSig[7]
Definition: HDRShower.h:68
#define NEnergyScan
Definition: HDRShower.h:14
double e
Definition: HDRShower.h:45
float ThetaLam21Sig[7]
Definition: HDRShower.h:72
float Theta1LambdaSig[7]
Definition: HDRShower.h:70
float EgridTable[7]
Definition: HDRShower.h:66
HDShowerParametrization * theParam
Definition: HDRShower.h:41
#define lambdafit
#define debug
Definition: HDRShower.cc:19
const HCALProperties * hcalProperties() const
float rpdf[100]
Definition: HDRShower.h:62
const ECALProperties * ecalProperties() const
float Theta1Lambda[7]
Definition: HDRShower.h:69
double interactionLength() const override
Interaction length in cm: 18.5 for Standard ECAL.
Power< A, B >::type pow(const A &a, const B &b)
Definition: Power.h:29
double lambdaEM
Definition: HDRShower.h:51
#define LogDebug(id)

◆ setHit()

bool HDRShower::setHit ( float  espot,
float  theta 
)

Definition at line 91 of file HDRShower.cc.

References HcalHitMaker::addHit(), EcalHitMaker::addHit(), funct::cos(), ztail::d, depthECAL, depthGAP, depthStart, RandomEngineAndDistribution::flatShoot(), getR(), M_PI, maxDepth, onEcal, phi, qstatus, random, mps_fire::result, HcalHitMaker::setDepth(), HcalHitMaker::setSpotEnergy(), EcalHitMaker::setSpotEnergy(), funct::sin(), theGrid, theHcalHitMaker, and theta().

Referenced by computeShower().

91  {
92  float phi = 2. * M_PI * random->flatShoot(); // temporary: 1st approximation
93  float rshower = getR(); // temporary: 1st approximation
94 
95  float d = depthStart + rshower * cos(theta);
96  if (d + depthGAP > maxDepth)
97  return (false);
98 
99  // Commented (F.B) to remove a warning. Not used anywhere ?
100  // bool inHcal = !onEcal || d>depthECAL || !qstatus;
101  bool result = false;
102  if (!onEcal || d > depthECAL || !qstatus) { // in HCAL (HF or HB, HE)
103  d += depthGAP;
104  bool setHDdepth = theHcalHitMaker->setDepth(d);
105  if (setHDdepth) {
107  result = theHcalHitMaker->addHit(rshower * sin(theta), phi, 0);
108  } else
109  LogWarning("FastCalorimetry") << " setHit in HCAL failed d=" << d << " maxDepth=" << maxDepth << " onEcal'"
110  << onEcal << endl;
111  } else {
112  // bool status = theGrid->getQuads(d);
113  theGrid->setSpotEnergy(espot);
114  result = theGrid->addHit(rshower * sin(theta), phi, 0);
115  }
116  return (result);
117 }
bool addHit(double r, double phi, unsigned layer=0) override
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
HcalHitMaker * theHcalHitMaker
Definition: HDRShower.h:43
bool qstatus
Definition: HDRShower.h:63
double depthStart
Definition: HDRShower.h:52
int onEcal
Definition: HDRShower.h:44
bool addHit(double r, double phi, unsigned layer=0) override
add the hit in the HCAL in local coordinates
Definition: HcalHitMaker.cc:30
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
float depthECAL
Definition: HDRShower.h:59
void setSpotEnergy(double e) override
Set the spot energy.
Definition: HcalHitMaker.h:26
EcalHitMaker * theGrid
Definition: HDRShower.h:42
float getR()
Definition: HDRShower.cc:119
d
Definition: ztail.py:151
#define M_PI
float maxDepth
Definition: HDRShower.h:59
float depthGAP
Definition: HDRShower.h:59
double flatShoot(double xmin=0.0, double xmax=1.0) const
Log< level::Warning, false > LogWarning
const RandomEngineAndDistribution * random
Definition: HDRShower.h:75
Geom::Theta< T > theta() const
bool setDepth(double, bool inCm=false)
set the depth in X0 or Lambda0 units depending on showerType
void setSpotEnergy(double e) override
Definition: EcalHitMaker.h:112

◆ thetaFunction()

void HDRShower::thetaFunction ( int  nthetaStep)

Definition at line 134 of file HDRShower.cc.

References a, DummyCfis::c, e, EgridTable, eHDspot, elastspot, EsCut, JetChargeProducer_cfi::exp, RandomEngineAndDistribution::flatShoot(), personalPlayback::fn, RandomEngineAndDistribution::gaussShoot(), mps_fire::i, createfilelist::int, ALPAKA_ACCELERATOR_NAMESPACE::vertexFinder::it, dqmdumpme::k, PixelRegions::L1, PixelRegions::L2, dqmiodumpmetadata::n, NEnergyScan, nthetaStep, ALPAKA_ACCELERATOR_NAMESPACE::caPixelDoublets::ntot, AlCaHLTBitMon_ParallelJobs::p, random, theta(), Theta1amp, Theta1ampSig, Theta1Lambda, Theta1LambdaSig, ThetaLam21, ThetaLam21Sig, thetaSpots, and thetaStep.

Referenced by computeShower().

134  {
135  unsigned int i = 0;
136  while (EgridTable[i] < e && i < NEnergyScan - 1) {
137  i++;
138  }
139 
140  float amean, asig, lambda1, lambda1sig, lam21, lam21sig;
141  amean = Theta1amp[i];
142  asig = Theta1ampSig[i];
143  lambda1 = Theta1Lambda[i];
144  lambda1sig = Theta1LambdaSig[i];
145  lam21 = ThetaLam21[i];
146  lam21sig = ThetaLam21Sig[i];
147  if (i == 0)
148  i = 1; //extrapolation to the left
149  float c = (e - EgridTable[i - 1]) / (EgridTable[i] - EgridTable[i - 1]);
150 
151  amean += (Theta1amp[i] - Theta1amp[i - 1]) * c;
152  asig += (Theta1ampSig[i] - Theta1ampSig[i - 1]) * c;
153  lambda1 += (Theta1Lambda[i] - Theta1Lambda[i - 1]) * c;
154  lambda1sig += (Theta1LambdaSig[i] - Theta1LambdaSig[i - 1]) * c;
155  lam21 += (ThetaLam21[i] - ThetaLam21[i - 1]) * c;
156  lam21sig += (ThetaLam21Sig[i] - ThetaLam21Sig[i - 1]) * c;
157 
158  float a = exp(amean + asig * random->gaussShoot());
159  float L1 = lambda1 + lambda1sig * random->gaussShoot();
160  if (L1 < 0.02)
161  L1 = 0.02;
162  float L2 = L1 * (lam21 + lam21sig * random->gaussShoot());
163 
164  vector<double> pdf;
165  pdf.erase(pdf.begin(), pdf.end());
166  thetaSpots.erase(thetaSpots.begin(), thetaSpots.end());
167  elastspot.erase(elastspot.begin(), elastspot.end());
168  double sum = 0;
169  for (int it = 0; it < nthetaStep; it++) {
170  float theta = it * thetaStep;
171  float p = a * exp(L1 * theta) + exp(L2 * theta);
172  sum += p;
173  pdf.push_back(p);
174  }
175  float ntot = e / eHDspot;
176  float esum = 0;
177  for (int it = 0; it < nthetaStep; it++) {
178  float fn = ntot * pdf[it] / sum;
179  thetaSpots.push_back(int(fn));
180  elastspot.push_back((fn - int(fn)) * eHDspot);
181  }
182 
183  for (int it = 0; it < nthetaStep; it++)
184  if (elastspot[it] < EsCut) {
185  esum += elastspot[it];
186  elastspot[it] = 0;
187  }
188 
189  float en = esum / EsCut;
190  int n = int(en);
191  en = esum - n * EsCut;
192 
193  for (int ie = 0; ie <= n; ie++) {
194  int k = int(nthetaStep * random->flatShoot());
195  if (k < 0 || k > nthetaStep - 1)
196  k = k % nthetaStep;
197  if (ie == n)
198  elastspot[k] += en;
199  else
200  elastspot[k] += EsCut;
201  }
202 }
float Theta1amp[7]
Definition: HDRShower.h:67
int nthetaStep
Definition: HDRShower.h:56
float ThetaLam21[7]
Definition: HDRShower.h:71
float eHDspot
Definition: HDRShower.h:53
float Theta1ampSig[7]
Definition: HDRShower.h:68
#define NEnergyScan
Definition: HDRShower.h:14
std::vector< int > thetaSpots
Definition: HDRShower.h:60
double e
Definition: HDRShower.h:45
float ThetaLam21Sig[7]
Definition: HDRShower.h:72
float Theta1LambdaSig[7]
Definition: HDRShower.h:70
float EgridTable[7]
Definition: HDRShower.h:66
double gaussShoot(double mean=0.0, double sigma=1.0) const
float thetaStep
Definition: HDRShower.h:58
float EsCut
Definition: HDRShower.h:54
std::vector< float > elastspot
Definition: HDRShower.h:61
double a
Definition: hdecay.h:121
float Theta1Lambda[7]
Definition: HDRShower.h:69
double flatShoot(double xmin=0.0, double xmax=1.0) const
const RandomEngineAndDistribution * random
Definition: HDRShower.h:75
Geom::Theta< T > theta() const

Member Data Documentation

◆ decal

float HDRShower::decal
private

Definition at line 64 of file HDRShower.h.

Referenced by computeShower().

◆ depthECAL

float HDRShower::depthECAL
private

Definition at line 59 of file HDRShower.h.

Referenced by computeShower(), and setHit().

◆ depthGAP

float HDRShower::depthGAP
private

Definition at line 59 of file HDRShower.h.

Referenced by computeShower(), and setHit().

◆ depthStart

double HDRShower::depthStart
private

Definition at line 52 of file HDRShower.h.

Referenced by computeShower(), and setHit().

◆ e

double HDRShower::e
private

Definition at line 45 of file HDRShower.h.

Referenced by HDRShower(), setFuncParam(), and thetaFunction().

◆ EcalShift

float HDRShower::EcalShift
private

Definition at line 55 of file HDRShower.h.

Referenced by computeShower(), and HDRShower().

◆ EgridTable

float HDRShower::EgridTable[7]
private

Definition at line 66 of file HDRShower.h.

Referenced by setFuncParam(), and thetaFunction().

◆ eHDspot

float HDRShower::eHDspot
private

Definition at line 53 of file HDRShower.h.

Referenced by computeShower(), HDRShower(), and thetaFunction().

◆ elastspot

std::vector<float> HDRShower::elastspot
private

Definition at line 61 of file HDRShower.h.

Referenced by computeShower(), and thetaFunction().

◆ EsCut

float HDRShower::EsCut
private

Definition at line 54 of file HDRShower.h.

Referenced by HDRShower(), and thetaFunction().

◆ lambdaEM

double HDRShower::lambdaEM
private

Definition at line 51 of file HDRShower.h.

Referenced by setFuncParam().

◆ lambdaHD

double HDRShower::lambdaHD
private

Definition at line 51 of file HDRShower.h.

Referenced by getR(), and setFuncParam().

◆ maxDepth

float HDRShower::maxDepth
private

Definition at line 59 of file HDRShower.h.

Referenced by computeShower(), and setHit().

◆ nthetaStep

int HDRShower::nthetaStep
private

Definition at line 56 of file HDRShower.h.

Referenced by computeShower(), HDRShower(), and thetaFunction().

◆ onEcal

int HDRShower::onEcal
private

Definition at line 44 of file HDRShower.h.

Referenced by computeShower(), setFuncParam(), and setHit().

◆ qstatus

bool HDRShower::qstatus
private

Definition at line 63 of file HDRShower.h.

Referenced by computeShower(), and setHit().

◆ random

const RandomEngineAndDistribution* HDRShower::random
private

Definition at line 75 of file HDRShower.h.

Referenced by computeShower(), getR(), setHit(), and thetaFunction().

◆ rpdf

float HDRShower::rpdf[100]
private

Definition at line 62 of file HDRShower.h.

Referenced by getR(), and setFuncParam().

◆ theGrid

EcalHitMaker* HDRShower::theGrid
private

Definition at line 42 of file HDRShower.h.

Referenced by computeShower(), and setHit().

◆ theHcalHitMaker

HcalHitMaker* HDRShower::theHcalHitMaker
private

Definition at line 43 of file HDRShower.h.

Referenced by setHit().

◆ theParam

HDShowerParametrization* HDRShower::theParam
private

Definition at line 41 of file HDRShower.h.

Referenced by setFuncParam().

◆ Theta1amp

float HDRShower::Theta1amp[7]
private

Definition at line 67 of file HDRShower.h.

Referenced by setFuncParam(), and thetaFunction().

◆ Theta1ampSig

float HDRShower::Theta1ampSig[7]
private

Definition at line 68 of file HDRShower.h.

Referenced by setFuncParam(), and thetaFunction().

◆ Theta1Lambda

float HDRShower::Theta1Lambda[7]
private

Definition at line 69 of file HDRShower.h.

Referenced by setFuncParam(), and thetaFunction().

◆ Theta1LambdaSig

float HDRShower::Theta1LambdaSig[7]
private

Definition at line 70 of file HDRShower.h.

Referenced by setFuncParam(), and thetaFunction().

◆ ThetaLam21

float HDRShower::ThetaLam21[7]
private

Definition at line 71 of file HDRShower.h.

Referenced by setFuncParam(), and thetaFunction().

◆ ThetaLam21Sig

float HDRShower::ThetaLam21Sig[7]
private

Definition at line 72 of file HDRShower.h.

Referenced by setFuncParam(), and thetaFunction().

◆ thetaSpots

std::vector<int> HDRShower::thetaSpots
private

Definition at line 60 of file HDRShower.h.

Referenced by computeShower(), and thetaFunction().

◆ thetaStep

float HDRShower::thetaStep
private

Definition at line 58 of file HDRShower.h.

Referenced by computeShower(), HDRShower(), and thetaFunction().

◆ x0EM

double HDRShower::x0EM
private

Definition at line 51 of file HDRShower.h.

◆ x0HD

double HDRShower::x0HD
private

Definition at line 51 of file HDRShower.h.

Referenced by setFuncParam().