GBParticle.h 367 B

1234567891011121314151617181920212223
  1. #pragma once
  2. #include "OTSFieldData.h"
  3. #include "CGBLevel.h"
  4. #include <set>
  5. namespace OTSGBCalculate
  6. {
  7. using namespace std;
  8. using namespace OTSDATA;
  9. class GBParticle
  10. {
  11. public:
  12. GBParticle(COTSParticlePtr p, GB_LEVEL_TYPE theType, GB_WIDTH_TYPE theWidth);
  13. GBParticle()
  14. {
  15. }
  16. GB_LEVEL_TYPE myType;
  17. GB_WIDTH_TYPE myWidth;
  18. COTSParticlePtr myPart;
  19. };
  20. }