CMS 3D CMS Logo

LaserBeamsTEC1.h
Go to the documentation of this file.
1 #ifndef LaserAlignmentSimulation_LaserBeamsTEC1_h
2 #define LaserAlignmentSimulation_LaserBeamsTEC1_h
3 
12 #include "CLHEP/Random/DRand48Engine.h"
13 
14 // G4 includes
15 #include "G4ParticleTable.hh"
16 #include "G4VUserPrimaryGeneratorAction.hh"
17 
18 class G4ParticleGun;
19 class G4Event;
20 
21 class LaserBeamsTEC1 : public G4VUserPrimaryGeneratorAction {
22 public:
26  LaserBeamsTEC1(G4int nPhotonsInGun, G4int nPhotonsInBeam, G4double PhotonEnergy);
28  ~LaserBeamsTEC1() override;
29 
30 public:
32  void GeneratePrimaries(G4Event *myEvent) override;
34  void setOptPhotonPolar(G4double Angle);
35 
36 private:
38  G4int thenParticle;
39  G4double thePhotonEnergy;
40 
41 private:
42  G4ParticleGun *theParticleGun;
43 
44  // Unique random number generator
45  CLHEP::DRand48Engine *theDRand48Engine;
46 };
47 #endif
G4double thePhotonEnergy
void GeneratePrimaries(G4Event *myEvent) override
shoot optical photons into the detector at the beginning of an event
G4int thenParticleInGun
LaserBeamsTEC1()
default constructor
CLHEP::DRand48Engine * theDRand48Engine
~LaserBeamsTEC1() override
destructor
Definition: Angle.h:17
void setOptPhotonPolar(G4double Angle)
set the polarisation of the photons
G4ParticleGun * theParticleGun