x-axis label for misc. sweep types
This commit is contained in:
parent
35c8848b62
commit
29179938c7
|
|
@ -1,5 +1,10 @@
|
|||
2011-03-16 Dietmar Warning
|
||||
* plotit.c: fix the wrong x-axis label for temp-sweep and res-sweep by
|
||||
using macros SV_XXX for vector types
|
||||
|
||||
2011-03-13 Dietmar Warning
|
||||
* analysis.h, typedefs.h, misc. bXtemp.c: skip printout in bsimtemp for sens analysis
|
||||
* analysis.h, typedefs.h, misc. bXtemp.c: skip printout in bsimtemp for
|
||||
sens analysis
|
||||
* bsim2/bsim2def.h: int for XPARTS flag in ancient debug usage
|
||||
|
||||
2011-03-10 Dietmar Warning
|
||||
|
|
|
|||
|
|
@ -644,8 +644,8 @@ plotit(wordlist *wl, char *hcopy, char *devname)
|
|||
|
||||
/* The following line displays the unit at the time of
|
||||
temp-sweep and res-sweep. This may not be a so good solution. by H.T */
|
||||
if(!strcmp(vecs->v_scale->v_name,"temp-sweep")) vecs->v_scale->v_type=14;
|
||||
if(!strcmp(vecs->v_scale->v_name,"res-sweep")) vecs->v_scale->v_type=15;
|
||||
if(!strcmp(vecs->v_scale->v_name,"temp-sweep")) vecs->v_scale->v_type=SV_TEMP; /* simulation_types in sim.h */
|
||||
if(!strcmp(vecs->v_scale->v_name,"res-sweep")) vecs->v_scale->v_type=SV_RES;
|
||||
|
||||
/* See if the log flag is set anywhere... */
|
||||
if (!gfound) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue