]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TGeant4/TG4SpecialCutsForElectron.cxx
Changed for new Aliroot version.
[u/mrichter/AliRoot.git] / TGeant4 / TG4SpecialCutsForElectron.cxx
1 // $Id$
2 // Category: physics
3 //
4 // Author: I. Hrivnacova
5 //
6 // Class TG4SpecialCutsForElectron
7 // -------------------------------
8 // See the class description in the header file.
9
10 #include "TG4SpecialCutsForElectron.h"
11 #include "TG4Limits.h"
12
13
14 //_____________________________________________________________________________
15 TG4SpecialCutsForElectron::TG4SpecialCutsForElectron(
16                                             const G4String& processName)
17   : TG4VSpecialCuts(processName) {
18 //
19 }
20
21 //_____________________________________________________________________________
22 TG4SpecialCutsForElectron::TG4SpecialCutsForElectron() {
23 //
24 }
25
26 //_____________________________________________________________________________
27 TG4SpecialCutsForElectron::~TG4SpecialCutsForElectron() {
28 //
29 }
30
31 // public methods
32
33 //_____________________________________________________________________________
34 G4double TG4SpecialCutsForElectron::GetMinEkine(const TG4Limits& limits,
35                                              const G4Track& track) const
36 {                                            
37 // Returns the min kinetic energy cut from limits.
38 // --- 
39
40   return limits.GetMinEkineForElectron(track);
41 }  
42