source:
sasview/src/sas/sascalc/simulation/analmodelpy/libanalmodelpy/analytical_model.h
@
19b5c886
Last change on this file since 19b5c886 was d85c194, checked in by Piotr Rozyczko <piotr.rozyczko@…>, 9 years ago | |
---|---|
|
|
File size: 380 bytes |
Line | |
---|---|
1 | /** \file analytical_model.h class AnalyticalModel:SASModel */ |
2 | |
3 | #ifndef ANALYTICALMODEL_H |
4 | #define ANALYTICALMODEL_H |
5 | |
6 | #include "sas_model.h" |
7 | #include "geo_shape.h" |
8 | #include "iq.h" |
9 | |
10 | class AnalyticalModel : public SASModel{ |
11 | |
12 | public: |
13 | AnalyticalModel(const GeoShape &); |
14 | ~AnalyticalModel(); |
15 | |
16 | void CalculateIQ(IQ *); |
17 | |
18 | private: |
19 | AnalyticalModel(); |
20 | GeoShape *shape_; |
21 | }; |
22 | |
23 | #endif |
Note: See TracBrowser
for help on using the repository browser.