Changeset 34139
- Timestamp:
- Jul 11, 2012, 8:19:38 AM (14 years ago)
- Location:
- branches/eam_branches/ipp-20120627
- Files:
-
- 30 edited
-
. (modified) (1 prop)
-
Ohana/src/opihi/cmd.astro (modified) (1 prop)
-
ippMonitor (modified) (1 prop)
-
ippMonitor/czartool/czartool/Plotter.pm (modified) (33 diffs)
-
ippMonitor/raw/czartool_labels.php (modified) (1 diff)
-
ippScripts/scripts/destreak_restore_camera.pl (modified) (1 prop)
-
ippScripts/scripts/ipp_apply_burntool_single.pl (modified) (1 prop)
-
ippScripts/scripts/magic_destreak.pl (modified) (1 prop)
-
ippToPsps (modified) (1 prop)
-
ippTools/share/camtool_find_pendingimfile.sql (modified) (1 prop)
-
ippTools/share/chiptool_setimfiletoupdate.sql (modified) (1 prop)
-
ippTools/share/pxadmin_create_tables.sql (modified) (1 prop)
-
ippTools/share/warptool_towarped.sql (modified) (1 prop)
-
ippTools/src (modified) (1 prop)
-
ippTools/src/magictool.c (modified) (1 prop)
-
ippTools/src/pstamptool.c (modified) (3 diffs)
-
ippconfig (modified) (1 prop)
-
ippconfig/gpc1/ppStack.config (modified) (2 diffs)
-
ippconfig/recipes/reductionClasses.mdc (modified) (1 prop)
-
magic/Makefile (modified) (1 diff)
-
ppImage/src (modified) (1 prop)
-
psLib/m4/ipp_stdopts.m4 (modified) (1 diff)
-
psconfig/tagsets/ipp-3.0.libs (modified) (1 diff)
-
psphot (modified) (1 prop)
-
psphot/src (modified) (1 prop)
-
psphot/src/psphotStackImageLoop.c (modified) (1 prop)
-
pstamp/scripts (modified) (1 prop)
-
psvideophot (modified) (1 prop)
-
tools/mysql-dump/gpc1_install.sh (modified) (1 diff)
-
tools/mysql-dump/ops_dump.csh (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20120627
- Property svn:mergeinfo changed
/trunk (added) merged: 34100,34104,34106-34114,34117,34123,34125
- Property svn:mergeinfo changed
-
branches/eam_branches/ipp-20120627/Ohana/src/opihi/cmd.astro
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/eam_branches/ipp-20120627/ippMonitor
- Property svn:mergeinfo changed
/trunk/ippMonitor (added) merged: 34109-34110,34117
- Property svn:mergeinfo changed
-
branches/eam_branches/ipp-20120627/ippMonitor/czartool/czartool/Plotter.pm
r34096 r34139 11 11 12 12 my @allStages = ( 13 "chip", 14 "cam", 15 "fake", 16 "warp", 17 "stack", 18 "staticsky", 19 "diff", 20 "dist", 13 "chip", 14 "cam", 15 "fake", 16 "warp", 17 "stack", 18 "staticsky", 19 "diff", 20 "dist", 21 21 "pub", 22 22 "chipbackground"); 23 23 24 24 my @allIppToPspsStages = ( 25 "processed", 26 "loaded_to_datastore", 27 "loaded_to_ODM", 28 "merge_worthy", 29 "deleted_datastore", 30 "deleted_dxlayer", 31 "merged", 25 "processed", 26 "loaded_to_datastore", 27 "loaded_to_ODM", 28 "merge_worthy", 29 "deleted_datastore", 30 "deleted_dxlayer", 31 "merged", 32 32 "deleted_local"); 33 33 34 my $GNUPLOT="/home/panstarrs/ipp/local/bin/gnuplot"; 34 35 35 36 ########################################################################### … … 96 97 ########################################################################### 97 98 # 98 # Sets plotter to use standard IPP mode, i.e. chip, cam etc 99 # Sets plotter to use standard IPP mode, i.e. chip, cam etc 99 100 # 100 101 ########################################################################### … … 107 108 ########################################################################### 108 109 # 109 # Sets plotter to use ippToPsps mode, i.e. processed, loaded_to_datastore etc 110 # Sets plotter to use ippToPsps mode, i.e. processed, loaded_to_datastore etc 110 111 # 111 112 ########################################################################### … … 182 183 183 184 # stages 184 my $stages = undef; 185 my $stages = undef; 185 186 if (!$selectedStage) { 186 187 $stages = \@{$self->{allStages}}; … … 196 197 my $stage = undef; 197 198 my $gnuplotFile = undef; 198 my $minX = 999999999; 199 my $minX = 999999999; 199 200 my $maxX = -9999999999; 200 201 my $timeDiff = 0; … … 203 204 204 205 if ($self->{_czarDb}->createProcessingRateData( 205 $stage, 206 $label, 207 $beginTime, 208 $endTime, 206 $stage, 207 $label, 208 $beginTime, 209 $endTime, 209 210 $interval, 210 211 \$gnuplotFile, … … 233 234 my ($self, $gnuplotFiles, $outputFile, $label, $selectedStage, $beginTime, $endTime, $interval) = @_; 234 235 235 open (GP, "| /usr/bin/gnuplot-persist") or die "no gnuplot";236 open (GP, "|$GNUPLOT -persist") or die "no gnuplot"; 236 237 use FileHandle; 237 238 GP->autoflush(1); … … 276 277 my ($self, $label, $selectedStage, $beginTime, $endTime, $linear, $log, $rate) = @_; 277 278 278 my $minX = 999999999; 279 my $minX = 999999999; 279 280 my $maxX = -9999999999; 280 281 my $timeDiff = 0; 281 282 282 my $stages = undef; 283 my $stages = undef; 283 284 284 285 if (!$selectedStage) {$stages = \@{$self->{allStages}};} 285 else {$stages = ["$selectedStage"]}; 286 else {$stages = ["$selectedStage"]}; 286 287 287 288 my %linDataFiles; … … 296 297 297 298 if($self->{_czarDb}->createTimeSeriesData( 298 $label, 299 $stage, 300 $beginTime, 301 $endTime, 302 \$minX, 303 \$maxX, 304 \$timeDiff, 299 $label, 300 $stage, 301 $beginTime, 302 $endTime, 303 \$minX, 304 \$maxX, 305 \$timeDiff, 305 306 \$linDataFile, 306 307 \$logDataFile, … … 311 312 $ratDataFiles{$stage} = $ratDataFile; 312 313 } 313 } 314 } 314 315 315 316 my $numOfPlots = keys(%linDataFiles); … … 319 320 # print "Warning: No plots could be generated for stage '$selectedStage' and label '$label' during time period '$beginTime', '$endTime'\n"; 320 321 return; 321 } 322 } 322 323 323 324 if ($timeDiff == 0) { … … 332 333 333 334 $self->plotTimeSeries( 334 \%linDataFiles, 335 $outputFile, 336 $label, 337 $beginTime, 338 $endTime, 339 $maxX, 340 $minX, 341 $timeDiff, 335 \%linDataFiles, 336 $outputFile, 337 $label, 338 $beginTime, 339 $endTime, 340 $maxX, 341 $minX, 342 $timeDiff, 342 343 "", 343 344 "Items"); … … 349 350 350 351 $self->plotTimeSeries( 351 \%logDataFiles, 352 $outputFile, 353 $label, 354 $beginTime, 355 $endTime, 356 $maxX, 357 $minX, 358 $timeDiff, 352 \%logDataFiles, 353 $outputFile, 354 $label, 355 $beginTime, 356 $endTime, 357 $maxX, 358 $minX, 359 $timeDiff, 359 360 "", 360 361 "Log(Items)"); … … 366 367 367 368 $self->plotTimeSeries( 368 \%ratDataFiles, 369 $outputFile, 370 $label, 371 $beginTime, 372 $endTime, 373 $maxX, 374 $minX, 375 $timeDiff, 369 \%ratDataFiles, 370 $outputFile, 371 $label, 372 $beginTime, 373 $endTime, 374 $maxX, 375 $minX, 376 $timeDiff, 376 377 "", 377 378 "Items per hour"); 378 } 379 } 379 } 380 } 380 381 381 382 ########################################################################### … … 398 399 399 400 if (!$self->{_czarDb}->countProcessedPendingAndFaults( 400 $label, 401 $stage, 402 $beginTime, 403 $endTime, 404 \$processed, 405 \$pending, 401 $label, 402 $stage, 403 $beginTime, 404 $endTime, 405 \$processed, 406 \$pending, 406 407 \$faults)) {next;} 407 408 408 $pendingMinusFaults = $pending - $faults; 409 $pendingMinusFaults = $pending - $faults; 409 410 print GNUDAT "$stage $faults $processed $pendingMinusFaults\n"; 410 411 } … … 412 413 close(GNUDAT); 413 414 414 open (GP, "| /usr/bin/gnuplot-persist") or die "no gnuplot";415 open (GP, "|$GNUPLOT -persist") or die "no gnuplot"; 415 416 use FileHandle; 416 417 GP->autoflush(1); … … 427 428 "set ylabel \"Items\";" . 428 429 "set boxwidth 0.75;" . 429 "plot '".$tmpFile->filename."' using 2:xtic(1) title \"Faults\" lt 1, '' using 3 title \"Processed\" lt 2, '' using 4 title \"Pending\" lt 7;" . 430 "plot '".$tmpFile->filename."' using 2:xtic(1) title \"Faults\" lt 1, '' using 3 title \"Processed\" lt 2, '' using 4 title \"Pending\" lt 7;" . 430 431 "\n"; 431 432 … … 435 436 ########################################################################### 436 437 # 437 # Sets the output path 438 # Sets the output path 438 439 # 439 440 ########################################################################### … … 441 442 my ($self, $outputFormat) = @_; 442 443 $self->{_outputFormat} = $outputFormat if defined($outputFormat); 443 } 444 445 ########################################################################### 446 # 447 # Sets the output type 444 } 445 446 ########################################################################### 447 # 448 # Sets the output type 448 449 # 449 450 ########################################################################### … … 451 452 my ($self, $outputPath) = @_; 452 453 $self->{_outputPath} = $outputPath if defined($outputPath); 453 } 454 } 454 455 455 456 ########################################################################### … … 462 463 $self->{_dateFormat} = $dateFormat if defined($dateFormat); 463 464 return $self->{_dateFormat}; 464 } 465 } 465 466 466 467 ########################################################################### … … 543 544 $title .= " for '$label'\\nFrom '$fromTime' to '$toTime' HST"; 544 545 545 open (GP, "| /usr/bin/gnuplot-persist") or die "no gnuplot";546 open (GP, "|$GNUPLOT -persist") or die "no gnuplot"; 546 547 use FileHandle; 547 548 GP->autoflush(1); … … 612 613 $self->getTimeSpacing($timeDiff, \$divX, \$timeFormat); 613 614 614 open (GP, "| /usr/bin/gnuplot-persist") or die "no gnuplot";615 open (GP, "|$GNUPLOT -persist") or die "no gnuplot"; 615 616 use FileHandle; 616 617 GP->autoflush(1); … … 656 657 my $totalPercent = sprintf("%.1f%%", $totalUsed); 657 658 658 open (GP, "| /usr/bin/gnuplot-persist") or die "no gnuplot";659 open (GP, "|$GNUPLOT -persist") or die "no gnuplot"; 659 660 use FileHandle; 660 661 GP->autoflush(1); … … 672 673 "plot '".$tmpFile->filename."' " . 673 674 "using 2:xtic(1) t \"Used\" lt 7," . 674 "'' using 3 t \"Over $limit% used\" lt 1," . 675 "'' using 4 t \"Unavailable\" fs solid 0.50 lt -1 ," . 676 "'' using 5 t \"Free\" lt 2," . 677 "'' using 6 notitle fs solid 0.50 lt -1" . 675 "'' using 3 t \"Over $limit% used\" lt 1," . 676 "'' using 4 t \"Unavailable\" fs solid 0.50 lt -1 ," . 677 "'' using 5 t \"Free\" lt 2," . 678 "'' using 6 notitle fs solid 0.50 lt -1" . 678 679 ";" . 679 680 … … 718 719 719 720 720 open (GP, "| /usr/bin/gnuplot-persist") or die "no gnuplot";721 open (GP, "|$GNUPLOT -persist") or die "no gnuplot"; 721 722 use FileHandle; 722 723 GP->autoflush(1); … … 731 732 set grid 732 733 set size square 733 set xrange [-0.5:7.5] reverse 734 set yrange [-0.5:7.5] 734 set xrange [-0.5:7.5] reverse 735 set yrange [-0.5:7.5] 735 736 unset key 736 737 set palette rgb 22,13,10 … … 769 770 770 771 # set up bins 771 my %histogram; 772 my %histogram; 772 773 my @bins; 773 774 my $interval = 0.05; … … 812 813 813 814 my $totalMaskFrac; 814 815 815 816 if ($totalChipCount > 0) { 816 817 … … 842 843 843 844 # make histogram 844 open (GP, "| /usr/bin/gnuplot-persist") or die "no gnuplot";845 open (GP, "|$GNUPLOT -persist") or die "no gnuplot"; 845 846 use FileHandle; 846 847 GP->autoflush(1); … … 859 860 "set boxwidth 0.75;" . 860 861 "set xtic rotate by -90 scale 0;" . 861 "plot '".$tmpFile->filename."' using 2:xtic(1) notitle lt 1;" . 862 "plot '".$tmpFile->filename."' using 2:xtic(1) notitle lt 1;" . 862 863 "\n"; 863 864 … … 865 866 866 867 # make cumulative distribution 867 open (GP, "| /usr/bin/gnuplot-persist") or die "no gnuplot";868 open (GP, "|$GNUPLOT -persist") or die "no gnuplot"; 868 869 use FileHandle; 869 870 GP->autoflush(1); … … 878 879 "set ylabel \"Number of Exposures\";" . 879 880 "set xtic rotate by -90 scale 0;" . 880 "plot " . 881 "plot " . 881 882 "'".$tmpFile->filename."' using 1:3 notitle with lines lt 2 lw 2\n"; 882 883 -
branches/eam_branches/ipp-20120627/ippMonitor/raw/czartool_labels.php
r34007 r34139 170 170 echo "<tr><td>Cluster load</td><td><a href=\"http://ganglia.pan-starrs.ifa.hawaii.edu/?r=hour&s=descending&hc=6&c=IPP%2520Production\"><font color=\"blue\">here</font></a> <a href=\"http://ganglia.pan-starrs.ifa.hawaii.edu/?m=cpu_report&r=hour&s=by%2520name&c=IPP+Production&h=&sh=1&hc=8&z=small\"><font color=\"blue\">cpu_report</font></a></td></tr>"; 171 171 echo "<tr><td>Who's using the cluster?</td><td><a href=\"http://ippmonitor.ipp.ifa.hawaii.edu/ippMonitor/clusterMonitor/top.html\"><font color=\"blue\">here</font></a></td></tr>"; 172 echo "<tr><td>Files monitor</td><td><a href=\"http://ippmonitor.ipp.ifa.hawaii.edu/diskMonitor\"><font color=\"blue\">here</font></a></td></tr>"; 172 173 echo "<tr><td>IPP metrics</td><td><a href=\"http://ipp0022.ifa.hawaii.edu/ps1sc/ippMetrics\"><font color=\"blue\">here</font></a></td></tr>"; 173 174 echo "<tr><td>Czar log pages</td><td><a href=\"http://svn.pan-starrs.ifa.hawaii.edu/trac/ipp/wiki/PS1_IPP_CzarLogs\"><font color=\"blue\">All</font></a> "; 174 echo "<a href=\"http://svn.pan-starrs.ifa.hawaii.edu/trac/ipp/wiki/PS1_IPP_Czar Log_".(date("Ymd")-date("w")+"1")."\">This week</a>";175 echo "<a href=\"http://svn.pan-starrs.ifa.hawaii.edu/trac/ipp/wiki/PS1_IPP_Czarlog_".(date("Ymd")-date("w")+"1")."\">This week</a>"; 175 176 echo "</td></tr>"; 176 177 echo "<tr><td>Exposure summary</td><td><a href=\"czartool_exposures.php?pass=$pass&proj=$proj\"><font color=\"blue\">here</font></a></td></tr>"; -
branches/eam_branches/ipp-20120627/ippScripts/scripts/destreak_restore_camera.pl
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/eam_branches/ipp-20120627/ippScripts/scripts/ipp_apply_burntool_single.pl
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/eam_branches/ipp-20120627/ippScripts/scripts/magic_destreak.pl
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/eam_branches/ipp-20120627/ippToPsps
- Property svn:mergeinfo set to
-
branches/eam_branches/ipp-20120627/ippTools/share/camtool_find_pendingimfile.sql
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/eam_branches/ipp-20120627/ippTools/share/chiptool_setimfiletoupdate.sql
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/eam_branches/ipp-20120627/ippTools/share/pxadmin_create_tables.sql
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/eam_branches/ipp-20120627/ippTools/share/warptool_towarped.sql
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/eam_branches/ipp-20120627/ippTools/src
- Property svn:mergeinfo changed
/trunk/ippTools/src (added) merged: 34123
- Property svn:mergeinfo changed
-
branches/eam_branches/ipp-20120627/ippTools/src/magictool.c
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/eam_branches/ipp-20120627/ippTools/src/pstamptool.c
r34081 r34139 49 49 static bool revertjobMode(pxConfig *config); 50 50 51 # if ( 0)51 # if (1) 52 52 // these are unused functions -- since they are 'static', this raises an warning 53 // XXX: They actually are used 53 54 static bool addprojectMode(pxConfig *config); 54 55 static bool projectMode(pxConfig *config); … … 102 103 MODECASE(PSTAMPTOOL_MODE_STOPDEPENDENTJOB, stopdependentjobMode); 103 104 MODECASE(PSTAMPTOOL_MODE_REVERTJOB, revertjobMode); 104 # if ( 0)105 # if (1) 105 106 MODECASE(PSTAMPTOOL_MODE_ADDPROJECT, addprojectMode); 106 107 MODECASE(PSTAMPTOOL_MODE_MODPROJECT, modprojectMode); … … 1101 1102 } 1102 1103 1103 # if ( 0)1104 # if (1) 1104 1105 // these are unused functions 1106 // XXX: yes they are 1105 1107 static bool addprojectMode(pxConfig *config) 1106 1108 { -
branches/eam_branches/ipp-20120627/ippconfig
- Property svn:mergeinfo changed
/trunk/ippconfig (added) merged: 34113-34114,34125
- Property svn:mergeinfo changed
-
branches/eam_branches/ipp-20120627/ippconfig/gpc1/ppStack.config
r32147 r34139 18 18 END 19 19 20 PS1_REFERENCE METADATA 21 OUTPUT.NOCOMP BOOL TRUE 22 OUTPUT.LOGFLUX BOOL FALSE 23 OUTPUT.REPLICATE BOOL TRUE 20 PS1_REFERENCE METADATA # Refstack for diffims, typically best of best IQ/images and N>20 21 OUTPUT.NOCOMP BOOL TRUE 22 OUTPUT.LOGFLUX BOOL FALSE 23 OUTPUT.REPLICATE BOOL TRUE 24 PSF.INPUT.MAX F32 6.0 # never really want >6 pixels in refstack 25 PSF.INPUT.CLIP.NSIGMA F32 1.0 # sample typically on rising side of distribution (set even smaller?) 24 26 END 25 27 26 STACK_DEEP METADATA 27 OUTPUT.NOCOMP BOOLTRUE28 OUTPUT.LOGFLUX BOOLFALSE29 30 PSF.INPUT.MAX F32 7.531 PSF.INPUT.CLIP.NSIGMA F32 5.028 STACK_DEEP METADATA # N>>20 inputs, typically MD fields 29 OUTPUT.NOCOMP BOOL TRUE 30 OUTPUT.LOGFLUX BOOL FALSE 31 OUTPUT.REPLICATE BOOL TRUE 32 PSF.INPUT.MAX F32 7.5 33 PSF.INPUT.CLIP.NSIGMA F32 1.5 32 34 END 33 35 34 # for just unconvolved and deep stacks 35 QUICKSTACK_DEEP METADATA 36 CONVOLVE BOOL FALSE 37 COMBINE.REJ F32 3.5 # Rejection threshold in combination (sigma). tune? 38 COMBINE.DISCARD F32 0.2 # Discard fraction for Olympic weighted mean. tune? 39 OUTPUT.NOCOMP BOOL TRUE 40 OUTPUT.LOGFLUX BOOL FALSE 41 PSF.INPUT.MAX F32 8.0 # since not convolved limit, relax? tune? 42 PSF.INPUT.CLIP.NSIGMA F32 5.0 36 QUICKSTACK_DEEP METADATA # Unconvolved and deep stacks only 37 CONVOLVE BOOL FALSE 38 COMBINE.REJ F32 3.5 # Rejection threshold in combination (sigma). tune? 39 COMBINE.DISCARD F32 0.2 # Discard fraction for Olympic weighted mean. tune? 40 OUTPUT.NOCOMP BOOL TRUE 41 OUTPUT.LOGFLUX BOOL FALSE 42 PSF.INPUT.MAX F32 7.5 # since not convolved limit, relax/tune? 43 PSF.INPUT.CLIP.NSIGMA F32 1.5 43 44 END 44 45 45 STACK_NIGHTLY METADATA 46 STACK_NIGHTLY METADATA # Typically MD 8 input nightly stacks 46 47 OUTPUT.NOCOMP BOOL FALSE 47 48 OUTPUT.LOGFLUX BOOL FALSE … … 49 50 50 51 STACK_THREEPI METADATA 51 PSF.INPUT.MAX F32 12.0 52 OUTPUT.NOCOMP BOOL FALSE 53 OUTPUT.LOGFLUX BOOL TRUE 52 OUTPUT.NOCOMP BOOL FALSE 53 OUTPUT.LOGFLUX BOOL TRUE 54 PSF.INPUT.MAX F32 7.5 # input cut more restrictive now 12->7.5 pix, limit target PSF in convolved stacks 55 PSF.INPUT.CLIP.NSIGMA F32 1.5 # additional cut if majority of inputs much smaller than INPUT.MAX 54 56 END 55 57 -
branches/eam_branches/ipp-20120627/ippconfig/recipes/reductionClasses.mdc
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/eam_branches/ipp-20120627/magic/Makefile
r33001 r34139 60 60 61 61 ssa-core-cpp/build/libSSA.a: 62 if [ -d ssa-core-cpp ]; then (cd ssa-core-cpp && ./configure && make); fi62 if [ -d ssa-core-cpp ]; then (cd ssa-core-cpp && ./configure --disable-doxygen && make); fi 63 63 64 64 magic: magic/DetectStreaks -
branches/eam_branches/ipp-20120627/ppImage/src
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/eam_branches/ipp-20120627/psLib/m4/ipp_stdopts.m4
r34089 r34139 9 9 CFLAGS="-pipe -O2 -g -DPS_NO_TRACE"], 10 10 [AC_MSG_RESULT([compile optimization disabled]) 11 if test x"${CFLAGS}" == x; then 12 CFLAGS="-pipe -O0 -g" 13 fi 11 CFLAGS="-pipe -O0 -g" 14 12 ] 15 13 ) -
branches/eam_branches/ipp-20120627/psconfig/tagsets/ipp-3.0.libs
r31448 r34139 35 35 lib libjpeg NONE jpeg jpegsrc.v8c.tar.gz jpeg-8c N --enable-shared NONE NONE 36 36 lib libcfitsio NONE NONE cfitsio3100-p4.tar.gz cfitsio3100-p4 N --enable-shared shared,all NONE 37 lib libmysqlclient NONE mysql mysql-5.0.51a.tar.gz mysql-5.0.51a N NONENONE NONE37 lib libmysqlclient NONE mysql mysql-5.0.51a.tar.gz mysql-5.0.51a N --with-unix-socket-path=/var/run/mysqld/mysqld.sock NONE NONE 38 38 lib libgsl NONE NONE gsl-1.11.tar.gz gsl-1.11 N NONE NONE NONE 39 39 lib libfftw3f NONE NONE fftw-3.0.1.tar.gz fftw-3.0.1 N --enable-float,--enable-shared,--disable-fortran NONE NONE -
branches/eam_branches/ipp-20120627/psphot
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/eam_branches/ipp-20120627/psphot/src
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/eam_branches/ipp-20120627/psphot/src/psphotStackImageLoop.c
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/eam_branches/ipp-20120627/pstamp/scripts
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/eam_branches/ipp-20120627/psvideophot
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/eam_branches/ipp-20120627/tools/mysql-dump/gpc1_install.sh
r31877 r34139 38 38 if [ "$ITERATION" -ge "$MAX_ITERATIONS" ]; then 39 39 log ERROR "Copy of $TARGET/$MD5FILE failed after $ITERATION iterations. Giving up" 40 email "Too many failures when attempting to copy $TARGET/$MD5FILE" $EMAILTO "Check log "40 email "Too many failures when attempting to copy $TARGET/$MD5FILE" $EMAILTO "Check log /netdisks/panstarrs/ipp/mysql-dump/gpc1_install.log" 41 41 log INFO "End of gpc1_install.sh (Failure)" 42 42 exit 1 -
branches/eam_branches/ipp-20120627/tools/mysql-dump/ops_dump.csh
r33195 r34139 18 18 set DATEVAR=`date +%FT%T` #date 19 19 set FILENAME = $DUMP_PATH/mysql-ippadmin-ipp001-$DATEVAR.dump.bz 20 mysqldump --compress -hipp001 -uipp -pipp -- flush-logs --single-transaction ippadmin | bzip2 > $FILENAME20 mysqldump --compress -hipp001 -uipp -pipp --single-transaction ippadmin | bzip2 > $FILENAME 21 21 if ($status != 0) then 22 22 /bin/mail -s "Warning ippadmin dump failed" $EMAILTO < msg
Note:
See TracChangeset
for help on using the changeset viewer.
