IRecombinationModel.h
Go to the documentation of this file.
1 #ifndef WIRECELL_IRECOMBINATIONMODEL
2 #define WIRECELL_IRECOMBINATIONMODEL
3 
5 
6 namespace WireCell {
7 
8  class IRecombinationModel : virtual public IComponent<IRecombinationModel> {
9  public:
10  virtual ~IRecombinationModel() ;
11 
12  // Convert a point or step to ionized charge
13  virtual double operator()(double dE, double dX=0.0) = 0;
14  };
15 
16 }
17 
18 #endif
virtual double operator()(double dE, double dX=0.0)=0
Definition: Main.h:22