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

ippTiltCenterPartCommand.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 //
00011 /* ippTiltCenterPartCommand class ****************************************/
00012 #pragma once 
00013 #include "ippCommand.h"
00014 
00015 class IPPDME_EXT_CLASS ippTiltCenterPartCommand : public ippCommand
00016 {
00017 
00018 public:
00019   ippTiltCenterPartCommand(
00020     unsigned int tgNum, double inPx1, double inPy1,
00021                 double inPz1, double inPx2, double inPy2,
00022                 double inPz2, double inLimit
00023   );
00024 
00025   virtual ~ippTiltCenterPartCommand(){}
00026 
00027   void setPx1(double inPx1){ _px1 = inPx1; }
00028   void setPy1(double inPy1){ _py1 = inPy1; }
00029   void setPz1(double inPz1){ _pz1 = inPz1; }
00030   void setPx2(double inPx2){ _px2 = inPx2; }
00031   void setPy2(double inPy2){ _py2 = inPy2; }
00032   void setPz2(double inPz2){ _pz2 = inPz2; }
00033   void setLimit(double inLimit){ _limit = inLimit; }
00034 
00035   double getPx1()const{ return _px1; }
00036   double getPy1()const{ return _py1; }
00037   double getPz1()const{ return _pz1; }
00038   double getPx2()const{ return _px2; }
00039   double getPy2()const{ return _py2; }
00040   double getPz2()const{ return _pz2; }
00041   double getLimit()const{ return _limit; }
00042 
00043   virtual std::string getCommandString() const;
00044 
00045 private:
00046   double _px1;
00047   double _py1;
00048   double _pz1;
00049   double _px2;
00050   double _py2;
00051   double _pz2;
00052   double _limit;
00053 private:
00054   ippTiltCenterPartCommand(const ippTiltCenterPartCommand&);
00055   void operator=(const ippTiltCenterPartCommand&);
00056 };
00057 IPP_DECLARE_SMARTPOINTER(ippTiltCenterPartCommand);
00058 

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