~vibhavp/ubuntu/saucy/urg/merge-from-debian

« back to all changes in this revision

Viewing changes to src/cpp/urg/RangeCaptureMode.h

  • Committer: Bazaar Package Importer
  • Author(s): Albert Huang
  • Date: 2011-05-20 11:33:03 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110520113303-u8niofzwzcea0osk
Tags: 0.8.12-1
* New upstream release (closes: #624987)
* Add debian/watch file
* Bump standards-version to 3.9.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 
8
8
  \author Satofumi KAMIMURA
9
9
 
10
 
  $Id: RangeCaptureMode.h 1702 2010-02-16 22:25:58Z satofumi $
 
10
  $Id: RangeCaptureMode.h 1825 2010-05-15 10:50:09Z satofumi $
11
11
*/
12
12
 
13
13
namespace qrk
14
14
{
15
 
  /*!
16
 
    \brief The type in which data is acquired.
17
 
 
18
 
    There are 2 types of data acquistion. One is "Automatic  acquisition" in which data is transmitted continuously once the command is sent to sensor. Other type is "sequential  acquisition" in which only one set of data is transmitted when command is sent to sensor.
19
 
 
20
 
    \image html gd_md_sequence.png "sequential  acquisition(GD/GS) and Automatic  acquisition(MD/MS)
21
 
 
22
 
    High intensity data is acquired by "automatic acquisition" type
23
 
  */
24
 
  typedef enum {
25
 
    ManualCapture,              //!< sequential  acquisition
26
 
    AutoCapture,                //!< Automatic  acquisition
27
 
    IntensityCapture,           //!< High intensity acquisition
28
 
  } RangeCaptureMode;
 
15
    /*!
 
16
      \brief The type in which data is acquired.
 
17
 
 
18
      There are 2 types of data acquistion. One is "Automatic  acquisition" in which data is transmitted continuously once the command is sent to sensor. Other type is "sequential  acquisition" in which only one set of data is transmitted when command is sent to sensor.
 
19
 
 
20
      \image html gd_md_sequence.png "sequential  acquisition(GD/GS) and Automatic  acquisition(MD/MS)
 
21
 
 
22
      High intensity data is acquired by "automatic acquisition" type
 
23
    */
 
24
    typedef enum {
 
25
        ManualCapture,              //!< sequential  acquisition
 
26
        AutoCapture,                //!< Automatic  acquisition
 
27
        IntensityCapture,           //!< High intensity acquisition
 
28
    } RangeCaptureMode;
29
29
}
30
30
 
31
31
#endif /* !QRK_RANGE_CAPTURE_MODE_H */