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