IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 27, 2010, 2:42:17 PM (16 years ago)
Author:
rhenders
Message:

Loads of stuff

File:
1 edited

Legend:

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

    r28704 r28719  
    7373###########################################################################
    7474#
     75# Returns priority for this label
     76#
     77###########################################################################
     78sub getPriority {
     79    my ($self, $label) = @_;
     80
     81    my $query = $self->{_db}->prepare(<<SQL);
     82    SELECT priority
     83        FROM Label
     84        WHERE label LIKE '$label'
     85SQL
     86
     87        $query->execute;
     88    my $priority = scalar $query->fetchrow_array();
     89    if (!$priority) {return 50000;} # assume labels not given priority in gpc1 Db have highest priority
     90    return $priority;
     91}
     92
     93###########################################################################
     94#
    7595# Returns count of exposures with this state for this label
    7696#
Note: See TracChangeset for help on using the changeset viewer.