]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TGeant4/TG4SpecialCutsForOther.cxx
Update to track display by Chuncheng
[u/mrichter/AliRoot.git] / TGeant4 / TG4SpecialCutsForOther.cxx
CommitLineData
27703356 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//_____________________________________________________________________________
15TG4SpecialCutsForOther::TG4SpecialCutsForOther(const G4String& processName)
16 : TG4VSpecialCuts(processName) {
17//
18}
19
20//_____________________________________________________________________________
21TG4SpecialCutsForOther::TG4SpecialCutsForOther() {
22//
23}
24
25//_____________________________________________________________________________
26TG4SpecialCutsForOther::~TG4SpecialCutsForOther() {
27//
28}
29
30// public methods
31
32//_____________________________________________________________________________
33G4double 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