source:
sasview/src/sas/sascalc/simulation/analmodelpy/libanalmodelpy/analytical_model.h
@
b011ecb
Last change on this file since b011ecb was d85c194, checked in by Piotr Rozyczko <piotr.rozyczko@…>, 9 years ago | |
---|---|
|
|
File size: 380 bytes |
Rev | Line | |
---|---|---|
[b9a5f0e] | 1 | /** \file analytical_model.h class AnalyticalModel:SASModel */ |
[aa639ea] | 2 | |
3 | #ifndef ANALYTICALMODEL_H | |
4 | #define ANALYTICALMODEL_H | |
5 | ||
[b9a5f0e] | 6 | #include "sas_model.h" |
[aa639ea] | 7 | #include "geo_shape.h" |
8 | #include "iq.h" | |
9 | ||
[b9a5f0e] | 10 | class AnalyticalModel : public SASModel{ |
[aa639ea] | 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.