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