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