]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TGeant4/TG4PhysicsConstructorSpecialCuts.h
update to geant4 4.0 (not yet released)
[u/mrichter/AliRoot.git] / TGeant4 / TG4PhysicsConstructorSpecialCuts.h
CommitLineData
b94a914b 1// $Id$
2// Category: physics
3//
499b353a 4// Author: I. Hrivnacova
5//
6// Class TG4PhysicsConstructorSpecialCuts
7// --------------------------------------
b94a914b 8// Constructor of special cuts.
9
10#ifndef TG4_PHYSICS_CONSTRUCTOR_SPECIAL_CUTS_H
11#define TG4_PHYSICS_CONSTRUCTOR_SPECIAL_CUTS_H
12
13#include <G4VPhysicsConstructor.hh>
14#include <globals.hh>
15
16class TG4PhysicsConstructorSpecialCuts: public G4VPhysicsConstructor
17{
18 public:
19 TG4PhysicsConstructorSpecialCuts(const G4String& name = "Special cuts");
20 virtual ~TG4PhysicsConstructorSpecialCuts();
21
22 protected:
23 // methods
24 // construct particle and physics
25 virtual void ConstructParticle();
26 virtual void ConstructProcess();
27};
28
29#endif //TG4_PHYSICS_CONSTRUCTOR_SPECIAL_CUTS_H
30