]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TGeant4/TG4SpecialCutsForElectron.h
cuts on Q out, side, long added
[u/mrichter/AliRoot.git] / TGeant4 / TG4SpecialCutsForElectron.h
1 // $Id$
2 // Category: physics
3 //
4 // Author: I. Hrivnacova
5 //
6 // Class TG4SpecialCutsForElectron
7 // -------------------------------
8 // Special process that activates kinetic energy cuts
9 // for e-.
10
11 #ifndef TG4_SPECIAL_CUTS_FOR_ELECTRON_H
12 #define TG4_SPECIAL_CUTS_FOR_ELECTRON_H
13
14 #include "TG4VSpecialCuts.h"
15
16 class TG4Limits;
17
18 class G4Track;
19
20 class TG4SpecialCutsForElectron: public TG4VSpecialCuts
21 {
22   public:
23     TG4SpecialCutsForElectron(const G4String& processName
24                                               = "specialCutForElectron");
25     // --> protected
26     // TG4SpecialCutsForElectron();                
27     virtual ~TG4SpecialCutsForElectron();
28
29     // methods
30     virtual G4double GetMinEkine(const TG4Limits& limits,
31                                  const G4Track& track) const;
32                             
33   protected:
34     TG4SpecialCutsForElectron();                   
35 };
36
37 #endif //TG4_SPECIAL_CUTS_FOR_ELECTRON_H
38
39
40