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

ippScanOnHelixCommand.h

Go to the documentation of this file.
00001 // 
00002 // DISCLAIMER: 
00003 //  This software was produced by the National Institute of Standards 
00004 //  and Technology (NIST), an agency of the U.S. government, and by statute is 
00005 //  not subject to copyright in the United States.  Recipients of this 
00006 //  software assume all responsibility associated with its operation,
00007 //  modification,maintenance, and subsequent redistribution. 
00008 //
00009 //  See NIST Administration Manual 4.09.07 b and Appendix I. 
00010 #pragma  once 
00011 #include "ippdme/Command/ippCommand.h"
00012 #include "ippdme/ippTargetVector.h"
00013 
00014 
00037 class IPPDME_EXT_CLASS ippScanOnHelixCommand : public ippCommand {
00038 
00039 public:
00040   ippScanOnHelixCommand(
00041     unsigned int tgNum,
00042     double inCx, double inCy,double inCz, // a nominal center point of the helix
00043     double inSx, double inSy,double inSz, // point on the helix radius where the scan starts
00044     double inI,  double inJ,double inK,   // the normal vector of the helix plane
00045     double inDelta,                       // angle to scan
00046     double inSFA,                         // the surface angle of the circle 90 and 270 not allowed
00047     double inStepW,                       // average angular distance between 2 measured points
00048     double inPitch                        // lead is the lead in mm per 360 degrees rotation
00049   );
00050 
00051   virtual ~ippScanOnHelixCommand();
00052 
00053   virtual std::string getCommandString() const;
00054 private:
00055   double _cx;
00056   double _cy;
00057   double _cz;
00058   double _sx;
00059   double _sy;
00060   double _sz;
00061   ippTargetVector _IJK;
00062   double _delta;
00063   double _SFA;
00064   double _StepW;
00065   double _pitch;
00066 //
00067   ippScanOnHelixCommand(const ippScanOnHelixCommand&);
00068   void operator=(const ippScanOnHelixCommand&);
00069 };
00070 
00071 IPP_DECLARE_SMARTPOINTER(ippScanOnHelixCommand);
00072 

Generated on Wed Nov 8 00:19:57 2006 for IPPDME by  doxygen 1.4.1