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