Changeset 208


Ignore:
Timestamp:
01/27/06 15:40:30 (18 years ago)
Author:
thauvin
Message:
  • add function to collect real result
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/soft/ObsData/ObsData.pm

    • Property cvs2svn:cvs-rev changed from 1.52 to 1.53
    r199 r208  
    5353        dry_run => $options{dry_run}, 
    5454        interactive_callback => $options{interactive_callback}, 
     55        processed_lists => [], 
    5556    }; 
    5657 
     
    335336} 
    336337 
     338sub processed { 
     339    my ($self, $obs, $archive, $datatype, $dest) = @_; 
     340    push(@{$self->{processed_lists}}, 
     341        { 
     342            obs => $obs, 
     343            archive => $archive, 
     344            datatype => $datatype, 
     345            destfile => $dest, 
     346        } 
     347    ); 
     348} 
     349 
    3373501; 
    338351 
Note: See TracChangeset for help on using the changeset viewer.