2010-03-04 10:53:58 +00:00
|
|
|
#ifndef PROCESSCURRENT_H
|
|
|
|
#define PROCESSCURRENT_H
|
|
|
|
|
|
|
|
#include "processing.h"
|
|
|
|
|
|
|
|
class ProcessCurrent : public Processing
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ProcessCurrent(Operator* op, Engine* eng);
|
|
|
|
virtual ~ProcessCurrent();
|
|
|
|
|
|
|
|
virtual void OpenFile(string outfile);
|
|
|
|
|
|
|
|
virtual void DefineStartStopCoord(double* dstart, double* dstop);
|
|
|
|
|
2010-03-10 11:15:14 +00:00
|
|
|
virtual int Process();
|
2010-03-04 10:53:58 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
ofstream file;
|
|
|
|
|
|
|
|
vector<FDTD_FLOAT> v_current;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // PROCESSCURRENT_H
|