CMS 3D CMS Logo

BetafuncEvtVtxGenerator.h
Go to the documentation of this file.
1 #ifndef IOMC_BetafuncEvtVtxGenerator_H
2 #define IOMC_BetafuncEvtVtxGenerator_H
3 
4 /*
5 ________________________________________________________________________
6 
7  BetafuncEvtVtxGenerator
8 
9  Smear vertex according to the Beta function on the transverse plane
10  and a Gaussian on the z axis. It allows the beam to have a crossing
11  angle (dx/dz and dy/dz).
12 
13  Based on GaussEvtVtxGenerator.h
14  implemented by Francisco Yumiceva (yumiceva@fnal.gov)
15 
16  FERMILAB
17  2006
18 ________________________________________________________________________
19 */
20 
24 
25 namespace CLHEP {
26  class HepRandomEngine;
27 }
28 
30 {
31 public:
33  ~BetafuncEvtVtxGenerator() override;
34 
35  void beginRun(const edm::Run & , const edm::EventSetup&) override;
36  void beginLuminosityBlock(edm::LuminosityBlock const&, edm::EventSetup const&) override;
37 
39  //virtual CLHEP::Hep3Vector * newVertex();
40  HepMC::FourVector newVertex(CLHEP::HepRandomEngine*) const override ;
41 
42  TMatrixD const* GetInvLorentzBoost() const override;
43 
44 
46  void sigmaZ(double s=1.0);
47 
49  void X0(double m=0) { fX0=m; }
51  void Y0(double m=0) { fY0=m; }
53  void Z0(double m=0) { fZ0=m; }
54 
56  void betastar(double m=0) { fbetastar=m; }
58  void emittance(double m=0) { femittance=m; }
59 
61  double BetaFunction(double z, double z0) const;
62 
63 private:
67  BetafuncEvtVtxGenerator& operator = (const BetafuncEvtVtxGenerator & rhs ) = delete;
68 
69  void setBoost(double alpha, double phi);
70 private:
71 
72  bool readDB_;
73 
74  double fX0, fY0, fZ0;
75  double fSigmaZ;
76  //double fdxdz, fdydz;
77  double fbetastar, femittance;
78  // double falpha;
79  double fTimeOffset;
80 
81  TMatrixD boost_;
82 
83  void update(const edm::EventSetup& iEventSetup);
85 };
86 
87 #endif
float alpha
Definition: AMPTWrapper.h:95
void X0(double m=0)
set mean in X in cm
void betastar(double m=0)
set beta_star
void Y0(double m=0)
set mean in Y in cm
edm::ESWatcher< SimBeamSpotObjectsRcd > parameterWatcher_
void Z0(double m=0)
set mean in Z in cm
#define update(a, b)
void emittance(double m=0)
emittance (no the normalized)
Definition: Run.h:44