25 #include "CLHEP/Random/RandGaussQ.h" 26 #include "CLHEP/Units/GlobalSystemOfUnits.h" 27 #include "CLHEP/Units/GlobalPhysicalConstants.h" 29 #include "HepMC/SimpleVector.h" 34 readDB_ =
p.getParameter<
bool>(
"readDB");
36 fX0 =
p.getParameter<
double>(
"X0") * cm;
37 fY0 =
p.getParameter<
double>(
"Y0") * cm;
38 fZ0 =
p.getParameter<
double>(
"Z0") * cm;
39 fSigmaZ =
p.getParameter<
double>(
"SigmaZ") * cm;
40 fbetastar =
p.getParameter<
double>(
"BetaStar") * cm;
41 femittance =
p.getParameter<
double>(
"Emittance") * cm;
42 fTimeOffset =
p.getParameter<
double>(
"TimeOffset") * ns * c_light;
44 setBoost(
p.getParameter<
double>(
"Alpha") * radian,
p.getParameter<
double>(
"Phi") * radian);
46 throw cms::Exception(
"Configuration") <<
"Error in BetafuncEvtVtxGenerator: " 47 <<
"Illegal resolution in Z (SigmaZ is negative)";
53 beamToken_ = esConsumes<SimBeamSpotObjects, SimBeamSpotObjectsRcd, edm::Transition::BeginLuminosityBlock>();
67 fX0 = beamhandle->
x() * cm;
68 fY0 = beamhandle->
y() * cm;
69 fZ0 = beamhandle->
z() * cm;
81 double tmp_sigz = CLHEP::RandGaussQ::shoot(engine, 0.,
fSigmaZ);
86 tmp_sigx /=
sqrt(2.0);
87 X = CLHEP::RandGaussQ::shoot(engine, 0., tmp_sigx) +
fX0;
91 tmp_sigy /=
sqrt(2.0);
92 Y = CLHEP::RandGaussQ::shoot(engine, 0., tmp_sigy) +
fY0;
94 double tmp_sigt = CLHEP::RandGaussQ::shoot(engine, 0.,
fSigmaZ);
97 return HepMC::FourVector(
X,
Y,
Z,
T);
107 TMatrixD tmpboost(4, 4);
115 tmpboost(0, 0) = 1. /
cos(
phi);
125 tmpboost(2, 2) =
cos(
phi);
141 throw cms::Exception(
"LogicError") <<
"Error in BetafuncEvtVtxGenerator::sigmaZ: " 142 <<
"Illegal resolution in Z (negative)";
double sigmaZ() const
get sigmaZ
void sigmaZ(double s=1.0)
set resolution in Z in cm
~BetafuncEvtVtxGenerator() override
double BetaFunction(double z, double z0) const
beta function
BetafuncEvtVtxGenerator(const edm::ParameterSet &p)
Sin< T >::type sin(const T &t)
void setBoost(double alpha, double phi)
double alpha() const
get Alpha
TMatrixD const * GetInvLorentzBoost() const override
Cos< T >::type cos(const T &t)
Tan< T >::type tan(const T &t)
edm::ESGetToken< SimBeamSpotObjects, SimBeamSpotObjectsRcd > beamToken_
void update(const edm::EventSetup &iEventSetup)
ESHandle< T > getHandle(const ESGetToken< T, R > &iToken) const
double timeOffset() const
get TimeOffset
HepMC::FourVector newVertex(CLHEP::HepRandomEngine *) const override
return a new event vertex
edm::ESWatcher< SimBeamSpotObjectsRcd > parameterWatcher_
bool check(const edm::EventSetup &iSetup)
double z() const
get Z position
double emittance() const
get Emittance
double phi() const
get Phi
double betaStar() const
get BetaStar
void beginLuminosityBlock(edm::LuminosityBlock const &, edm::EventSetup const &) override
double x() const
get X position
double y() const
get Y position