You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

66 lines
1.9 KiB

/*************
* Header file for outitf.c
* 1999 E. Rouat
************/
#ifndef ngspice_OUTITF_H
#define ngspice_OUTITF_H
#include "ngspice/typedefs.h"
typedef struct dataDesc {
char *name; /* The name of the vector. */
int type; /* The type. */
GRIDTYPE gtype; /* default plot scale */
bool regular; /* Is this given to us? */
int outIndex; /* If regular then the index. */
char *specName; /* The device name if special. */
char *specParamName; /* The parameter name if special. */
int specIndex; /* For sensitivity, if special. */
int specType;
GENinstance *specFast;
int refIndex; /* The index of our ref vector. */
struct dvec *vec;
} dataDesc;
struct runDesc {
void *analysis;
CKTcircuit *circuit;
char *name;
char *type;
int numData;
int refIndex;
dataDesc *data;
bool writeOut;
bool windowed;
bool binary;
struct plot *runPlot;
FILE *fp;
long pointPos; /* where to write pointCount */
int pointCount;
int isComplex;
int windowCount;
int maxData;
};
int OUTpBeginPlot(CKTcircuit *circuitPtr, JOB *analysisPtr,
IFuid analName,
IFuid refName, int refType,
int numNames, IFuid *dataNames, int dataType, runDesc **plotPtr);
int OUTpData(runDesc *plotPtr, IFvalue *refValue, IFvalue *valuePtr);
int OUTendPlot(runDesc *plotPtr);
int OUTattributes(runDesc *plotPtr, IFuid varName, int param, IFvalue *value);
int OUTstopnow(void);
void OUTerror(int flags, char *format, IFuid *names);
#ifdef __GNUC__
void OUTerrorf(int, const char *fmt, ...) __attribute__ ((format (__printf__, 2, 3)));
#else
void OUTerrorf(int, const char *fmt, ...);
#endif
void AddRealValueToVector(struct dvec *v, double value);
#endif