9 #include "Math/GenVector/RotationZ.h"
14 #include "CLHEP/Random/RandFlat.h"
15 #include "CLHEP/Random/RandGaussQ.h"
16 #include "CLHEP/Units/GlobalPhysicalConstants.h"
17 #include "CLHEP/Units/GlobalSystemOfUnits.h"
30 ELECTRON_DIFFUSION_COEFF(0.0161),
31 theMagneticField(nullptr) {
59 CLHEP::HepRandomEngine *engine) {
63 LogTrace(
"CSCDriftSim") <<
"CSCDriftSim: ionization cluster at: " <<
pos;
69 clusterPos = yShift + clusterPos;
81 ycell = clusterPos.z() /
specs->anodeCathodeSpacing();
82 zcell = 2. * clusterPos.y() /
specs->wireSpacing();
84 LogTrace(
"CSCDriftSim") <<
"CSCDriftSim: bz " <<
bz <<
" avgDrift " <<
avgDrift() <<
" wireAngle "
87 double avgPathLength, pathSigma, avgDriftTime, driftTimeSigma;
88 static const float B_FIELD_CUT = 15.f;
89 if (fabs(
bz) < B_FIELD_CUT) {
102 double pathLength =
std::max(CLHEP::RandGaussQ::shoot(engine, avgPathLength, pathSigma), 0.);
107 CLHEP::RandGaussQ::shoot(engine, 0., diffusionSigma);
110 double driftTime =
std::max(CLHEP::RandGaussQ::shoot(engine, avgDriftTime, driftTimeSigma), 0.);
115 static const double f_collected = 0.82;
124 float t =
simHit.tof() + driftTime;
125 LogTrace(
"CSCDriftSim") <<
"CSCDriftSim: tof = " <<
simHit.tof() <<
" driftTime = " << driftTime
133 double returnVal = 0.;
135 double x = CLHEP::RandFlat::shoot(engine);
159 LogTrace(
"CSCDriftSim") <<
"CSCDriftSim: avalanche fluc " << returnVal <<
" " <<
x;