1234567891011121314151617181920212223 |
- #pragma once
- #include "OTSFieldData.h"
- #include "CGBLevel.h"
- #include <set>
- namespace OTSGBCalculate
- {
- using namespace std;
- using namespace OTSDATA;
- class GBParticle
- {
- public:
- GBParticle(COTSParticlePtr p, GB_LEVEL_TYPE theType, GB_WIDTH_TYPE theWidth);
- GBParticle()
- {
- }
- GB_LEVEL_TYPE myType;
- GB_WIDTH_TYPE myWidth;
- COTSParticlePtr myPart;
- };
- }
|