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