StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StEpcCut.h
1 
3 //
4 // $Id: StEpcCut.h,v 1.4 2005/05/23 12:35:14 suaide Exp $
5 //
6 // Author: Subhasis Chattopadhyay
8 //
9 // Description: cuts for the Epc maker
11 //
12 
13 #ifndef StEpcCut_h
14 #define StEpcCut_h
15 
16 #include <Stiostream.h>
17 #include <stdlib.h>
18 #include "Rtypes.h"
19 
20 
21 class StEpcCut
22 {
23 public:
24 
25  StEpcCut();
26  virtual ~StEpcCut();
27  //
28  static Float_t DeltaEta();
29  static Float_t DeltaPhi();
30  static Float_t RAD_SMD_E();
31  static void setDeltaEta(Float_t);
32  static void setDeltaPhi(Float_t);
33  //
34 private:
35 
36  static Float_t mDeltaEta;
37  static Float_t mDeltaPhi;
38  static Float_t mRAD_SMD_E;
39 };
40 
41 inline Float_t StEpcCut::DeltaEta()
42 {
43  return mDeltaEta;
44 }
45 inline Float_t StEpcCut::DeltaPhi()
46 {
47  return mDeltaPhi;
48 }
49 inline Float_t StEpcCut::RAD_SMD_E()
50 {
51  return mRAD_SMD_E;
52 }
53 inline void StEpcCut::setDeltaEta(Float_t deltaeta)
54 {
55  mDeltaEta=deltaeta;
56 }
57 inline void StEpcCut::setDeltaPhi(Float_t deltaphi)
58 {
59  mDeltaPhi=deltaphi;
60 }
61 
62 #endif