Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef RK4OneStep_H
0002 #define RK4OneStep_H
0003 
0004 #include "FWCore/Utilities/interface/Visibility.h"
0005 #include "CartesianState.h"
0006 
0007 class RKCartesianDerivative;
0008 
0009 class dso_internal RK4OneStep {
0010 public:
0011   CartesianState operator()(const CartesianState& start, const RKCartesianDerivative& deriv, double step) const;
0012 
0013   //  DeltaState errorEstimate();
0014 };
0015 
0016 #endif