ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/BOSS/Examples/cmsswPostprocess
(Generate patch)

Comparing COMP/BOSS/Examples/cmsswPostprocess (file contents):
Revision 1.2 by bacchi, Wed Jul 19 10:08:15 2006 UTC vs.
Revision 1.3 by afanfani, Fri Jul 28 18:30:08 2006 UTC

# Line 39 | Line 39 | while ( <STDIN> ) {
39        print "SE_SIZE = $val\n";
40        $openTag=0;
41      }
42 +
43 +  if($_ =~ m|.*<LFN>(.*)|s)
44 +    {
45 +      $openTag=1;
46 +      $lines=0;
47 +      $val=$1;
48 +      chomp($val);
49 +    }
50 +  if($_ =~ m|(.*)</LFN>.*|s)
51 +    {
52 +      $val.=$1;
53 +      chomp($val);
54 +      if($val =~ /\s*(\S*)\s*/s)
55 +        {
56 +          $val=$1;
57 +        }
58 +      print "LFN = $val\n";
59 +      $openTag=0;
60 +    }
61 +
62    if($_ =~ m|.*<ProcessedDataset>(.*)|s)
63      {
64        $openTag=1;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines