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