Changeset 37824
- Timestamp:
- Jan 12, 2015, 12:31:43 PM (12 years ago)
- Location:
- branches/eam_branches/ipp-pv3-20140717-merge
- Files:
-
- 4 edited
- 1 copied
-
Nebulous/bin/neb-rm (modified) (1 prop)
-
extsrc/gpcsw/gpcsrc/fits/burntool (modified) (1 prop)
-
extsrc/gpcsw/gpcsrc/fits/burntool/persistio.c (modified) (3 diffs)
-
hardware/dotConsolerc (copied) (copied from trunk/hardware/dotConsolerc )
-
ippMonitor/czartool/czartool/Plotter.pm (modified) (2 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-pv3-20140717-merge/Nebulous/bin/neb-rm
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/eam_branches/ipp-pv3-20140717-merge/extsrc/gpcsw/gpcsrc/fits/burntool
- Property svn:mergeinfo set to
-
branches/eam_branches/ipp-pv3-20140717-merge/extsrc/gpcsw/gpcsrc/fits/burntool/persistio.c
r34220 r37824 115 115 #define DIFFERENT_STREAK 20 /* Proximity for union versus intersection */ 116 116 117 # define myMAXSIZE 20000 118 119 117 120 /****************************************************************/ 118 121 /* persist_merge(): Disentangle overlapping persistence streaks */ … … 123 126 int lapmax; 124 127 OBJBOX *box; 125 int xusage[ MAXSIZE], yctr[MAXSIZE], boxid[MAXSIZE];128 int xusage[myMAXSIZE], yctr[myMAXSIZE], boxid[myMAXSIZE]; 126 129 double zk, zj; 127 130 … … 131 134 132 135 /* Assess the clustering of all the streaks */ 133 for(i=0; i< MAXSIZE; i++) xusage[i] = 0;134 for(i=0; i< MAXSIZE; i++) boxid[i] = -1;136 for(i=0; i<myMAXSIZE; i++) xusage[i] = 0; 137 for(i=0; i<myMAXSIZE; i++) boxid[i] = -1; 135 138 for(k=0; k<nbox; k++) { 136 if(box[k].exfit >= MAXSIZE-1) continue;139 if(box[k].exfit >= myMAXSIZE-1) continue; 137 140 for(i=box[k].sxfit; i<=box[k].exfit; i++) xusage[i] += 1; 138 141 } 139 142 140 143 /* Identify clusters */ 141 for(xs=0; xs< MAXSIZE-1; xs++) {144 for(xs=0; xs<myMAXSIZE-1; xs++) { 142 145 if(xusage[xs] == 0) continue; 143 for(xe=xs, lapmax=0; xe< MAXSIZE-1; xe++) {146 for(xe=xs, lapmax=0; xe<myMAXSIZE-1; xe++) { 144 147 if(xusage[xe+1] == 0) break; 145 148 lapmax = MAX(lapmax, xusage[xe]); -
branches/eam_branches/ipp-pv3-20140717-merge/ippMonitor/czartool/czartool/Plotter.pm
- Property svn:mergeinfo set to (toggle deleted branches)
r35742 r37824 671 671 "set ylabel \"Space (TB)\";" . 672 672 "set xtic rotate by -90 scale 0;" . 673 "set yrange [:100];" . 673 674 "plot '".$tmpFile->filename."' " . 674 675 "using 2:xtic(1) t \"Used\" lt 7," . … … 715 716 "set style data histograms;" . 716 717 "set ylabel \"Space (TB)\";" . 718 "set yrange [:100];" . 717 719 "set xtic rotate by -90 scale 0;" . 718 720 "plot '".$tmpFile->filename."' " .
Note:
See TracChangeset
for help on using the changeset viewer.
