]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TGeant4/TG4PhysicsConstructorSpecialControls.h
update to geant4 4.0 (not yet released)
[u/mrichter/AliRoot.git] / TGeant4 / TG4PhysicsConstructorSpecialControls.h
CommitLineData
b94a914b 1// $Id$
2// Category: physics
3//
499b353a 4// Author: I. Hrivnacova
5//
6// Class TG4TG4PhysicsConstructorSpecialControls
7// ---------------------------------------------
b94a914b 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
16class 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