1 ////////////////////////////////////////////////////////////////////////////////
2 //
3 // Copyright (c) 2008 The Regents of the University of California
4 //
5 // This file is part of Qbox
6 //
7 // Qbox is distributed under the terms of the GNU General Public License
8 // as published by the Free Software Foundation, either version 2 of
9 // the License, or (at your option) any later version.
10 // See the file COPYING in the root directory of this distribution
11 // or <http://www.gnu.org/licenses/>.
12 //
13 ////////////////////////////////////////////////////////////////////////////////
14 //
15 // SDIonicStepper.h:
16 //
17 ////////////////////////////////////////////////////////////////////////////////
18 
19 #ifndef SDIONICSTEPPER_H
20 #define SDIONICSTEPPER_H
21 
22 #include "IonicStepper.h"
23 #include <vector>
24 
25 class SDIonicStepper : public IonicStepper
26 {
27   private:
28 
29   public:
30 
SDIonicStepper(Sample & s)31   SDIonicStepper(Sample& s) : IonicStepper(s) {}
32 
33   void compute_r(double e0, const std::vector<std::vector< double> >& f0);
compute_v(double e0,const std::vector<std::vector<double>> & f0)34   void compute_v(double e0, const std::vector<std::vector< double> >& f0) {}
35 };
36 
37 #endif
38