]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TGeant4/TG4PhysicsConstructorSpecialCuts.h
Update to track display by Chuncheng
[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 "TG4VPhysicsConstructor.h"
14
15 #include <globals.hh>
16
17 class TG4PhysicsConstructorSpecialCuts: public TG4VPhysicsConstructor
18 {
19   public:
20     TG4PhysicsConstructorSpecialCuts(const G4String& name = "Special cuts");
21     TG4PhysicsConstructorSpecialCuts(G4int verboseLevel,
22                                      const G4String& name = "Special cuts");
23     virtual ~TG4PhysicsConstructorSpecialCuts();
24
25   protected:
26     // methods
27           // construct particle and physics
28     virtual void ConstructParticle();
29     virtual void ConstructProcess();
30 };
31
32 #endif //TG4_PHYSICS_CONSTRUCTOR_SPECIAL_CUTS_H
33