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