////////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2008 The Regents of the University of California
//
// This file is part of Qbox
//
// Qbox is distributed under the terms of the GNU General Public License
// as published by the Free Software Foundation, either version 2 of
// the License, or (at your option) any later version.
// See the file COPYING in the root directory of this distribution
// or .
//
////////////////////////////////////////////////////////////////////////////////
//
// SDIonicStepper.h:
//
////////////////////////////////////////////////////////////////////////////////
// $Id: SDIonicStepper.h,v 1.10 2008-09-08 15:56:19 fgygi Exp $
#ifndef SDIONICSTEPPER_H
#define SDIONICSTEPPER_H
#include "IonicStepper.h"
#include
class SDIonicStepper : public IonicStepper
{
private:
public:
SDIonicStepper(Sample& s) : IonicStepper(s) {}
void compute_r(double e0, const std::vector >& f0);
void compute_v(double e0, const std::vector >& f0) {}
};
#endif