Lab-Measurement

 view release on metacpan or  search on metacpan

lib/Lab/Moose/Sweep/Step/Pulsedelay.pm  view on Meta::CPAN

package Lab::Moose::Sweep::Step::Pulsedelay;
$Lab::Moose::Sweep::Step::Pulsedelay::VERSION = '3.931';
#ABSTRACT: Pulsedelay sweep.

use v5.20;


use Moose;

extends 'Lab::Moose::Sweep::Step';

has filename_extension =>
    ( is => 'ro', isa => 'Str', default => 'Pulsedelay=' );

has setter => ( is => 'ro', isa => 'CodeRef', builder => '_build_setter' );

has instrument =>
    ( is => 'ro', isa => 'ArrayRefOfInstruments', coerce => 1, required => 1 );

has constant_width => ( is => 'ro', isa => 'Bool', default => 0 );

sub _build_setter {
    return \&_pulsedelay_setter;
}

sub _pulsedelay_setter {
    my $self  = shift;
    my $value = shift;
    foreach (@{$self->instrument}) {
        $_->set_pulsedelay(
          value => $value,
          constant_width => $self->constant_width
        );
    }
}

__PACKAGE__->meta->make_immutable();
1;

__END__

=pod

=encoding UTF-8

=head1 NAME

Lab::Moose::Sweep::Step::Pulsedelay - Pulsedelay sweep.

=head1 VERSION

version 3.931

=head1 Description

Step sweep with following properties:

=over

=item *

Uses instruments C<set_pulsedelay> method to change the pulsewidth. On initialization
an optional boolean parameter C<constant_width> can be passed to keep a constant
pulse width over a period.

=item *

Default filename extension: C<'Pulsedelay='>

=back

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2025 by the Lab::Measurement team; in detail:

  Copyright 2021       Fabian Weinelt




( run in 0.843 second using v1.01-cache-2.11-cpan-39bf76dae61 )