This file is indexed.

/usr/lib/perl5/ALTree/SiteSensPerForet.pm is in altree 1.3.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package ALTree::SiteSensPerForet;

################################################################
################################################################
####################### SiteSensPerForet #######################
################################################################
################################################################

use base qw(ALTree::Base ALTree::SiteSens);

# Structure SiteSensPerForet
#   "site_struct" -> Site
#   "sens_label" -> String
#   "V_i" -> Float

sub New { # [classe] sens_label site_struct
    my $class=shift;
    my $self={};
    my $sens=shift;
    my $site=shift;
    bless($self, $class);
    $self->InitSiteSens($sens, $site);
    $self->_init("V_i" => 0, @_);
    return $self;
}

sub PlusVi {
    my $self=shift;
    my $value=shift;
    $self->{"V_i"} += $value;
}
sub GetVi {
    my $self=shift;
    return $self->{"V_i"};
}    

1;