]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - TGeant4/TG4PhysicsConstructorSpecialControls.h
Coding Rule violations corrected.
[u/mrichter/AliRoot.git] / TGeant4 / TG4PhysicsConstructorSpecialControls.h
... / ...
CommitLineData
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 "TG4VPhysicsConstructor.h"
14
15#include <globals.hh>
16
17class TG4PhysicsConstructorSpecialControls: public TG4VPhysicsConstructor
18{
19 public:
20 TG4PhysicsConstructorSpecialControls(
21 const G4String& name = "Special controls");
22 TG4PhysicsConstructorSpecialControls(
23 G4int verboseLevel,
24 const G4String& name = "Special controls");
25 virtual ~TG4PhysicsConstructorSpecialControls();
26
27 protected:
28 // methods
29 // construct particle and physics
30 virtual void ConstructParticle();
31 virtual void ConstructProcess();
32};
33
34#endif //TG4_PHYSICS_CONSTRUCTOR_SPECIAL_CONTROLS_H
35