]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TGeant4/TG4PhysicsConstructorSpecialCuts.h
Initialize decayer before generation. Important if run inside cocktail.
[u/mrichter/AliRoot.git] / TGeant4 / TG4PhysicsConstructorSpecialCuts.h
1 // $Id$
2 // Category: physics
3 //
4 // Constructor of special cuts.
5
6 #ifndef TG4_PHYSICS_CONSTRUCTOR_SPECIAL_CUTS_H
7 #define TG4_PHYSICS_CONSTRUCTOR_SPECIAL_CUTS_H
8
9 #include <G4VPhysicsConstructor.hh>
10 #include <globals.hh>
11
12 class TG4PhysicsConstructorSpecialCuts: public G4VPhysicsConstructor
13 {
14   public:
15     TG4PhysicsConstructorSpecialCuts(const G4String& name = "Special cuts");
16     virtual ~TG4PhysicsConstructorSpecialCuts();
17
18   protected:
19     // methods
20           // construct particle and physics
21     virtual void ConstructParticle();
22     virtual void ConstructProcess();
23 };
24
25 #endif //TG4_PHYSICS_CONSTRUCTOR_SPECIAL_CUTS_H
26