line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Lab::Moose::Sweep::Continuous::Voltage; |
2
|
|
|
|
|
|
|
$Lab::Moose::Sweep::Continuous::Voltage::VERSION = '3.880'; |
3
|
|
|
|
|
|
|
#ABSTRACT: Continuous sweep of voltage |
4
|
|
|
|
|
|
|
|
5
|
2
|
|
|
2
|
|
2962
|
use v5.20; |
|
2
|
|
|
|
|
10
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
|
8
|
2
|
|
|
2
|
|
20
|
use Moose; |
|
2
|
|
|
|
|
14
|
|
|
2
|
|
|
|
|
16
|
|
9
|
2
|
|
|
2
|
|
14466
|
use Carp; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
146
|
|
10
|
2
|
|
|
2
|
|
17
|
use Time::HiRes 'time'; |
|
2
|
|
|
|
|
5
|
|
|
2
|
|
|
|
|
24
|
|
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
extends 'Lab::Moose::Sweep::Continuous'; |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
has filename_extension => ( is => 'ro', isa => 'Str', default => 'Voltage=' ); |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
__PACKAGE__->meta->make_immutable(); |
17
|
|
|
|
|
|
|
1; |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
__END__ |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=pod |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=encoding UTF-8 |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head1 NAME |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
Lab::Moose::Sweep::Continuous::Voltage - Continuous sweep of voltage |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 VERSION |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
version 3.880 |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head1 SYNOPSIS |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
use Lab::Moose; |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
# FIXME |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
This software is copyright (c) 2023 by the Lab::Measurement team; in detail: |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
Copyright 2018 Simon Reinhardt |
44
|
|
|
|
|
|
|
2020 Andreas K. Huettel |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
48
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=cut |