]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TGeant4/TG4PhysicsConstructorEM.h
Updated class description: added class name title, author
[u/mrichter/AliRoot.git] / TGeant4 / TG4PhysicsConstructorEM.h
1 // $Id$
2 // Category: physics
3 //
4 // Author: I. Hrivnacova
5 //
6 // Class TG4PhysicsConstructorEM
7 // -----------------------------
8 // Constructor of electromagnetic physics.
9 // According to the corresponding part of:
10 // ExN04PhysicsList.hh, GEANT4 tag Name: geant4-01-01
11
12 #ifndef TG4_PHYSICS_CONSTRUCTOR_EM_H
13 #define TG4_PHYSICS_CONSTRUCTOR_EM_H
14
15 #include <G4VPhysicsConstructor.hh>
16 #include <globals.hh>
17
18 class TG4PhysicsConstructorEM: public G4VPhysicsConstructor
19 {
20   public:
21     TG4PhysicsConstructorEM(const G4String& name = "EM");
22     virtual ~TG4PhysicsConstructorEM();
23
24   protected:
25     // methods
26           // construct particle and physics
27     virtual void ConstructParticle();
28     virtual void ConstructProcess();
29 };
30
31 #endif //TG4_PHYSICS_CONSTRUCTOR_H
32