]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TGeant4/TG4PhysicsConstructorHadron.h
Example macro corrected
[u/mrichter/AliRoot.git] / TGeant4 / TG4PhysicsConstructorHadron.h
1 // $Id$
2 // Category: physics
3 //
4 // Constructor of hadron physics.
5 // According to corresponding part of:
6 // ExN04PhysicsList.hh, GEANT4 tag Name: geant4-01-01
7
8 #ifndef TG4_PHYSICS_CONSTRUCTOR_HADRON_H
9 #define TG4_PHYSICS_CONSTRUCTOR_HADRON_H
10
11 #include <G4VPhysicsConstructor.hh>
12 #include <globals.hh>
13
14 class TG4PhysicsConstructorHadron: public G4VPhysicsConstructor
15 {
16   public:
17     TG4PhysicsConstructorHadron(const G4String& name = "Hadron");
18     virtual ~TG4PhysicsConstructorHadron();
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_HADRON_H
28