StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
myBetheBloch.h
1 //
2 // $Id: myBetheBloch.h,v 1.1 2001/04/23 21:46:47 meissner Exp $
3 //
4 // Description:
5 // Function to return the expected dE/dx as a function of
6 // beta*gamma for the TPC
7 //
8 // $Log: myBetheBloch.h,v $
9 // Revision 1.1 2001/04/23 21:46:47 meissner
10 // Copy of old (P00hm) version of BB function, temp solution, take this out after next production, meissner
11 //
12 // Revision 1.1 2000/07/04 17:35:08 calderon
13 // Initial Revision
14 // Bethe Bloch curve for the TPC with initial preliminary tuning
15 //
16 //
17 //
18 
19 #ifndef myBetheBloch_hh
20 #define myBetheBloch_hh
21 
22 #include <map>
23 #include "StObject.h"
24 #ifndef ST_NO_NAMESPACES
25 using std::map;
26 #endif
27 
28 class myBetheBloch : public StObject {
29  map<double, double> mMap;
30 public:
31  myBetheBloch();
32  virtual ~myBetheBloch();
33  double operator() (double);
34  ClassDef(myBetheBloch,1)
35 };
36 #endif