Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:31:43

0001 #ifndef RKCartesianDerivative_H
0002 #define RKCartesianDerivative_H
0003 
0004 #include "CartesianState.h"
0005 
0006 class dso_internal RKCartesianDerivative {
0007 public:
0008   virtual ~RKCartesianDerivative() {}
0009 
0010   virtual CartesianState operator()(double step, const CartesianState& start) const = 0;
0011 };
0012 
0013 #endif