2010-03-02 13:54:50 +00:00
|
|
|
#ifndef PROCESSFIELDS_TD_H
|
|
|
|
#define PROCESSFIELDS_TD_H
|
|
|
|
|
|
|
|
#include "processfields.h"
|
|
|
|
|
|
|
|
class ProcessFieldsTD : public ProcessFields
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ProcessFieldsTD(Operator* op, Engine* eng);
|
|
|
|
virtual ~ProcessFieldsTD();
|
|
|
|
|
|
|
|
virtual void Process();
|
|
|
|
|
|
|
|
//! Set the length of the filename timestep pad filled with zeros (default is 8)
|
|
|
|
void SetPadLength(int val) {pad_length=val;};
|
|
|
|
|
|
|
|
protected:
|
|
|
|
int pad_length;
|
2010-03-09 20:35:57 +00:00
|
|
|
|
|
|
|
void DumpNoInterpol(ofstream &file);
|
|
|
|
void DumpCellInterpol(ofstream &file);
|
2010-03-02 13:54:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // PROCESSFIELDS_TD_H
|