00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
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