package Lab::Measurement; $Lab::Measurement::VERSION = '3.770'; #ABSTRACT: Log, describe and plot data on the fly use v5.20; use strict; use warnings; use Lab::Generic; use Carp; use Exporter 'import'; use Lab::XPRESS::hub qw(DataFile Sweep Frame Instrument Connection); our @EXPORT = qw(DataFile Sweep Frame Instrument Connection); carp <<"EOF"; \"use Lab::Measurement;\" imports the legacy interface of Lab::Measurement. Please consider porting your measurement scripts to the new, Moose-based code. Documentation can be found at https://www.labmeasurement.de/ EOF 1; __END__ =pod =encoding UTF-8 =head1 NAME Lab::Measurement - Log, describe and plot data on the fly =head1 VERSION version 3.770 =head1 SYNOPSIS use Lab::Measurement; However, by now you probably want to use the following instead: use Lab::Moose; =head1 DESCRIPTION The Lab::Measurement module distribution simplifies the task of running a measurement, writing the data to disk and keeping track of necessary meta information that usually later you don't find in your lab book anymore. If your measurements don't come out nice, it's not because you were using the wrong software. The actual Lab::Measurement module belongs to the deprecated legacy module stack. We are in the process of re-writing the entire code base using Modern Perl techniques and the Moose object system. Please port your code to the new API; its documentation can be found on the Lab::Measurement homepage. =head1 SEE ALSO =over 4 =item L =item L =item L =item L =back =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2021 by the Lab::Measurement team; in detail: Copyright 2005-2006 Daniel Schroeer 2011 Andreas K. Huettel 2012 Alois Dirnaichner, Andreas K. Huettel, David Kalok, Hermann Kraus 2013 Andreas K. Huettel 2014 Christian Butschkow 2016 Andreas K. Huettel, Simon Reinhardt 2017-2018 Andreas K. Huettel 2019 Simon Reinhardt 2020 Andreas K. Huettel This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut