IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 29739


Ignore:
Timestamp:
Nov 10, 2010, 9:57:53 AM (15 years ago)
Author:
rhenders
Message:

using more consistant names for times

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/czartool/CzarDb.pm

    r29711 r29739  
    854854###########################################################################
    855855sub createProcessingRateData {
    856     my ($self, $stage, $label, $startDay, $endDay, $interval, $dataFile, $isLog) = @_;
    857 
    858     my $startTime = $startDay;
     856    my ($self, $stage, $label, $begin, $end, $interval, $dataFile, $isLog) = @_;
     857
     858    my $startTime = $begin;
    859859    my $endTime;
    860860    my $quit = 0;
     
    873873    while(1) {
    874874
    875         if (!$self->isBefore($startTime, $endDay)) {last;}
     875        if (!$self->isBefore($startTime, $end)) {last;}
    876876        $endTime = $self->addInterval($startTime, $interval);
    877877        $self->countProcessedPendingAndFaults($label, $stage, $startTime, $endTime, \$processed, \$pending, \$faults);
Note: See TracChangeset for help on using the changeset viewer.