]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TGeant4/TG4SpecialCutsForEplus.h
Add Boost() method to boost all particles to LHC lab frame. Needed for asymmetric...
[u/mrichter/AliRoot.git] / TGeant4 / TG4SpecialCutsForEplus.h
1 // $Id$
2 // Category: physics
3 //
4 // Author: I. Hrivnacova
5 //
6 // Class TG4SpecialCutsForEplus
7 // ----------------------------
8 // Special process that activates kinetic energy cuts
9 // for e+.
10
11 #ifndef TG4_SPECIAL_CUTS_FOR_EPLUS_H
12 #define TG4_SPECIAL_CUTS_FOR_EPLUS_H
13
14 #include "TG4VSpecialCuts.h"
15
16 class TG4Limits;
17
18 class G4Track;
19
20 class TG4SpecialCutsForEplus: public TG4VSpecialCuts
21 {
22   public:
23     TG4SpecialCutsForEplus(const G4String& processName = "specialCutForEplus");
24     // --> protected
25     // TG4SpecialCutsForEplus();                   
26     virtual ~TG4SpecialCutsForEplus();
27
28     // methods
29     virtual G4double GetMinEkine(const TG4Limits& limits,
30                                  const G4Track& track) const;
31                             
32   protected:
33     TG4SpecialCutsForEplus();              
34 };
35
36 #endif //TG4_SPECIAL_CUTS_FOR_EPLUS_H
37
38
39