Main Page | Modules | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages | Examples

sensortest.cpp

Go to the documentation of this file.
00001 // Replace VisualVector with sensor of choice for basic test of sensor
00002 
00003 #include <Sensors/VisualVector.h>
00004 #include <iostream>
00005 
00006 using std::cout;
00007 using std::endl;
00008 
00009 int main()
00010 {
00011   cout << "test start---------------------------------------" << endl;
00012 
00013   VisualVector* vv = new VisualVector(true);
00014   Vector m = vv->GetVectorMeasurement();
00015 
00016   cout << "[" << m(1) << ", " << m(2) << ", " << m(3) << "]" << endl;
00017   delete vv;
00018   vv = 0;
00019 
00020   cout << "test end-----------------------------------------" << endl;
00021 }

Generated on Wed Sep 5 12:54:25 2007 for DSACSS Operational Code by  doxygen 1.3.9.1